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

/* Device Lifecycle Styles */
:root {
    --dl-dark: #09090b;
    --dl-card-dark: #121215;
    --dl-blue: #1983D9;
    --dl-light-bg: #ECF6FF;
    --dl-card-grey: #f8fafc;
    --dl-text: #ffffff;
    --dl-muted: #a1a1aa;
    --dl-font-heading: 'Montserrat', sans-serif;
    --dl-font-body: system-ui, -apple-system, sans-serif;
}

body {
    -webkit-font-smoothing: antialiased;
}

/* Global Typography */
.device-lifecycle-hero,
.smart-edge-customers {
    font-family: var(--dl-font-body);
}

.device-lifecycle-hero h1,
.smart-edge-customers h2 {
    font-family: var(--dl-font-heading) !important;
}

.device-lifecycle-hero p {
    font-family: var(--dl-font-body);
}

/* 1. Hero Section */
.device-lifecycle-hero {
    position: relative;
    color: var(--dl-text);
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
}

.device-lifecycle-hero .hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 80%);
}

.device-lifecycle-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: left;
}

.device-lifecycle-hero h1 {
    font-size: 64px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    font-weight: 700;
}

.device-lifecycle-hero p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    font-weight: 400;
}

/* 2. Stats Section */
.se-stats-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
}

.se-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.se-stats-header h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 54px;
    letter-spacing: -2%;
    width: 100%;
    line-height: 1.2;
}

.se-stats-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.se-stats-quote {
    width: 30%;
}

.se-stats-quote blockquote {
    font-size: 14px;
    font-style: italic;
    border-left: 3px solid #1983D9;
    padding-left: 20px;
    margin-bottom: 30px;
    color: #a1a1aa;
}

.se-stats-quote p {
    color: #a1a1aa;
    font-size: 14px;
}

.se-stats-image {
    width: 35%;
    border-radius: 16px;
    overflow: hidden;
}

.se-stats-image img {
    width: 100%;
    height: auto;
    display: block;
}

.se-stats-grid {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.se-stat-card {
    background: #121215;
    border-radius: 12px;
    padding: 18px 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: statFadeIn 0.5s ease forwards;
}

@keyframes statFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.se-stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.se-stat-card:nth-child(2) {
    animation-delay: 0.25s;
}

.se-stat-card:nth-child(3) {
    animation-delay: 0.4s;
}

.se-stat-card:nth-child(4) {
    animation-delay: 0.55s;
}

.se-stat-card:nth-child(5) {
    animation-delay: 0.7s;
}

.se-stat-number {
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    color: #1983D9;
}

.se-stat-number span {
    font-weight: 600;
}

.se-stat-sep {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
}

.se-stat-text {
    color: #e2e8f0;
    font-size: 14px;
}

/* 3. Lifecycle Stages Component */
.device-lifecycle-stages {
    padding: 100px 0;
    background: #fafafa;
    font-family: var(--dl-font-body);
}

.dl-lifecycle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.dl-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: #1983D9;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 20px;
}

.dl-lifecycle-header h2 {
    font-family: var(--dl-font-heading) !important;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
}

.text-grey {
    color: #a1a1aa;
}

.dl-lifecycle-header-right p {
    color: #71717a;
    font-size: 16px;
    text-align: right;
    margin: 0;
    line-height: 1.6;
}

.lifecycle-container {
    display: flex;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    min-height: 500px;
    position: relative;
    border: 1px solid #f4f4f5;
}

.lifecycle-sidebar {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #f4f4f5;
    position: relative;
    z-index: 2;
}

.stage-nav-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f4f4f5;
    background: #fff;
    border-left: 4px solid transparent;
}

.stage-nav-item:last-child {
    border-bottom: none;
}

.stage-nav-item:hover:not(.active) {
    background: rgba(25, 131, 217, 0.04);
    border-left: 4px solid rgba(25, 131, 217, 0.25);
}

.stage-nav-item:hover:not(.active) .nav-title {
    color: #52525b;
}

.stage-nav-item.active {
    background: #dcf1ff;
    border-left: 4px solid #1983D9;
}

.nav-number {
    font-size: 15px;
    font-weight: 600;
    color: #a1a1aa;
}

.stage-nav-item.active .nav-number {
    color: #000;
}

.nav-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nav-super {
    font-size: 11px;
    font-weight: 600;
    color: #a1a1aa;
    letter-spacing: 1px;
}

.stage-nav-item.active .nav-super {
    color: #1983D9;
}

.nav-title {
    font-size: 15px;
    color: #a1a1aa;
    font-weight: 400;
    line-height: 1.4;
}

