/* =========================================================
   FIXLINE REFRIGERATOR REPAIR
   SEO CONTENT SECTION
   ========================================================= */

.fixline-fridge-content,
.fixline-fridge-content * {
    box-sizing: border-box;
}

.fixline-fridge-content {
    --fx-orange: #f15a32;
    --fx-orange-dark: #dc4825;
    --fx-orange-soft: #fff3ef;
    --fx-orange-light: #fff8f5;

    --fx-heading: #111827;
    --fx-text: #5f6673;
    --fx-border: #e4e7eb;
    --fx-gray-bg: #fafbfc;
    --fx-white: #ffffff;

    position: relative;
    overflow: hidden;
    background: #fff;
    color: var(--fx-text);
    font-family: inherit;
    font-size: 16px;
    line-height: 1.72;
}

.fixline-fridge-content h2,
.fixline-fridge-content h3,
.fixline-fridge-content p,
.fixline-fridge-content ul {
    margin-top: 0;
}

.fixline-fridge-content h2,
.fixline-fridge-content h3 {
    color: var(--fx-heading);
    font-family: inherit;
    letter-spacing: -0.025em;
}

.fixline-fridge-content h2 {
    margin-bottom: 18px;
    font-size: clamp(29px, 3vw, 38px);
    line-height: 1.22;
    font-weight: 750;
}

.fixline-fridge-content h3 {
    margin-bottom: 11px;
    font-size: 20px;
    line-height: 1.32;
    font-weight: 700;
}

.fixline-fridge-content p {
    margin-bottom: 18px;
}

.fixline-fridge-content strong {
    color: var(--fx-heading);
}

.fixline-fridge-content a.fx-text-link {
    color: inherit;
    font-weight: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(241,90,50,.45);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .2s ease, text-decoration-color .2s ease;
}

.fixline-fridge-content a.fx-text-link:hover {
    color: var(--fx-orange);
    text-decoration-color: var(--fx-orange);
}

.fx-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.fx-section {
    padding: 82px 0;
}

.fx-section-sm {
    padding: 64px 0;
}

.fx-gray {
    background: var(--fx-gray-bg);
}

.fx-soft-orange {
    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(241,90,50,.075),
            transparent 25%
        ),
        radial-gradient(
            circle at 95% 90%,
            rgba(241,90,50,.06),
            transparent 25%
        ),
        #fff;
}

/* ========================
   HEADING
======================== */

.fx-heading-center {
    max-width: 850px;
    margin: 0 auto 42px;
    text-align: center;
}

.fx-heading-left {
    max-width: 850px;
    margin-bottom: 32px;
}

.fx-line {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 21px;
}

.fx-heading-center .fx-line {
    justify-content: center;
}

.fx-line span {
    display: block;
    height: 4px;
    border-radius: 5px;
}

.fx-line span:nth-child(1),
.fx-line span:nth-child(3) {
    width: 21px;
    background: rgba(241,90,50,.45);
}

.fx-line span:nth-child(2) {
    width: 42px;
    background: var(--fx-orange);
}

/* ========================
   INTRO
======================== */

.fx-intro {
    position: relative;
    max-width: 1010px;
    margin: 0 auto;
    padding: 42px 46px;
    overflow: hidden;
    border: 1px solid var(--fx-border);
    border-radius: 15px;
    background: #fff;
    box-shadow:
        0 18px 50px rgba(15,23,42,.06);
}

.fx-intro:before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 0;
    width: 4px;
    border-radius: 0 5px 5px 0;
    background: var(--fx-orange);
}

.fx-intro p:last-of-type {
    margin-bottom: 0;
}

/* ========================
   BUTTON
======================== */

.fx-cta {
    margin-top: 28px;
}

.fx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 50px;
    padding: 14px 28px;

    border-radius: 10px;
    background: var(--fx-orange);
    box-shadow:
        0 10px 25px rgba(241,90,50,.24);

    color: #fff !important;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none !important;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.fx-btn:hover {
    transform: translateY(-2px);
    background: var(--fx-orange-dark);
    box-shadow:
        0 14px 32px rgba(241,90,50,.30);
}

.fx-btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

/* ========================
   TEXT + PHOTO
======================== */

.fx-photo-grid {
    display: grid;
    grid-template-columns:
        minmax(0, .88fr)
        minmax(0, 1.12fr);
    gap: 52px;
    align-items: center;
}

.fx-service-photo-wrap {
    position: relative;
}

.fx-service-photo {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 18px;
    background: #f4f4f4;
    box-shadow:
        0 18px 50px rgba(15,23,42,.12);
}

