.section-one {
    padding: 180px 20px 80px;
    background: var(--bg);
    border-bottom: 0px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent 0, transparent 119px, rgba(74, 158, 232, .35) 119px, rgba(74, 158, 232, .35) 120px),
        repeating-linear-gradient(-45deg, transparent 0, transparent 119px, rgba(74, 158, 232, .35) 119px, rgba(74, 158, 232, .35) 120px);
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 0% 0%, #000 0%, transparent 70%);
    mask-image: radial-gradient(ellipse 100% 100% at 0% 0%, #000 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-one h3 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-two {
    padding: 100px max(48px, calc((100vw - var(--max-w)) / 2));
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-three {
    padding: 100px max(48px, calc((100vw - var(--max-w)) / 2));
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.heading-one {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 3vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.01em;
    color: var(--text);
    margin-bottom: 24px;
}

.heading-two {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 3vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.01em;
    color: var(--sky);
    margin-bottom: 24px;
}

.page-breadcrumb {
    font-size: 13px;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0;
}

.page-breadcrumb a {
    color: var(--text2);
    text-decoration: none;
    transition: color 0.3s;
}

.page-breadcrumb a:hover {
    color: var(--green);
}

.page-breadcrumb span {
    margin: 0 8px;
    color: var(--border2);
}

.card-one-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    position: relative;
    margin-top: 6px;
}

.card-one-process .step {
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.card-one {
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    padding: 22px;
    max-width: 100%;
    margin: 40px auto 0;
}

.card-one hr {
    border: none;
    border-top: 1px solid var(--border);
}

.card-one-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.card-one-head h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: -0.2px;
}

.card-one-head p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    max-width: 90%;
    line-height: 1.5;
}

.grid_one {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    position: relative;
    margin-top: 4%;
}

.grid_one .dash-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.grid_one .dash-card .dash-body {
    flex: 1;
}

.grid_two_section {
    grid-column: 1 / -1;
    margin-bottom: 40px;
}

.grid_two_section:last-of-type {
    margin-bottom: 0;
}

.failure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .card-one-process {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .card-one-process {
        grid-template-columns: 1fr;
    }

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

    .card-one {
        padding: 16px;
    }

    .card-one-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-one-head p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .failure-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.failure-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s var(--silk), box-shadow 0.3s var(--silk);
}

.failure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--border2);
}

.failure-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.failure-card p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.6;
    margin: 0;
}

.failure-highlight {
    color: var(--sky);
    font-weight: 600;
}

/* Extra design for FAQ lists */
.faq-ol {
    margin-bottom: 12px;
    padding-left: 20px;
    color: var(--text2);
    line-height: 2;
}

.faq-brands-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    color: var(--text2);
    line-height: 2;
}

.faq-brands-col {
    flex: 1;
    min-width: 180px;
}

.faq-brands-title {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 600;
}

/* Responsive adjustments for FAQ Brands */
@media (max-width: 560px) {
    .faq-brands-col {
        min-width: 100%;
        padding-top: 0 !important;
    }
}

/* ============================================
   HOVER ANIMATIONS — ALL BOXES & SUB-BOXES
   index.php + hard-drive-recovery.php
   ============================================ */

/* --- Quick List Items (Hero Triage Panel — RAPID TRIAGE) --- */
.quickitem {
    transition: transform 0.4s var(--silk),
        border-color 0.4s var(--silk),
        background 0.4s var(--silk),
        box-shadow 0.4s var(--silk);
    cursor: default;
}

.quickitem:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: rgba(74, 158, 232, .28);
    background: rgba(255, 255, 255, .065);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
}

.qicon {
    transition: transform 0.4s var(--silk),
        border-color 0.4s var(--silk),
        background 0.4s var(--silk);
}

.quickitem:hover .qicon {
    transform: scale(1.12) rotate(-6deg);
    border-color: rgba(74, 158, 232, .32);
    background: rgba(74, 158, 232, .14);
}

/* --- Transaction / Info List Items (Lab-grade, Clear scope panels) --- */
.tx-item {
    transition: transform 0.4s var(--silk),
        border-color 0.4s var(--silk),
        background 0.4s var(--silk),
        box-shadow 0.4s var(--silk);
    cursor: default;
}

