/* ═══════════════════════════════════════════════════
   PRODUCT PAGE — STANDALONE STYLES
   All rules scoped to .prod-* to avoid layout.css conflicts
═══════════════════════════════════════════════════ */

/* ── Reset for this page ── */
.prod-page * {
    box-sizing: border-box;
}

/* ── HERO ── */
.prod-hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    background: #000;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.prod-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.prod-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: brightness(0.7) contrast(1.1);
}

.prod-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.75) 75%, rgba(0,0,0,0.98) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 60%);
}

/* Subtle green grid overlay */
.prod-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(61,180,81,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61,180,81,0.03) 1px, transparent 1px);
    background-size: 70px 70px;
    pointer-events: none;
}

.prod-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px 90px;
}

.prod-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.prod-hero-eyebrow span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #3db451;
}

.prod-hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: #3db451;
}

.prod-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -3px;
    line-height: 0.92;
    margin: 0 0 28px;
    max-width: 780px;
}

.prod-hero h1 em {
    font-style: normal;
    color: #3db451;
}

.prod-hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    max-width: 500px;
    margin: 0 0 44px;
}

.prod-hero-stats {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.1);
    width: fit-content;
}

.prod-hstat {
    padding: 20px 36px;
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.prod-hstat:last-child {
    border-right: none;
}

.prod-hstat-num {
    font-size: 26px;
    font-weight: 800;
    color: #3db451;
    letter-spacing: -1px;
    line-height: 1;
}

.prod-hstat-label {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── HERO CENTRED MODIFIER ── */
.prod-hero--center {
    align-items: center;
    justify-content: center;
}
.prod-hero--center .prod-hero-bg::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.65) 100%);
}
.prod-hero-content--center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 80px;
    margin-bottom: 0;
}
.prod-hero-eyebrow--center { justify-content: center; }
.prod-hero-eyebrow--center::before { display: none; }
.prod-hero-content--center h1 { max-width: 900px; }
.prod-hero-content--center .prod-hero-sub { max-width: 560px; text-align: center; margin-bottom: 0; }

/* ── INTRO BAND ── */
.prod-band {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 32px 0;
}

.prod-band-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.prod-band-text {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
}

.prod-band-text strong {
    color: #fff;
    font-weight: 600;
}

.prod-band-badges {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.prod-badge {
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
}

.prod-badge.green {
    border-color: rgba(61,180,81,0.35);
    color: #3db451;
}

/* ═══════════════════════════════════════════
   SECTOR CARDS — 4 kartı 2×2 grid
═══════════════════════════════════════════ */
.prod-sectors {
    background: #0a0a0a;
    padding: 100px 0 80px;
}

.prod-sectors-header {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 80px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.prod-sectors-header-left {}

.prod-sectors-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #3db451;
    margin-bottom: 14px;
}

.prod-sectors-h {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.02;
    margin: 0;
}

.prod-sectors-header-right {
    max-width: 300px;
    flex-shrink: 0;
}

.prod-sectors-header-right p {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    line-height: 1.75;
    text-align: right;
    margin: 0;
}

/* THE GRID — 2×2 */
/* ═══════════════════════════════════════════
   SECTOR CARDS — full-image, hover-reveal
═══════════════════════════════════════════ */
.prod-sectors-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

/* Card — full-bleed image container */
.prod-sc {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    height: 460px;
    background: #111;
    cursor: pointer;
}

/* Background image fills entire card */
.prod-sc-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.prod-sc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.6);
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1),
                filter 0.5s ease;
    display: block;
}

.prod-sc:hover .prod-sc-img img {
    transform: scale(1.06);
    filter: brightness(0.35) saturate(0.4);
}

/* Dark gradient — always present, stronger at bottom */
.prod-sc::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.15) 0%,
            rgba(0,0,0,0.0) 30%,
            rgba(0,0,0,0.65) 70%,
            rgba(0,0,0,0.88) 100%
        );
    transition: background 0.45s ease;
}

.prod-sc:hover::after {
    background: rgba(0,0,0,0.72);
}