.fx-service-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
}

.fx-service-photo-wrap:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: -18px;
    right: -18px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(241,90,50,.10);
}

.fx-service-photo-wrap:after {
    content: "";
    position: absolute;
    z-index: 3;
    right: 24px;
    bottom: -13px;
    width: 110px;
    height: 26px;
    border-radius: 20px;
    background:
        repeating-linear-gradient(
            90deg,
            var(--fx-orange) 0 24px,
            transparent 24px 34px
        );
    opacity: .9;
}

/* ========================
   WARNINGS
======================== */

.fx-warning-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 33px;
}

.fx-warning {
    position: relative;
    min-height: 155px;
    padding: 27px 23px;
    overflow: hidden;

    border: 1px solid var(--fx-border);
    border-radius: 13px;
    background: #fff;

    box-shadow:
        0 9px 28px rgba(15,23,42,.045);

    color: var(--fx-heading);
    font-weight: 650;
}

.fx-warning-num {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;
    margin-bottom: 17px;

    border-radius: 50%;
    background: var(--fx-orange-soft);

    color: var(--fx-orange);
    font-size: 13px;
    font-weight: 750;
}

.fx-warning:after {
    content: "";
    position: absolute;
    right: -32px;
    bottom: -32px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(241,90,50,.055);
}

/* ========================
   PROBLEMS
======================== */

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

.fx-problem {
    position: relative;
    padding: 28px 29px;
    overflow: hidden;

    border: 1px solid var(--fx-border);
    border-radius: 13px;
    background: #fff;

    box-shadow:
        0 9px 27px rgba(15,23,42,.04);

    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.fx-problem:hover {
    transform: translateY(-3px);
    border-color: rgba(241,90,50,.34);
    box-shadow:
        0 16px 38px rgba(15,23,42,.075);
}

.fx-problem-head {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.fx-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;
    flex: 0 0 43px;

    border-radius: 12px;
    background: var(--fx-orange-soft);
    color: var(--fx-orange);
}

.fx-icon svg {
    width: 21px;
    height: 21px;
}

.fx-problem h3 {
    margin: 7px 0 12px;
}

.fx-problem p {
    margin-bottom: 0;
}

.fx-note {
    margin-top: 28px;
    padding: 24px 27px;

    border-left: 4px solid var(--fx-orange);
    border-radius: 8px 12px 12px 8px;

    background: var(--fx-orange-light);
}

/* ========================
   SERVICE BENEFITS
======================== */

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

.fx-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 22px 23px;

    border: 1px solid var(--fx-border);
    border-radius: 12px;
    background: #fff;
}

.fx-check {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;
    flex: 0 0 31px;

    border-radius: 50%;
    background: var(--fx-orange-soft);
    color: var(--fx-orange);
}

.fx-check svg {
    width: 16px;
    height: 16px;
}

.fx-benefit p {
    margin: 2px 0 0;
    color: var(--fx-heading);
    font-weight: 600;
}

/* ========================
   BRANDS
======================== */

.fx-brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 31px;
}

.fx-brand {
    position: relative;
    padding: 26px 28px 26px 33px;

    border: 1px solid var(--fx-border);
    border-radius: 12px;
    background: #fff;

    box-shadow:
        0 8px 24px rgba(15,23,42,.035);
}

.fx-brand:before {
    content: "";
    position: absolute;
    top: 34px;
    left: 17px;

    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: var(--fx-orange);
}

.fx-brand p {
    margin: 0;
}

/* ========================
   BOOK
======================== */

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

.fx-book-card {
    position: relative;
    padding: 27px 28px 27px 72px;

    border: 1px solid var(--fx-border);
    border-radius: 12px;
    background: #fff;
}

.fx-book-number {
    position: absolute;
    top: 24px;
    left: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 10px;
    background: var(--fx-orange);

    color: #fff;
    font-size: 13px;
    font-weight: 750;
}

.fx-book-card p {
    margin: 0;
}

/* ========================
   AREA
======================== */

.fx-area {
    position: relative;
    overflow: hidden;
    padding: 40px 42px;

    border: 1px solid rgba(241,90,50,.17);
    border-radius: 16px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(241,90,50,.11),
            transparent 32%
        ),
        #fff;

    box-shadow:
        0 14px 40px rgba(15,23,42,.045);
}

.fx-area:after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -45px;

    width: 150px;
    height: 150px;

    border: 1px solid rgba(241,90,50,.15);
    border-radius: 50%;
}

.fx-area > * {
    position: relative;
    z-index: 2;
}