.tx-item:hover {
    transform: translateX(6px);
    border-color: rgba(74, 158, 232, .22);
    background: rgba(74, 158, 232, .05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
}

.tx-icon {
    transition: transform 0.4s var(--silk);
}

.tx-item:hover .tx-icon {
    transform: scale(1.14) rotate(-6deg);
}

/* --- Dashboard Cards (Lab-grade, Clear scope, Working Mechanism, etc.) --- */
.dash-card {
    transition: transform 0.5s var(--silk),
        border-color 0.5s var(--silk),
        box-shadow 0.5s var(--silk);
}

.dash-card:hover {
    transform: translateY(-4px);
    border-color: var(--border2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
}

/* --- Process Step Cards (Our Data Recovery Process + Determine Type of Failure + HDD Mechanism) --- */
.step {
    transition: transform 0.4s var(--silk),
        border-color 0.4s var(--silk),
        box-shadow 0.4s var(--silk);
    cursor: default;
}

.step:hover {
    transform: translateY(-5px);
    border-color: rgba(82, 198, 255, .28);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
}

.stepnum {
    transition: transform 0.4s var(--silk),
        border-color 0.4s var(--silk),
        background 0.4s var(--silk);
}

.step:hover .stepnum {
    transform: scale(1.18) rotate(-8deg);
    border-color: rgba(82, 198, 255, .38);
    background: rgba(82, 198, 255, .14);
}

.step:hover .steplabel {
    color: rgba(255, 255, 255, .8);
}

.steplabel {
    transition: color 0.4s var(--silk);
}

/* --- Recovery Process Card Container (Our Data Recovery Process) --- */
.recovery-process-card {
    transition: transform 0.5s var(--silk),
        border-color 0.5s var(--silk),
        box-shadow 0.5s var(--silk);
}

.recovery-process-card:hover {
    transform: translateY(-3px);
    border-color: rgba(82, 198, 255, .22);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .22);
}

/* --- Help Box (Need immediate help?) --- */
.help-box {
    transition: transform 0.4s var(--silk),
        border-color 0.4s var(--silk),
        background 0.4s var(--silk),
        box-shadow 0.4s var(--silk);
    cursor: default;
}

.help-box:hover {
    transform: translateY(-3px);
    border-color: rgba(61, 204, 142, .28);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}

.help-box:hover>.qicon {
    transform: scale(1.15) rotate(-8deg);
    background: rgba(61, 204, 142, .14);
    border-color: rgba(61, 204, 142, .32);
}

/* --- Card One Container (hard-drive-recovery.php main sections) --- */
.card-one {
    transition: transform 0.5s var(--silk),
        border-color 0.5s var(--silk),
        box-shadow 0.5s var(--silk);
}

.card-one:hover {
    transform: translateY(-3px);
    border-color: rgba(74, 158, 232, .22);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .22);
}

/* --- Mini / Tip Notes --- */
.mini {
    transition: transform 0.35s var(--silk),
        border-color 0.35s var(--silk),
        background 0.35s var(--silk);
    cursor: default;
}

.mini:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 207, 92, .32);
    background: rgba(255, 207, 92, .06);
}

.mini:hover .led {
    box-shadow: 0 0 0 6px rgba(255, 207, 92, .18);
}

.mini .led {
    transition: box-shadow 0.4s var(--silk);
}

/* --- Security Badge Icon Micro-Animation Enhancement --- */
.sec-badge-icon {
    transition: transform 0.4s var(--silk),
        background 0.4s var(--silk),
        border-color 0.4s var(--silk);
}

.sec-badge:hover .sec-badge-icon {
    transform: scale(1.12) rotate(-6deg);
    background: rgba(74, 158, 232, .16);
    border-color: rgba(74, 158, 232, .3);
}

/* --- Sticky Card Icon Enhancement (Platform Services) --- */
.sticky-card-icon {
    transition: transform 0.4s var(--silk),
        background 0.3s var(--silk),
        border-color 0.4s var(--silk);
}

.sticky-card:hover .sticky-card-icon {
    transform: scale(1.12) rotate(-5deg);
    background: rgba(74, 158, 232, .2);
    border-color: rgba(74, 158, 232, .3);
}

/* --- Sticky Card Pill Shimmer on Hover --- */
.sc-pill {
    transition: background 0.3s var(--silk),
        border-color 0.3s var(--silk),
        color 0.3s var(--silk);
}

.sticky-card:hover .sc-pill {
    background: rgba(74, 158, 232, .14);
    border-color: rgba(74, 158, 232, .25);
}

/* --- Failure Cards Enhanced Glow (hard-drive-recovery.php) --- */
.failure-card:hover h4 {
    color: var(--sky2);
}

.failure-card h4 {
    transition: color 0.3s var(--silk);
}

/* --- Grid Two Section Category Headers --- */
.grid_two_section h3 span {
    transition: transform 0.4s var(--silk);
    display: inline-block;
}

.grid_two_section:hover h3 span {
    transform: scale(1.15) rotate(-8deg);
}

/* --- Card One Head subtle animation --- */
.card-one-head {
    transition: transform 0.35s var(--silk);
}

.card-one:hover .card-one-head h2 {
    color: var(--sky2);
}

.card-one-head h2 {
    transition: color 0.4s var(--silk);
}

/* --- Float Badge hover pulse boost --- */
.float-badge {
    transition: border-color 0.4s var(--silk),
        box-shadow 0.4s var(--silk);
}

.float-badge:hover {
    border-color: rgba(74, 158, 232, .35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

/* --- Banner Labels (hero trust area) --- */
.banner_label:hover {
    border-color: rgba(74, 158, 232, .3);
    background: rgba(74, 158, 232, .08);
    color: var(--sky2);
    transform: translateY(-1px);
}

.banner_label {
    transition: all 0.3s var(--silk);
}

/* --- Help List Items subtle hover --- */
.help-list li {
    transition: transform 0.3s var(--silk),
        background 0.3s var(--silk),
        border-color 0.3s var(--silk);
    border-radius: 8px;
    padding: 6px 8px;
}

.help-list li:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, .03);
}

