@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg: #050505;
    --bg-soft: #080808;
    --panel: #0d0d0d;
    --panel-2: #111111;
    --text: #ffffff;
    --muted: #a6a6a6;
    --muted-2: #7d7d7d;
    --line: rgba(255, 255, 255, 0.06);
    --red: #ff1a1a;
    --red-2: #ff4747;
    --red-dark: #1a0000;
    --radius: 22px;
    --radius-lg: 32px;
    --shadow-red: 0 18px 60px rgba(255, 0, 0, 0.18);
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
}

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

.pl-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 120px 40px;
}

.section-title {
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 800;
    margin: 0 0 22px;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.section-intro {
    color: var(--muted);
    max-width: 680px;
    margin: 0 0 60px;
    line-height: 1.75;
    font-size: 1.05rem;
}

.pl-hero {
    min-height: 100vh;
    background: radial-gradient(circle at 50% 42%, #240000 0%, #090909 55%, #040404 100%);
    color: white;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.pl-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 26, 26, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 26, 26, 0.08) 1px, transparent 1px);
    background-size: 54px 54px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.06;
}

.pl-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.9) 65%, #050505 100%);
    z-index: 4;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 860px;
    height: 860px;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.42) 0%, rgba(255, 0, 0, 0.16) 42%, transparent 72%);
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -42%);
    filter: blur(18px);
}

.pl-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 60px;
    position: relative;
    z-index: 8;
}

.pl-nav .logo {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pl-nav ul {
    display: flex;
    gap: 34px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.pl-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: #c9c9c9;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.pl-nav a:hover,
.pl-nav a.active {
    color: #ffffff;
}

.bg-text {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(120px, 17vw, 260px);
    font-weight: 900;
    opacity: 0.05;
    letter-spacing: 0.08em;
    white-space: nowrap;
    z-index: 2;
    color: #ffffff;
    pointer-events: none;
    user-select: none;
}

.hero-boy {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: min(85vh, 920px);
    z-index: 3;
    filter: drop-shadow(0 -20px 50px rgba(0, 0, 0, 0.78));
    pointer-events: none;
}

.hero-copy {
    position: absolute;
    bottom: 7vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: min(100%, 760px);
    z-index: 7;
    padding: 0 24px;
}

.hero-kicker {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-copy p {
    font-size: clamp(1rem, 1.35vw, 1.14rem);
    color: #c2c2c2;
    line-height: 1.8;
    margin: 0 auto 30px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    max-width: 620px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta,
.cta-secondary-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 40px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    text-decoration: none;
}

.cta {
    background: linear-gradient(45deg, #db0909, #ff4141);
    color: white;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.33);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 54px rgba(255, 26, 26, 0.5);
}

.cta-secondary-solid {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.cta-secondary-solid:hover {
    border-color: rgba(255, 26, 26, 0.45);
    background: rgba(255, 26, 26, 0.08);
}

.pl-hero-orbs span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 90, 90, 0.6);
    filter: blur(1px);
    z-index: 2;
    animation: floatOrb 8s ease-in-out infinite;
}

.pl-hero-orbs span:nth-child(1) {
    top: 22%;
    left: 18%;
    animation-delay: 0s;
}

.pl-hero-orbs span:nth-child(2) {
    top: 30%;
    right: 17%;
    width: 14px;
    height: 14px;
    animation-delay: 1.5s;
}

.pl-hero-orbs span:nth-child(3) {
    bottom: 27%;
    left: 22%;
    width: 8px;
    height: 8px;
    animation-delay: 3s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-16px);
        opacity: 0.8;
    }
}

.pl-services {
    background: var(--bg-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.service-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--line);
    padding: 34px 28px;
    border-radius: var(--radius);
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    opacity: 0;
}

.service-card:hover {
    background: linear-gradient(180deg, rgba(255, 26, 26, 0.06) 0%, rgba(255,255,255,0.01) 100%);
    transform: translateY(-10px) !important;
    border-color: rgba(255, 26, 26, 0.3);
    box-shadow: var(--shadow-red);
}