.fx-area p:last-child {
    margin-bottom: 0;
}

/* ========================
   FINAL CTA
======================== */

.fx-final {
    position: relative;
    overflow: hidden;
    padding: 53px 55px;

    border-radius: 19px;
    background:
        linear-gradient(
            135deg,
            #f15a32 0%,
            #f26740 100%
        );

    box-shadow:
        0 20px 50px rgba(241,90,50,.23);

    color: #fff;
}

.fx-final:before,
.fx-final:after {
    content: "";
    position: absolute;

    border: 1px solid rgba(255,255,255,.20);
    border-radius: 50%;
}

.fx-final:before {
    top: -105px;
    right: -70px;
    width: 230px;
    height: 230px;
}

.fx-final:after {
    right: 100px;
    bottom: -95px;
    width: 145px;
    height: 145px;
}

.fx-final-inner {
    position: relative;
    z-index: 2;
    max-width: 890px;
}

.fx-final h2,
.fx-final p {
    color: #fff;
}

.fx-final p {
    max-width: 830px;
    font-size: 17px;
    line-height: 1.75;
}

.fx-btn-white {
    background: #fff;
    color: var(--fx-orange) !important;
    box-shadow: none;
}

.fx-btn-white:hover {
    background: #fff8f5;
}

/* ========================
   FAQ
======================== */

.fx-faq {
    max-width: 930px;
    margin: 0 auto;
}

.fx-faq-item {
    margin-bottom: 13px;
    overflow: hidden;

    border: 1px solid var(--fx-border);
    border-radius: 12px;
    background: #fff;

    box-shadow:
        0 7px 22px rgba(15,23,42,.035);
}

.fx-faq-item summary {
    position: relative;

    display: flex;
    align-items: center;
    gap: 15px;

    min-height: 73px;
    padding: 20px 63px 20px 23px;

    list-style: none;
    cursor: pointer;

    color: var(--fx-heading);
    font-size: 17px;
    line-height: 1.42;
    font-weight: 700;
}

.fx-faq-item summary::-webkit-details-marker {
    display: none;
}

.fx-faq-item summary:after {
    content: "+";

    position: absolute;
    top: 50%;
    right: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 33px;
    height: 33px;

    transform: translateY(-50%);

    border-radius: 50%;
    background: var(--fx-orange-soft);

    color: var(--fx-orange);
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
}

.fx-faq-item[open] summary {
    color: var(--fx-orange);
}

.fx-faq-item[open] summary:after {
    content: "-";
}

.fx-faq-num {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;
    flex: 0 0 35px;

    border-radius: 9px;
    background: var(--fx-orange-soft);

    color: var(--fx-orange);
    font-size: 12px;
    font-weight: 750;
}

.fx-faq-answer {
    padding: 0 62px 23px 73px;
}

.fx-faq-answer p {
    margin: 0;
}

/* ========================
   RESPONSIVE
======================== */

@media (max-width: 991px) {

    .fx-section {
        padding: 68px 0;
    }

    .fx-photo-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .fx-service-photo-wrap {
        max-width: 760px;
        margin: 0 auto;
    }

    .fx-warning-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fx-problems-grid,
    .fx-brand-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .fixline-fridge-content {
        font-size: 15.5px;
        line-height: 1.68;
    }

    .fx-container {
        width: min(100% - 28px, 1180px);
    }

    .fx-section,
    .fx-section-sm {
        padding: 52px 0;
    }

    .fixline-fridge-content h2 {
        font-size: 28px;
    }

    .fixline-fridge-content h3 {
        font-size: 19px;
    }

    .fx-heading-center {
        margin-bottom: 31px;
    }

    .fx-intro {
        padding: 29px 24px;
    }

    .fx-photo-grid {
        gap: 28px;
    }

    .fx-service-photo {
        border-radius: 13px;
    }

    .fx-warning-grid,
    .fx-benefits,
    .fx-book-grid {
        grid-template-columns: 1fr;
    }

    .fx-problem {
        padding: 23px 21px;
    }

    .fx-area {
        padding: 29px 24px;
    }

    .fx-final {
        padding: 39px 25px;
        border-radius: 15px;
    }

    .fx-final p {
        font-size: 16px;
    }

    .fx-btn {
        width: 100%;
    }

    .fx-faq-item summary {
        padding: 18px 53px 18px 17px;
        font-size: 16px;
    }

    .fx-faq-item summary:after {
        right: 15px;
    }

    .fx-faq-num {
        display: none;
    }

    .fx-faq-answer {
        padding: 0 18px 20px;
    }
}