/* --- App Store Buttons lift --- */
.app-store-btn {
    transition: border-color 0.5s var(--silk),
        background 0.5s var(--silk),
        transform 0.4s var(--silk),
        box-shadow 0.4s var(--silk);
}

.app-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
}

/* ============================================================================
   SERVICES PAGE CUSTOM CLASSES (Extracting main inline styles to style.css)
   ============================================================================ */

#services-hero {
    padding-top: calc(36px + var(--nav-h) + 20px);
    background-color: var(--bg2);
    border-top: 1px solid var(--border);
}

#services-hero::before,
#services-hero::after {
    content: none !important;
}

.services-breadcrumb {
    margin-bottom: 24px;
}

.services-title {
    font-size: clamp(32px, 3.5vw, 56px);
    line-height: 1.15;
    margin-bottom: 16px;
}

.services-hero-sub {
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 24px;
    color: var(--text2);
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.keyword-tag {
    font-size: 11px;
    background: rgba(74, 158, 232, 0.06);
    border-color: rgba(74, 158, 232, 0.15);
}

.services-hero-btns {
    justify-content: flex-start;
    gap: 12px;
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.03);
}

#services-hero .fb-left {
    top: 10%;
    left: -8%;
    z-index: 10;
}

#services-hero .fb-right {
    bottom: 12%;
    right: -5%;
    z-index: 10;
}

#services-hero .dash-card {
    width: 100%;
    max-width: 460px;
    min-height: 380px;
}

#services-hero .dash-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 40px);
}

/* Diagnostic Workbench Schematic animation */
.disk-container {
    background: rgba(0, 0, 0, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.disk-platter {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid var(--border);
    margin: 0 auto;
    position: relative;
    background: radial-gradient(circle, rgba(74, 158, 232, 0.18) 20%, transparent 60%);
    box-shadow: 0 0 20px rgba(74, 158, 232, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spinPlatter 12s linear infinite;
}

.disk-spindle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--border2);
    border: 2px solid var(--text3);
    z-index: 2;
}

.disk-track-outer {
    position: absolute;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 1px dashed rgba(74, 158, 232, 0.25);
}

.disk-track-inner {
    position: absolute;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 1px dashed rgba(74, 158, 232, 0.15);
}

.actuator-arm {
    position: absolute;
    top: 48px;
    right: 115px;
    width: 75px;
    height: 8px;
    background: linear-gradient(90deg, var(--border2), var(--sky));
    transform-origin: right center;
    transform: rotate(-35deg);
    border-radius: 4px;
    z-index: 3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.actuator-head {
    position: absolute;
    left: 0;
    top: -4px;
    width: 8px;
    height: 16px;
    background: var(--green);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--green);
}

.disk-status {
    margin-top: 14px;
    font-family: monospace;
    font-size: 11px;
    color: var(--text3);
}

.disk-status-ok {
    color: var(--green);
    font-weight: bold;
}

.progress-section {
    margin-top: 14px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 6px;
}

.progress-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill-98 {
    width: 98.4%;
    height: 100%;
    background: linear-gradient(90deg, var(--sky), var(--green));
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(74, 158, 232, 0.5);
}

.stats-grid-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.stat-block-mini {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.stat-label-mini {
    font-size: 10px;
    color: var(--text3);
}

.stat-val-mini {
    font-size: 14px;
    font-weight: 700;
    margin-top: 4px;
}

.stat-val-red {
    color: #ff5c5c;
}

.stat-val-sky {
    color: var(--sky);
}

.stat-val-green {
    color: var(--green);
}

@keyframes spinPlatter {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Services and Why Choose Us Sections spacing */
#features-section-custom {
    border-top: 1px solid var(--border);
    padding-top: 80px;
}

.features-header-center {
    text-align: center;
    margin-bottom: 48px;
}

.section-title-mt {
    margin-top: 10px;
}

.section-sub-max {
    max-width: 800px;
    margin: 20px auto 0;
    font-size: 14.5px;
    line-height: 1.6;
}

.why-container {
    max-width: 1100px;
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 48px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.why-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bg);
}

.why-card-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-card-title {
    font-size: 18px;
    margin: 0 0 12px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
}

.why-card-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text2);
    margin: 0;
}

.why-card-footer {
    margin-top: 20px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
}

.color-green {
    color: var(--green);
}

.color-sky {
    color: var(--sky);
}

.faq-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.faq-section-sub {
    max-width: 600px;
    margin-top: 12px;
}

.faq-toggle-btn {
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--text2);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all .2s;
    white-space: nowrap;
    margin-bottom: 6px;
}

.faq-bottom-cta {
    margin-top: 40px;
    text-align: center;
    padding: 24px;
    border-top: 1px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.faq-contact-btn {
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(74, 158, 232, 0.08);
    border-color: rgba(74, 158, 232, 0.2);
    color: var(--sky);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}