.stage-nav-item.active .nav-title {
    color: #000;
    font-weight: 600;
}

.lifecycle-content {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    padding: 56px;
    background: #fff;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.stage-content {
    display: none;
    animation: fadeIn 0.4s ease;
    height: 100%;
}

.stage-content.active {
    display: flex;
    flex-direction: column;
}

.stage-watermark {
    position: absolute;
    top: -23px;
    right: 0px;
    font-size: 180px;
    font-weight: 500;
    color: #f8fafc;
    line-height: 1;
    z-index: 0;
    font-family: var(--dl-font-heading) !important;
    pointer-events: none;
    letter-spacing: -8px;
}

.stage-content-inner {
    position: relative;
    z-index: 1;
    max-width: 583px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stage-meta {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.sm-blue {
    color: #1983D9;
}

.sm-grey {
    color: #d4d4d8;
}

.stage-content h3 {
    font-family: var(--dl-font-heading) !important;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #000;
    letter-spacing: -1.5px;
}

.stage-content p {
    font-size: 18px;
    color: #71717a;
    line-height: 1.6;
    margin-bottom: 50px;
}

.stage-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 1px solid #e4e4e7;
    border-radius: 30px;
    font-size: 13px;
    color: #71717a;
    font-weight: 500;
    text-decoration: none;
    margin-top: auto;
    width: fit-content;
    transition: all 0.2s;
    background: transparent;
    cursor: pointer;
}

.stage-pill:hover {
    border-color: #1983D9;
    color: #1983D9;
}

.stage-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 12px;
    z-index: 2;
}

.btn-arrow {
    background: #fff;
    border: 1px solid #e4e4e7;
    color: #a1a1aa;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 16px;
}

.btn-arrow:hover {
    border-color: #1983D9;
    color: #1983D9;
}

.active-progress-bar {
    position: absolute;
    bottom: 0;
    left: 320px;
    height: 4px;
    background: #73c2fb;
    width: 10%;
    /* JS overrides this */
    z-index: 3;
    transition: width 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 4. Benefits Section */
.device-lifecycle-benefits {
    padding: 100px 0;
    background: #000;
    font-family: var(--dl-font-body);
    position: relative;
    overflow: hidden;
}

/* Radial glows mimicking the design */
.device-lifecycle-benefits::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(25, 131, 217, 0.25) 0%, transparent 70%);
    z-index: 0;
}

.device-lifecycle-benefits::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(25, 131, 217, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.device-lifecycle-benefits .container {
    position: relative;
    z-index: 1;
}

.device-lifecycle-benefits h2 {
    font-family: var(--dl-font-heading) !important;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 60px;
}

.benefits-grid {
    display: flex;
    gap: 15px;
}

.benefit-card {
    background: #141414;
    /* very dark grey */
    border-radius: 20px;
    padding: 35px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-card .bc-num {
    font-size: 16px;
    font-weight: 500;
    color: #71717a;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.benefit-card h3 {
    font-family: var(--dl-font-body) !important;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: auto;
    letter-spacing: -0.5px;
}

.benefit-card .bc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1983D9;
    margin-top: 40px;
    transition: background 0.3s;
}

/* Hover state only */
.benefit-card:hover {
    background: #0076de;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 118, 222, 0.2);
}

.benefit-card:hover .bc-num {
    color: #fff;
}

.benefit-card:hover .bc-dot {
    background: #fff;
}

/* Mobile Swipeable Benefits */
@media (max-width: 991px) {
    .lifecycle-container {
        flex-direction: column;
    }

    .lifecycle-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .stage-nav-item {
        flex-shrink: 0;
        border-left: none;
        border-bottom: 4px solid transparent;
    }

    .stage-nav-item.active {
        border-left: none;
        border-bottom: 4px solid #0056B3;
    }

    .benefits-grid {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .benefits-grid::-webkit-scrollbar {
        display: none;
    }

    .benefit-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
    }
}

/* 5. Value Recovery Section */
.device-lifecycle-recovery {
    padding: 100px 0;
    background: #f5f5f7;
    font-family: var(--dl-font-body);
}

.recovery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.recovery-header h2 {
    font-family: var(--dl-font-heading) !important;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0;
    color: #000;
}

.recovery-subtitle {
    font-size: 16px;
    color: #71717a;
    text-align: right;
    line-height: 1.6;
    margin: 0;
    padding-top: 8px;
}

/* Bento Grid */
.recovery-bento {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
}

/* Row 1: featured + data */
.rc-featured {
    grid-column: 1;
    grid-row: 1;
}

.rc-data {
    grid-column: 2;
    grid-row: 1;
}

/* Row 2: 3 cards across left 2/3, esg on right */
.rc-refurbish {
    grid-column: 1;
    grid-row: 2;
}

.rc-recycle {
    grid-column: 1;
    grid-row: 2;
}

.rc-esg {
    grid-column: 2;
    grid-row: 2;
}

/* Override row 2 to use inner 3-col sub-grid on col 1 */
.recovery-bento {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: minmax(280px, auto) minmax(260px, auto);
}

.rc-featured {
    grid-column: 1 / 3;
    grid-row: 1;
}

.rc-data {
    grid-column: 3 / 4;
    grid-row: 1;
}

.rc-refurbish {
    grid-column: 1 / 2;
    grid-row: 2;
    aspect-ratio: 1;
}

.rc-recycle {
    grid-column: 2 / 3;
    grid-row: 2;
    aspect-ratio: 1;
}

.rc-esg {
    grid-column: 3 / 4;
    grid-row: 2;
    aspect-ratio: 1;
}

/* Base card */
.recovery-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, filter 0.28s ease, background 0.28s ease;
}