.service-eyebrow {
    color: var(--red-2);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
    display: block;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 0 0 14px;
    color: #fff;
}

.service-card p {
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.7;
    margin: 0;
}

.pl-stats {
    background: #070707;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
    text-align: center;
}

.stat-item {
    padding: 28px 18px;
}

.stat-item h2 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--red);
    margin: 0 0 10px;
}

.stat-item p {
    font-size: 0.82rem;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0;
}

.pl-work {
    background: var(--bg);
}

.work-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
}

.work-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    min-height: 320px;
}

.work-card.large-card {
    aspect-ratio: 4/3;
}

.work-card.small-card {
    aspect-ratio: 1/1;
    margin-top: 94px;
}

.wc-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.5s ease;
    border: 1px solid rgba(255,255,255,0.04);
    position: relative;
}

.wc-img-wrap::after,
.fp-img-mask::after,
.mi-img-mask::after,
.sp-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,5,5,0.03) 0%, rgba(5,5,5,0.18) 42%, rgba(5,5,5,0.82) 100%);
    pointer-events: none;
}

.wc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.work-card:hover .wc-img-wrap,
.masonry-item:hover .mi-img-mask,
.fp-card:hover .fp-img-mask,
.service-panel:hover .sp-image {
    border-color: rgba(255, 26, 26, 0.38);
    box-shadow: var(--shadow-red);
}

.work-card:hover .wc-img-wrap img,
.masonry-item:hover .mi-img-mask img,
.fp-card:hover .fp-img-mask img,
.service-panel:hover .sp-image img {
    transform: scale(1.06);
}

.wc-info {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 2;
}

.wc-info h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin: 0 0 6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.wc-info p {
    color: #d0d0d0;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.pl-process {
    background: #090909;
}

.process-wrapper {
    position: relative;
    padding: 36px 0 6px;
}

.process-line-bg,
.process-line {
    position: absolute;
    top: 60px;
    left: 0;
    height: 2px;
}

.process-line-bg {
    width: 100%;
    background: #222;
    z-index: 0;
}

.process-line {
    width: 0%;
    background: linear-gradient(90deg, var(--red), var(--red-2));
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 22px;
}

.step-card {
    width: 25%;
    opacity: 0;
}

.step-num {
    width: 52px;
    height: 52px;
    background: #101010;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--red);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.step-card:hover .step-num {
    border-color: var(--red);
    background: #2a0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.step-card h3 {
    font-size: 1.3rem;
    margin: 0 0 10px;
}

.step-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.pl-about-preview {
    background: var(--bg);
}

.about-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
    opacity: 0;
}

.about-text p {
    font-size: 1.12rem;
    color: var(--muted);
    line-height: 1.9;
    margin: 0 0 30px;
}

.cta-secondary {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 26, 26, 0.5);
    padding-bottom: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    color: var(--red);
    border-color: var(--red);
}

.about-badges {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.badge {
    padding: 12px 22px;
    background: #101010;
    border: 1px solid #2f2f2f;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ddd;
    opacity: 0;
}

.pl-cta-strip {
    background: radial-gradient(circle at center, #180000 0%, #050505 100%);
    text-align: center;
    padding: 150px 20px;
    border-top: 1px solid rgba(255, 26, 26, 0.1);
}

.cta-phrase {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    font-weight: 900;
    margin: 0 0 18px;
    letter-spacing: -0.04em;
}

.pl-cta-strip p {
    color: var(--muted);
    font-size: 1.08rem;
    margin: 0 0 42px;
}

.glow-pulse {
    animation: pulseGlow 2.4s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.35), 0 10px 40px rgba(255, 0, 0, 0.35);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 0, 0, 0), 0 10px 40px rgba(255, 0, 0, 0.35);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0), 0 10px 40px rgba(255, 0, 0, 0.35);
    }
}