/* Card content — always on top */
.prod-sc-body {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Top meta row — number + type */
.prod-sc-meta {
    position: absolute;
    top: 32px;
    left: 36px;
    right: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prod-sc-num {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #3db451;
    text-transform: uppercase;
}

.prod-sc-type {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* Title — always visible at bottom */
.prod-sc-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.8px;
    line-height: 1.08;
    margin: 0 0 0;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1),
                margin 0.45s cubic-bezier(0.4,0,0.2,1);
}

/* Hover-reveal content — hidden by default */
.prod-sc-tagline {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1),
                opacity 0.35s ease,
                margin 0.45s ease;
}

.prod-sc-foot {
    display: flex;
    align-items: center;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1),
                opacity 0.35s ease 0.05s,
                margin 0.45s ease;
    margin-top: 0;
}

/* On hover — slide up title, reveal tagline + link */
.prod-sc:hover .prod-sc-name {
    margin-bottom: 14px;
}

.prod-sc:hover .prod-sc-tagline {
    max-height: 80px;
    opacity: 1;
    margin-bottom: 20px;
}

.prod-sc:hover .prod-sc-foot {
    max-height: 40px;
    opacity: 1;
    margin-top: 0;
}

.prod-sc-link {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #3db451;
}

.prod-sc-arrow {
    font-size: 17px;
    color: #3db451;
    transition: transform 0.25s ease;
    line-height: 1;
}

.prod-sc:hover .prod-sc-arrow {
    transform: translateX(5px);
}

/* Tags — hidden on this layout (not needed with hover reveal) */
.prod-sc-tags {
    display: none;
}

.prod-sc:hover .prod-sc-arrow {
    transform: translateX(6px);
}

/* ═══════════════════════════════════════════
   FEATURED STRIP — full-width highlight band
═══════════════════════════════════════════ */
.prod-featured {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    position: relative;
}

.prod-featured-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    position: relative;
    z-index: 2;
}

.prod-featured-content {
    padding: 80px 80px 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.prod-featured-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.prod-featured-eyebrow span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #3db451;
}

.prod-featured-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: #3db451;
}

.prod-featured h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.04;
    margin: 0 0 20px;
}

.prod-featured h2 em {
    font-style: normal;
    color: #3db451;
}

.prod-featured-body {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.85;
    margin: 0 0 36px;
    max-width: 420px;
}

.prod-featured-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prod-featured-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.prod-featured-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #3db451;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}

.prod-featured-media {
    position: relative;
    overflow: hidden;
}

.prod-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.5);
    transition: transform 0.8s ease;
}

.prod-featured:hover .prod-featured-media img {
    transform: scale(1.03);
}

.prod-featured-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 60%);
}

/* ═══════════════════════════════════════════
   CAPABILITY MATRIX
═══════════════════════════════════════════ */
.prod-matrix {
    background: #f5f5f3;
    padding: 100px 0 80px;
}

.prod-matrix-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.prod-matrix-header {
    margin-bottom: 60px;
    max-width: 600px;
}

.prod-matrix-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #3db451;
    margin-bottom: 16px;
}

.prod-matrix-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #000;
    letter-spacing: -1.5px;
    line-height: 1.06;
    margin: 0;
}

/* Grid: 4 capability blocks */
.prod-matrix-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.prod-cap {
    background: #fff;
    padding: 36px 30px;
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: default;
}