/* Labels */
.rc-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.rc-label-light {
    color: #71717a;
}

.rc-label span:first-child {
    font-size: 13px;
    font-weight: 600;
    color: inherit;
}

/* Icon pills */
.rc-icon-pill {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}

.rc-icon-pill-bottom {
    margin-top: auto;
    margin-bottom: 0;
}

/* CARD 1 — Featured (dark purple/photo background) */
.rc-featured {
    background-image: url(../images/device-lifecycle/device-buyback.png);
    background-size: cover;
    padding: 40px;
    justify-content: space-between;
}

.rc-featured-body {
    margin-top: auto;
}

.rc-featured h3 {
    font-family: var(--dl-font-heading) !important;
    font-size: 34px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.rc-featured p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
    max-width: 320px;
}

.rc-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(45, 27, 105, 0.35);
    filter: brightness(1.08);
}

/* CARD 2 — Secure Data Erasure (light blue tint) */
.rc-data {
    background: #f0f8ff;
    position: relative;
}

.rc-shield {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 60px;
    color: rgba(25, 131, 217, 0.12);
    line-height: 1;
}

.rc-data .rc-label {
    color: #a1a1aa;
}

.rc-data .rc-icon-pill {
    background: #fff;
    color: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.rc-data h3 {
    font-family: var(--dl-font-heading) !important;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.rc-data p {
    font-size: 14px;
    color: #71717a;
    line-height: 1.5;
    margin: 0;
}

.rc-data:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(25, 131, 217, 0.12);
    border: 1px solid rgba(25, 131, 217, 0.4);
}

/* CARD 3 — Refurbish */
.rc-refurbish .rc-label {
    color: #a1a1aa;
}

.rc-refurbish .rc-icon-pill {
    background: #f4f4f5;
    color: #52525b;
    margin-top: auto;
}

.rc-refurbish h3,
.rc-recycle h3 {
    font-family: var(--dl-font-heading) !important;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}

.rc-refurbish p,
.rc-recycle p {
    font-size: 13px;
    color: #71717a;
    line-height: 1.5;
    margin: 0;
}

/* CARD 4 — Recycling */
.rc-recycle .rc-label {
    color: #a1a1aa;
}

.rc-recycle .rc-icon-pill {
    background: #f4f4f5;
    color: transparent;
    margin-top: auto;
}

/* Outline-only leaf icon */
.rc-icon-leaf i {
    -webkit-text-stroke: 1.5px #52525b;
    color: transparent;
}

.rc-refurbish:hover,
.rc-recycle:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
    border-left: 3px solid #1983D9;
    background: #f0f8ff;
}

/* CARD 5 — ESG (sage green) */
.rc-esg {
    background-image: url('../images/device-lifecycle/sustainability.png');
    background-size: 100% 100%;
}

.rc-esg .rc-label-light {
    color: black;
}

.rc-esg h3 {
    font-family: var(--dl-font-heading) !important;
    font-size: 26px;
    font-weight: 600;
    color: #000;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    max-width: 191px;
}

.rc-esg p {
    font-size: 14px;
    color: black;
    line-height: 1.5;
    margin: 0;
    max-width: 181px;
}

.rc-esg .rc-icon-pill {
    background: rgba(255, 255, 255, 0.25);
    color: #000;
}

.rc-esg:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(125, 155, 118, 0.35);
}