.page-header {
    padding-top: 170px;
    padding-bottom: 66px;
    text-align: left;
}

.ph-title {
    font-size: clamp(3.2rem, 8vw, 5.5rem);
    font-weight: 900;
    margin: 0 0 16px;
    letter-spacing: -0.06em;
    line-height: 0.98;
    background: linear-gradient(90deg, #fff, #828282);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ph-subtitle {
    font-size: clamp(1.02rem, 2vw, 1.25rem);
    color: var(--muted);
    max-width: 680px;
    line-height: 1.75;
    margin: 0;
}

.fp-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 70px;
}

.fp-img-mask {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 24px;
    position: relative;
}

.fp-img-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.fp-info {
    position: absolute;
    bottom: 42px;
    left: 42px;
    right: 42px;
    z-index: 2;
}

.fp-info h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 0 0 12px;
}

.fp-info p {
    font-size: 1.05rem;
    color: #d0d0d0;
    max-width: 640px;
    margin: 0 0 24px;
    line-height: 1.7;
}

.pl-masonry-grid {
    display: flex;
    gap: 34px;
    margin-bottom: 120px;
}

.masonry-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.masonry-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.mi-img-mask {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
    position: relative;
    border: 1px solid rgba(255,255,255,0.04);
}

.mi-img-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.mi-info {
    margin-top: 16px;
}

.mi-info h3 {
    font-size: 1.4rem;
    margin: 0 0 4px;
}

.mi-info p {
    color: var(--muted-2);
    font-size: 0.92rem;
    margin: 0;
}

.services-modular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 100px;
    border-radius: 26px;
    overflow: hidden;
}

.modular-card {
    background: #070707;
    padding: 48px 34px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.modular-card:hover {
    background: #0c0c0c;
    transform: translateY(-4px);
}

.modular-card .mc-icon {
    font-size: 2rem;
    margin-bottom: 22px;
}

.modular-card h3 {
    font-size: 1.5rem;
    margin: 0 0 14px;
}

.modular-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.service-panel {
    display: flex;
    gap: 70px;
    padding: 94px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

.service-panel:nth-child(even) {
    flex-direction: row-reverse;
}

.sp-content {
    flex: 1;
}

.sp-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin: 0 0 20px;
}

.sp-content p {
    font-size: 1.04rem;
    color: var(--muted);
    line-height: 1.85;
    margin: 0 0 30px;
}

.sp-image {
    flex: 1;
    aspect-ratio: 4/3;
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.04);
}

.sp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.editorial-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    margin-bottom: 120px;
}

.about-story {
    font-size: 1.12rem;
    line-height: 1.95;
    color: #ccc;
}

.about-story p {
    margin: 0 0 24px;
}

.offset-panel {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 48px;
    border-radius: 24px;
    margin-top: 80px;
}

.offset-panel h3 {
    margin: 0;
    font-size: 1.7rem;
}

.timeline {
    margin: 80px 0;
}

.timeline-item {
    display: flex;
    gap: 42px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ti-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--red);
    min-width: 90px;
}

.ti-content h3 {
    font-size: 1.45rem;
    margin: 0 0 8px;
}

.ti-content p {
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    margin-bottom: 120px;
}

.contact-form-wrap,
.info-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
    background: #0f0f0f;
    border: 1px solid #222;
    padding: 16px 18px;
    border-radius: 14px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(255, 26, 26, 0.08);
}

.info-section h3 {
    font-size: 1.35rem;
    margin: 0 0 16px;
}

.info-section p {
    color: var(--muted);
    margin: 0 0 28px;
    line-height: 1.75;
}

.contact-detail { margin-bottom: 26px; }

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--red);
    padding-bottom: 4px;
}

.site-footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 36px 40px 44px;
    color: #666;
    font-size: 0.92rem;
}

.site-footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.site-footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.site-footer-links a {
    text-decoration: none;
    color: #858585;
}