.prod-cap:hover {
    border-color: rgba(61,180,81,0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.prod-cap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #3db451;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.prod-cap:hover::before {
    transform: scaleX(1);
}

.prod-cap-icon {
    width: 48px;
    height: 48px;
    background: rgba(61,180,81,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3db451;
    margin-bottom: 22px;
    transition: background 0.3s;
}

.prod-cap:hover .prod-cap-icon {
    background: rgba(61,180,81,0.12);
}

.prod-cap h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}

.prod-cap p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════
   UK SUPPORT — dark strip
═══════════════════════════════════════════ */
.prod-support {
    background: #000;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.prod-support-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.prod-support-left {}

.prod-support-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #3db451;
    margin-bottom: 20px;
}

.prod-support-left h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(30px, 3.8vw, 46px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.8px;
    line-height: 1.05;
    margin: 0 0 24px;
}

.prod-support-left p {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.85;
    margin: 0 0 40px;
}

.prod-support-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.prod-support-item {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 26px 24px;
}

.prod-support-item-num {
    font-size: 28px;
    font-weight: 800;
    color: #3db451;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 5px;
}

.prod-support-item-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Right: compliance list */
.prod-support-right {
    border-left: 1px solid rgba(255,255,255,0.07);
    padding-left: 80px;
}

.prod-compliance-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 24px;
    display: block;
}

.prod-compliance-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.07);
}

.prod-comp-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}

.prod-comp-row:last-child {
    border-bottom: none;
}

.prod-comp-row:hover {
    background: rgba(255,255,255,0.02);
}

.prod-comp-dot {
    width: 7px;
    height: 7px;
    background: #3db451;
    border-radius: 50%;
    flex-shrink: 0;
}

.prod-comp-text {
    font-size: 17px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
}

.prod-comp-tag {
    margin-left: auto;
    padding: 3px 10px;
    background: rgba(61,180,81,0.1);
    border: 1px solid rgba(61,180,81,0.25);
    font-size: 10px;
    font-weight: 700;
    color: #3db451;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.prod-cta {
    background: #000;
    padding: 120px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.prod-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 110%, rgba(61,180,81,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.prod-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.prod-cta h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 500;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.05;
    margin: 0 0 22px;
}

.prod-cta h2 em {
    font-style: normal;
    color: #3db451;
}

.prod-cta p {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    margin: 0 0 44px;
}

.prod-cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   BUTTONS (scoped)
═══════════════════════════════════════════ */
.prod-btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #3db451;
    color: #000 !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.28s ease;
    white-space: nowrap;
}

.prod-btn-primary:hover {
    background: #49d060;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(61,180,81,0.3);
}

.prod-btn-ghost {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: rgba(255,255,255,0.7) !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.28s ease;
    white-space: nowrap;
}

.prod-btn-ghost:hover {
    border-color: #3db451;
    color: #3db451 !important;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .prod-hero-content,
    .prod-band-inner,
    .prod-sectors-header,
    .prod-sectors-grid,
    .prod-featured-inner,
    .prod-matrix-inner,
    .prod-support-inner { padding-left: 40px; padding-right: 40px; }

    .prod-sectors-grid { grid-template-columns: 1fr 1fr; }
    .prod-sc { height: 380px; }
    .prod-featured-inner { grid-template-columns: 1fr; }
    .prod-featured-content { border-right: none; padding: 60px 0 40px; }
    .prod-featured-media { height: 360px; }
    .prod-matrix-grid { grid-template-columns: repeat(2, 1fr); }
    .prod-support-inner { grid-template-columns: 1fr; gap: 60px; }
    .prod-support-right { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 60px; }
    .prod-band-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
    .prod-hero-content,
    .prod-band-inner,
    .prod-sectors-header,
    .prod-sectors-grid,
    .prod-matrix-inner,
    .prod-support-inner { padding-left: 24px; padding-right: 24px; }

    .prod-hero h1 { letter-spacing: -2px; }
    .prod-hero-stats { flex-wrap: wrap; }
    .prod-hstat { flex: 1 1 40%; }
    .prod-sectors-grid { grid-template-columns: 1fr; }
    .prod-sc { height: 320px; }
    .prod-matrix-grid { grid-template-columns: 1fr; }
    .prod-support-cols { grid-template-columns: 1fr 1fr; }
    .prod-sectors-header { flex-direction: column; align-items: flex-start; }
    .prod-sectors-header-right { max-width: 100%; }
    .prod-sectors-header-right p { text-align: left; }
    .prod-cta-btns { flex-direction: column; }
    .prod-cta-btns a { text-align: center; }
}


/* feature-showcase styles are in feature-showcase.css */