/* Responsive */
@media (max-width: 991px) {
    .recovery-header {
        flex-direction: column;
        gap: 20px;
    }

    .recovery-subtitle {
        text-align: left;
    }

    .recovery-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .rc-featured {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .rc-data {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .rc-refurbish {
        grid-column: 1;
        grid-row: auto;
    }

    .rc-recycle {
        grid-column: 2;
        grid-row: auto;
    }

    .rc-esg {
        grid-column: 1 / 3;
        grid-row: auto;
    }
}

@media (max-width: 575px) {
    .recovery-bento {
        grid-template-columns: 1fr;
    }

    .rc-featured,
    .rc-data,
    .rc-refurbish,
    .rc-recycle,
    .rc-esg {
        grid-column: 1;
    }
}

/* 6. IT Stack Section */
.dl-stack-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
}

.dl-stack-section h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -2%;
    margin-bottom: 60px;
}

.text-grey {
    color: #5E5F61;
}

.dl-stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dl-stack-card {
    background: #121215;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 35px 25px 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    transition: background 0.3s ease;
}

.dl-stack-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

.dl-stack-card:hover {
    background: #1983D9;
}

.dl-stack-card .dl-stack-num {
    color: #1983D9;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.dl-stack-card:hover .dl-stack-num {
    color: #fff;
}

.dl-stack-bg-num {
    position: absolute;
    top: -15px;
    right: 5px;
    font-size: 110px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 1;
    font-family: var(--dl-font-heading);
    transition: color 0.3s ease;
}

.dl-stack-card:hover .dl-stack-bg-num {
    color: rgba(255, 255, 255, 0.15);
}

.dl-stack-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.dl-stack-card p {
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.dl-stack-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.dl-stack-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.dl-stack-pill {
    font-size: 11px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 5px 12px;
    color: #a1a1aa;
    transition: all 0.3s ease;
}

.dl-stack-card:hover .dl-stack-pill {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.dl-stack-link {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.dl-stack-card:hover .dl-stack-link {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.dl-stack-link i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background 0.3s ease, border-color 0.3s ease;
    transform: rotate(-45deg);
}

.dl-stack-card:hover .dl-stack-link i {
    border-color: rgba(255, 255, 255, 0.4);
}

/* 7. FAQs */
.se-faq-section {
    background: var(--dl-light-bg);
    padding: 100px 0;
}

.se-faq-wrap {
    display: flex;
    gap: 60px;
}

.se-faq-left {
    width: 35%;
}

.se-faq-left h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 54px;
    letter-spacing: -2%;
    margin-bottom: 20px;
}

.se-faq-left p {
    color: #5E5F61;
}

.se-faq-right {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.se-faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.se-faq-item-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
}

.se-faq-item-head span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #e1e8ed;
    background: #fff;
    transition: all 0.3s ease;
}

.se-faq-item-head span::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid #a1a1aa;
    border-bottom: 2px solid #a1a1aa;
    transform: translateY(-2px) rotate(45deg);
    transition: all 0.3s ease;
}

.se-faq-item.active .se-faq-item-head span {
    background: var(--dl-blue);
    border-color: var(--dl-blue);
}

.se-faq-item.active .se-faq-item-head span::after {
    border-color: #fff;
    transform: translateY(2px) rotate(225deg);
}

.se-faq-item-head span img {
    display: none;
}

.se-faq-content {
    display: none;
    margin-top: 15px;
    color: #5E5F61;
    font-size: 14px;
    line-height: 1.6;
}