@media (max-width: 1024px) {
    .services-grid,
    .services-modular-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-card.small-card {
        margin-top: 0;
        aspect-ratio: 4/3;
    }

    .about-split,
    .editorial-layout,
    .contact-grid,
    .service-panel {
        gap: 40px;
    }

    .service-panel {
        flex-direction: column !important;
    }
}

@media (max-width: 900px) {
    .about-split,
    .editorial-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .pl-masonry-grid {
        flex-direction: column;
    }

    .masonry-col {
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .pl-container {
        padding: 84px 22px;
    }

    .pl-nav {
        padding: 24px 22px;
    }

    .pl-nav ul {
        display: none;
    }

    .bg-text {
        top: 38%;
        letter-spacing: 0.03em;
    }

    .hero-boy {
        height: min(60vh, 520px);
    }

    .hero-glow {
        width: 420px;
        height: 420px;
    }

    .hero-copy {
        bottom: 4.5vh;
    }

    .hero-copy p {
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .services-grid,
    .services-modular-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 34px;
    }

    .step-card {
        width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 18px;
    }

    .step-num {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .process-line-bg {
        top: 0;
        left: 25px;
        width: 2px;
        height: 100%;
    }

    .process-line {
        top: 0;
        left: 25px;
        width: 2px;
        height: 0%;
        background: linear-gradient(180deg, var(--red), var(--red-2));
    }

    .fp-info {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .fp-info p,
    .ph-subtitle,
    .section-intro,
    .sp-content p,
    .about-text p,
    .info-section p {
        font-size: 1rem;
    }

    .contact-form-wrap,
    .info-section,
    .offset-panel {
        padding: 24px;
    }

    .site-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Homepage rebuild based on progresslouya.site structure */
.eyebrow {
    display: inline-block;
    color: var(--red-2);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-head.split-head {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 50px;
}

.home-tools-section {
    background: linear-gradient(180deg, #050505 0%, #070707 100%);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.home-tools-wrap {
    padding-top: 72px;
    padding-bottom: 72px;
}

.tools-marquee {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,26,26,0.05), rgba(255,255,255,0.02));
    padding: 20px 0;
}

.tools-marquee-track {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: toolScroll 28s linear infinite;
    will-change: transform;
}

.tools-marquee-track span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes toolScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.home-featured {
    background: #060606;
}

.featured-grid-home {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.featured-home-card {
    border: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius: 26px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.featured-home-card:hover,
.solution-panel-home:hover,
.value-card:hover,
.testimonial-card-home:hover {
    transform: translateY(-8px);
    border-color: rgba(255,26,26,0.3);
    box-shadow: var(--shadow-red);
}

.featured-large {
    grid-column: span 1;
}

.fh-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.fh-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,5,5,0.08), rgba(5,5,5,0.5) 55%, rgba(5,5,5,0.88));
}

.fh-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.featured-home-card:hover .fh-media img {
    transform: scale(1.06);
}

.fh-content {
    padding: 26px 28px 30px;
}

.metric {
    font-size: 2rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 8px;
}

.metric span,
.industry,
.fh-content p,
.highlight-stat span,
.t-author span,
.contact-band-copy p {
    color: var(--muted);
}

.metric span {
    display: inline-block;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-left: 10px;
    vertical-align: middle;
}

.industry {
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
}

.fh-content h3 {
    margin: 0 0 8px;
    font-size: 1.6rem;
}

.fh-content p {
    margin: 0;
    line-height: 1.75;
}

.home-designer-statement {
    background: radial-gradient(circle at top right, rgba(255,0,0,0.09), transparent 36%), #070707;
}

.statement-shell {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 44px;
    align-items: center;
}

.statement-copy p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--muted);
    max-width: 680px;
}

.statement-actions {
    justify-content: flex-start;
    margin-top: 28px;
}

.statement-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
}

.statement-badges span {
    padding: 13px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    font-weight: 600;
}

.home-solutions {
    background: #050505;
}

.solutions-grid-home {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.solution-panel-home {
    padding: 34px 30px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.branding-card { background: linear-gradient(180deg, rgba(255,58,58,0.1), rgba(255,255,255,0.015)); }
.design-card { background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)); }
.development-card { background: linear-gradient(180deg, rgba(255,26,26,0.06), rgba(255,255,255,0.01)); }

.solution-tag {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.solution-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.solution-list li {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.05);
    font-size: 0.84rem;
    color: #f0f0f0;
}

.solution-panel-home p,
.value-card p,
.testimonial-card-home p,
.pv-body p,
.contact-band-form label span,
.contact-band-form input,
.contact-band-form select,
.contact-band-form textarea {
    line-height: 1.8;
    color: var(--muted);
}

.home-highlights {
    background: #070707;
}

.highlights-grid-home {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 34px;
}

.highlight-stat {
    padding: 28px 24px;
    border-radius: 22px;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.05);
}

.highlight-stat strong {
    display: block;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    color: var(--red);
    margin-bottom: 10px;
}

.highlight-values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.value-card {
    padding: 30px 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.value-card h3,
.pv-body h3 {
    font-size: 1.35rem;
    margin: 0 0 12px;
}

.home-process-vertical {
    background: #050505;
}

.process-vertical-list {
    display: grid;
    gap: 18px;
}

.pv-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 24px;
    align-items: start;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
}

.pv-step {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--red);
    border: 1px solid rgba(255,26,26,0.28);
    background: rgba(255,26,26,0.08);
}

.pv-body span {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d7d7d7;
}

.home-testimonials-pro {
    background: radial-gradient(circle at top center, rgba(255,0,0,0.08), transparent 32%), #070707;
}

.testimonial-cards-home {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.testimonial-card-home {
    padding: 32px 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.featured-testimonial {
    background: linear-gradient(180deg, rgba(255,26,26,0.1), rgba(255,255,255,0.015));
}

.t-author {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-contact-band {
    background: linear-gradient(180deg, #090909, #050505);
    border-top: 1px solid rgba(255,26,26,0.12);
}

.contact-band-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.contact-options-inline {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.contact-band-form {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.05);
    padding: 28px;
    border-radius: 26px;
}

.form-grid-home {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.contact-band-form label {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-band-form label.full {
    grid-column: 1 / -1;
}

.contact-band-form label span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.contact-band-form input,
.contact-band-form select,
.contact-band-form textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    padding: 16px 16px;
    font-family: inherit;
    font-size: 0.96rem;
    outline: none;
}

.contact-band-form input:focus,
.contact-band-form select:focus,
.contact-band-form textarea:focus {
    border-color: rgba(255,26,26,0.4);
    box-shadow: 0 0 0 4px rgba(255,26,26,0.08);
}

@media (max-width: 1024px) {
    .statement-shell,
    .contact-band-shell,
    .solutions-grid-home,
    .testimonial-cards-home,
    .highlights-grid-home {
        grid-template-columns: 1fr 1fr;
    }

    .solutions-grid-home,
    .testimonial-cards-home,
    .highlights-grid-home {
        gap: 18px;
    }

    .featured-grid-home,
    .highlight-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-head.split-head,
    .statement-shell,
    .contact-band-shell,
    .solutions-grid-home,
    .testimonial-cards-home,
    .highlights-grid-home,
    .form-grid-home {
        grid-template-columns: 1fr;
        display: grid;
    }

    .section-head.split-head {
        align-items: start;
        margin-bottom: 34px;
    }

    .home-tools-wrap {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .tools-marquee-track span {
        font-size: 0.82rem;
        padding: 10px 16px;
    }

    .pv-item {
        grid-template-columns: 1fr;
    }

    .pv-step {
        width: 60px;
        height: 60px;
    }

    .contact-options-inline,
    .statement-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .featured-home-card,
    .solution-panel-home,
    .value-card,
    .testimonial-card-home,
    .contact-band-form {
        border-radius: 22px;
    }
}