/* 8. Contact Form Dark */
.se-contact-dark {
    background: #000;
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.se-contact-dark::before {
    content: '';
    position: absolute;
    top: -19%;
    left: -8%;
    width: 600px;
    height: 800px;
    background: url('../images/smart-edge/Ellipse 1 .png') no-repeat center center;
    background-size: contain;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.se-contact-dark::after {
    content: '';
    position: absolute;
    top: -87px;
    right: 1%;
    width: 800px;
    height: 800px;
    background: url('../images/smart-edge/Ellipse 2.png') no-repeat center center;
    background-size: contain;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.se-contact-wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.se-contact-left {
    width: 40%;
}

.se-contact-left h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 54px;
    letter-spacing: -2%;
    margin-bottom: 20px;
}

.se-contact-left p {
    color: var(--dl-muted);
    font-size: 16px;
    line-height: 1.6;
}

.se-contact-right {
    width: 60%;
}

.se-contact-right .wpcf7 form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.se-contact-right .wpcf7 form .form-group p {
    width: 100% !important;
    margin-bottom: 0 !important;
}

.se-contact-right .wpcf7 form .form-group br {
    display: none;
}

.se-contact-right .wpcf7 form>div.form-row,
.se-contact-right .wpcf7 form>div,
.se-contact-right .wpcf7 form>p {
    width: 100%;
    margin: 0;
    padding: 0;
}

.se-contact-right .wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.se-contact-right .wpcf7-form-control-wrap[data-name]::before {
    color: #71717a;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.se-contact-right .wpcf7-form-control-wrap[data-name="full_name"]::before {
    content: "FULL NAME";
}

.se-contact-right .wpcf7-form-control-wrap[data-name="phone"]::before {
    content: "PHONE";
}

.se-contact-right .wpcf7-form-control-wrap[data-name="email"]::before {
    content: "EMAIL ADDRESS";
}

.se-contact-right .wpcf7-form-control-wrap[data-name="job_title"]::before {
    content: "JOB TITLE";
}

.se-contact-right .wpcf7-form-control-wrap[data-name="company"]::before {
    content: "COMPANY";
}

.se-contact-right .wpcf7-form-control-wrap[data-name="city"]::before {
    content: "CITY";
}

.se-contact-right .wpcf7-form-control-wrap[data-name="message"]::before {
    content: "MESSAGE";
}

.se-contact-right .wpcf7 form .form-row:has([data-name="full_name"]),
.se-contact-right .wpcf7 form .form-row:has([data-name="phone"]),
.se-contact-right .wpcf7 form .form-row:has([data-name="job_title"]),
.se-contact-right .wpcf7 form .form-row:has([data-name="company"]),
.se-contact-right .wpcf7 form p:has([data-name="full_name"]),
.se-contact-right .wpcf7 form p:has([data-name="phone"]),
.se-contact-right .wpcf7 form p:has([data-name="job_title"]),
.se-contact-right .wpcf7 form p:has([data-name="company"]) {
    width: calc(50% - 10px);
}

.se-contact-right label {
    display: none;
}

.se-contact-right input[type="text"],
.se-contact-right input[type="email"],
.se-contact-right input[type="tel"],
.se-contact-right textarea {
    width: 100%;
    background: #1a1a1f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.se-contact-right input:focus,
.se-contact-right textarea:focus {
    border-color: var(--dl-blue);
}

.se-contact-right textarea {
    min-height: 120px;
    resize: vertical;
}

.se-contact-right .wpcf7-submit {
    background: var(--dl-blue);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.se-contact-right .wpcf7-submit:hover {
    background: #0093cc;
}

/* 9. Responsive adjustments */
@media(max-width: 1024px) {
    .dl-stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .se-contact-dark::before {
        width: 100%;
        opacity: 0.5;
    }

    .se-contact-dark::after {
        width: 100%;
        opacity: 0.5;
    }
}

@media(max-width: 991px) {
    .se-faq-wrap,
    .se-contact-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .se-faq-left,
    .se-faq-right,
    .se-contact-left,
    .se-contact-right {
        width: 100%;
        text-align: left;
    }

    /* Stats Section */
    .se-stats-body {
        flex-direction: column;
        gap: 30px;
    }
    
    .se-stats-quote,
    .se-stats-image,
    .se-stats-grid {
        width: 100%;
    }

    /* Lifecycle Stages Component */
    .lifecycle-container {
        flex-direction: column;
    }

    .lifecycle-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #f4f4f5;
        white-space: nowrap;
    }

    .stage-nav-item {
        border-bottom: 4px solid transparent !important;
        border-left: none !important;
        padding: 15px 25px;
    }

    .stage-nav-item.active {
        border-bottom: 4px solid #1983D9 !important;
    }

    .active-progress-bar {
        display: none !important;
    }
}

@media(max-width: 767px) {
    .device-lifecycle-hero h1 {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .dl-stack-section,
    .se-faq-section,
    .se-contact-dark {
        padding: 60px 0;
    }

    .dl-stack-grid {
        grid-template-columns: 1fr;
    }

    .se-stats-header h2,
    .dl-stack-section h2,
    .se-faq-left h2,
    .se-contact-left h2 {
        font-size: 32px;
        line-height: 35px;
        margin-bottom: 30px;
    }

    .se-contact-right .wpcf7 form .form-row:has([data-name]),
    .se-contact-right .wpcf7 form p:has([data-name]) {
        width: 100%;
    }

    .se-contact-dark::before,
    .se-contact-dark::after {
        display: none;
    }

    /* Lifecycle Stages Component tweaks */
    .dl-lifecycle-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .dl-lifecycle-header h2 {
        font-size: 32px;
    }

    .dl-lifecycle-header-right p {
        text-align: left;
    }

    .lifecycle-content {
        padding: 30px 20px;
    }

    .stage-watermark {
        font-size: 100px;
        top: -10px;
    }

    .stage-content h3 {
        font-size: 28px;
    }

    .stage-controls {
        position: static;
        margin-top: 30px;
        justify-content: flex-start;
    }
}