.ktek-benefits-wrap,
.ktek-quote-wrap,
.ktek-reviews-flow-wrap {
    box-sizing: border-box;
    width: 100%;
    font-family: inherit;
}

.ktek-benefits-wrap *,
.ktek-quote-wrap *,
.ktek-reviews-flow-wrap * {
    box-sizing: border-box;
}

.ktek-benefits-wrap {
    position: relative;
    display: grid;
    grid-template-columns: minmax(230px, 1.15fr) minmax(0, 4fr);
    gap: 22px;
    align-items: stretch;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(255, 142, 36, 0.42);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255, 122, 18, 0.08), transparent 30%),
        radial-gradient(circle at 92% 18%, rgba(255, 122, 18, 0.18), transparent 28%),
        linear-gradient(105deg, #0d141c 0%, #121820 47%, #21160d 100%);
    box-shadow: 0 18px 42px rgba(13, 16, 20, 0.18);
    color: #fff;
}

.ktek-benefits-wrap::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #ff6b0a, #f7a326);
}

.ktek-benefits-wrap::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 185, 98, 0.75), transparent);
}

.ktek-benefits-intro {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 10px 18px 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
}

.ktek-benefits-intro h2,
.ktek-quote-side h2 {
    margin: 0;
    color: #fff;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
}

.ktek-benefits-intro h2 {
    max-width: 240px;
    color: #ff8a19;
    font-size: 29px;
    text-shadow: 0 8px 24px rgba(255, 106, 10, 0.12);
}

.ktek-benefits-intro p,
.ktek-benefit-item p,
.ktek-quote-side p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.55;
}

.ktek-benefits-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    min-width: 0;
}

.ktek-benefit-item {
    position: relative;
    min-width: 0;
    padding: 16px 16px 15px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
    transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.ktek-benefit-item::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b0a, rgba(247, 163, 38, 0));
    opacity: 0.7;
}

.ktek-benefit-item:hover {
    border-color: rgba(255, 139, 32, 0.38);
    background: linear-gradient(180deg, rgba(255, 130, 23, 0.1), rgba(255, 255, 255, 0.025));
    transform: translateY(-2px);
}

.ktek-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 13px;
    border: 1px solid rgba(255, 149, 41, 0.55);
    border-radius: 999px;
    color: #ff9b2a;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 185, 98, 0.28), transparent 38%),
        rgba(255, 128, 18, 0.08);
    box-shadow: 0 10px 22px rgba(255, 107, 10, 0.1), inset 0 0 0 5px rgba(255, 255, 255, 0.025);
}

.ktek-benefit-icon svg,
.ktek-benefit-icon i {
    width: 19px;
    height: 19px;
    font-size: 19px;
    fill: currentColor;
    color: currentColor;
    line-height: 1;
}

.ktek-benefit-icon svg path,
.ktek-flow-icon svg path,
.ktek-review-nav svg path,
.ktek-review-stars svg path {
    fill: currentColor;
}

.ktek-benefit-item h3 {
    margin: 0;
    color: #ffa329;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
}

.ktek-benefit-item p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
}

.ktek-quote-wrap {
    position: relative;
    display: grid;
    grid-template-columns: minmax(390px, 0.78fr) minmax(0, 2fr);
    overflow: hidden;
    min-height: 176px;
    border: 1px solid rgba(230, 132, 31, 0.28);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.ktek-quote-side {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-width: 0;
    padding: 24px 112px 24px 28px;
    background: linear-gradient(105deg, #ad4c05 0%, #d86f0b 62%, #f28713 100%);
    color: #fff;
    clip-path: polygon(0 0, calc(100% - 64px) 0, 100% 100%, 0 100%);
}

.ktek-quote-side::before,
.ktek-quote-side::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    pointer-events: none;
}

.ktek-quote-side::before {
    right: 45px;
    width: 54px;
    background: rgba(255, 217, 176, 0.78);
    transform: skewX(18deg);
    transform-origin: top left;
}

.ktek-quote-side::after {
    right: 0;
    width: 48px;
    background: #f28713;
    transform: skewX(18deg);
    transform-origin: top left;
}

.ktek-quote-side-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.58);
    border-radius: 7px;
    color: #fff;
    flex: 0 0 auto;
}

.ktek-quote-side-icon svg,
.ktek-quote-side-icon i {
    width: 23px;
    height: 23px;
    font-size: 23px;
    fill: currentColor;
    color: currentColor;
    line-height: 1;
}

.ktek-quote-side-content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.ktek-quote-side h2 {
    max-width: 260px;
    font-size: 25px;
}

.ktek-quote-side p {
    max-width: 360px;
    font-size: 13px;
    font-weight: 600;
}

.ktek-quote-form {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 29px 34px 24px 30px;
    background: #fff;
}

.ktek-form-grid {
    display: grid;
    grid-template-columns: minmax(130px, 1fr) minmax(130px, 1fr) minmax(130px, 1fr) minmax(150px, 1fr) minmax(140px, 0.82fr);
    gap: 18px;
    align-items: end;
}

.ktek-form-grid label {
    display: grid;
    gap: 7px;
    min-width: 0;
    margin: 0;
}

.ktek-form-grid label span {
    color: #505864;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.ktek-form-grid input,
.ktek-form-grid select {
    width: 100%;
    min-width: 0;
    height: 38px;
    border: 1px solid #dfe3e8;
    border-radius: 6px;
    background: #fff;
    color: #1f2630;
    font-size: 13px;
    outline: none;
    padding: 0 14px;
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ktek-form-grid input:focus,
.ktek-form-grid select:focus {
    border-color: #ff7a12;
    box-shadow: 0 0 0 3px rgba(255, 122, 18, 0.15);
}

.ktek-form-grid button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-width: 0;
    height: 40px;
    border: 0;
    border-radius: 7px;
    background: linear-gradient(90deg, #ff650b, #ff951f);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    padding: 0 20px;
    box-shadow: 0 10px 20px rgba(255, 115, 12, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.ktek-form-grid button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(255, 115, 12, 0.3);
}

.ktek-form-grid button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.ktek-form-grid button svg,
.ktek-form-grid button i {
    width: 16px;
    height: 16px;
    font-size: 16px;
    fill: currentColor;
    color: currentColor;
    line-height: 1;
    flex: 0 0 auto;
}

.ktek-quote-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 44px;
    margin-top: 18px;
    color: #646b74;
    font-size: 13px;
    font-weight: 800;
}

.ktek-quote-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.ktek-quote-badges svg,
.ktek-quote-badges i {
    width: 11px;
    height: 11px;
    font-size: 11px;
    color: #ff7a12;
    fill: currentColor;
    line-height: 1;
    flex: 0 0 auto;
}

.ktek-quote-side-icon svg path,
.ktek-form-grid button svg path,
.ktek-quote-badges svg path {
    fill: currentColor;
}

.ktek-quote-badges em {
    font-style: normal;
}

.ktek-form-message {
    min-height: 18px;
    margin-top: 8px;
    color: #1b7f44;
    font-size: 13px;
    font-weight: 800;
}

.ktek-form-message.is-error {
    color: #b42318;
}

.ktek-reviews-flow-wrap {
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 2.25fr);
    gap: 44px;
    align-items: stretch;
    padding: 8px 0;
    color: #141820;
}

.ktek-reviews-panel,
.ktek-flow-panel {
    min-width: 0;
}

.ktek-reviews-panel {
    position: relative;
    padding-right: 42px;
    border-right: 1px solid rgba(20, 24, 32, 0.12);
}

.ktek-reviews-panel h2,
.ktek-flow-panel h2 {
    margin: 0 0 12px;
    color: #151922;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: 0;
}

.ktek-review-slider {
    position: relative;
    min-height: 164px;
}

.ktek-review-card {
    position: relative;
    display: none;
    height: 164px;
    padding: 20px 26px 18px;
    border: 1px solid rgba(20, 24, 32, 0.08);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 240, 0.88)),
        #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.11);
    overflow: hidden;
}

.ktek-review-card.is-active {
    display: block;
}

.ktek-review-quote {
    position: absolute;
    top: 10px;
    left: 17px;
    color: rgba(21, 25, 34, 0.16);
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
}

.ktek-review-card p {
    position: relative;
    display: -webkit-box;
    min-height: 58px;
    margin: 0 0 10px;
    color: #555c66;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 650;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ktek-review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
    color: #ff9317;
}

.ktek-review-stars svg,
.ktek-review-stars i {
    width: 13px;
    height: 13px;
    font-size: 13px;
    fill: currentColor;
}

.ktek-review-card strong,
.ktek-review-card span {
    display: block;
    line-height: 1.25;
}

.ktek-review-card strong {
    color: #20242b;
    font-size: 13px;
    font-weight: 850;
}

.ktek-review-card span {
    margin-top: 2px;
    color: #717984;
    font-size: 12px;
    font-weight: 650;
}

.ktek-review-nav {
    position: absolute;
    right: 18px;
    top: 52%;
    display: flex;
    gap: 12px;
    transform: translate(50%, -50%);
}

.ktek-review-nav button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 122, 18, 0.28) !important;
    border-radius: 999px;
    background: #fff !important;
    color: #ff7a12 !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
    padding: 0;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ktek-review-nav button:hover,
.ktek-review-nav button:focus {
    border-color: #ff7a12 !important;
    background: #ff7a12 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(255, 122, 18, 0.28) !important;
    outline: none !important;
}

.ktek-review-nav svg,
.ktek-review-nav i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    font-size: 16px;
    fill: currentColor;
    color: currentColor;
    line-height: 1;
}

.ktek-review-arrow {
    pointer-events: none;
}

.ktek-flow-panel {
    position: relative;
}

.ktek-flow-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding-top: 28px;
}

.ktek-flow-steps::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 28px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 122, 18, 0.18), rgba(255, 122, 18, 0.55), rgba(255, 122, 18, 0.18));
}

.ktek-flow-step {
    position: relative;
    min-width: 0;
    min-height: 106px;
    padding: 28px 16px 16px 58px;
    border: 1px solid rgba(20, 24, 32, 0.09);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.ktek-flow-badge {
    position: absolute;
    left: 50%;
    top: -18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 4px solid #fff;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff7a12, #ef6707);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    transform: translateX(-50%);
    box-shadow: 0 8px 16px rgba(255, 103, 7, 0.28);
}

.ktek-flow-icon {
    position: absolute;
    left: -20px;
    top: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 122, 18, 0.18);
    border-radius: 999px;
    background: #fff;
    color: #ff7a12;
    box-shadow: 0 10px 24px rgba(255, 122, 18, 0.13), 0 8px 18px rgba(15, 23, 42, 0.08);
}

.ktek-flow-icon svg,
.ktek-flow-icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    font-size: 23px;
    fill: currentColor;
    color: currentColor;
    line-height: 1;
}

.ktek-flow-step:nth-child(2) .ktek-flow-icon {
    color: #f97316;
}

.ktek-flow-step:nth-child(3) .ktek-flow-icon {
    color: #ea580c;
}

.ktek-flow-step:nth-child(4) .ktek-flow-icon {
    color: #fb923c;
}

.ktek-flow-step h3 {
    margin: 0 0 7px;
    color: #20242b;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: 0;
}

.ktek-flow-step p {
    margin: 0;
    color: #5f6874;
    font-size: 12.5px;
    line-height: 1.45;
    font-weight: 650;
}

@media (max-width: 1180px) {
    .ktek-quote-wrap {
        grid-template-columns: 1fr;
    }

    .ktek-quote-side {
        padding-right: 28px;
    }

    .ktek-quote-side::before,
    .ktek-quote-side::after {
        display: none;
    }

    .ktek-quote-form {
        padding: 24px 28px;
    }

    .ktek-reviews-flow-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ktek-reviews-panel {
        padding-right: 0;
        border-right: 0;
    }

    .ktek-review-nav {
        right: 18px;
        transform: translateY(-50%);
    }
}

@media (max-width: 1100px) {
    .ktek-benefits-wrap {
        grid-template-columns: 1fr;
    }

    .ktek-benefits-intro {
        padding: 18px;
    }

    .ktek-benefits-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 900px) {
    .ktek-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ktek-flow-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 16px;
    }

    .ktek-flow-steps::before {
        display: none;
    }
}

@media (max-width: 760px) {
    .ktek-benefits-wrap {
        padding: 22px;
    }

    .ktek-benefits-list {
        grid-template-columns: 1fr;
    }

    .ktek-benefit-item {
        padding: 16px;
    }

    .ktek-quote-side {
        grid-template-columns: 58px minmax(0, 1fr);
        padding: 24px 22px;
        clip-path: none !important;
    }

    .ktek-quote-side::before,
    .ktek-quote-side::after {
        display: none !important;
    }

    .ktek-quote-side-icon {
        width: 56px;
        height: 56px;
        background: rgba(255, 255, 255, 0.08);
    }

    .ktek-quote-side-icon svg,
    .ktek-quote-side-icon i {
        width: 26px;
        height: 26px;
        font-size: 26px;
    }

    .ktek-quote-side h2 {
        max-width: none;
        font-size: 22px;
        overflow-wrap: anywhere;
    }

    .ktek-quote-side p {
        max-width: none;
        font-size: 13px;
    }

    .ktek-quote-form {
        padding: 24px 28px 28px;
        background: #fff !important;
    }

    .ktek-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ktek-form-grid label span {
        color: #4b5563 !important;
        font-size: 13px;
    }

    .ktek-form-grid input,
    .ktek-form-grid select {
        height: 42px;
        color: #1f2937 !important;
        background: #fff !important;
        border-color: #d8dee7 !important;
    }

    .ktek-form-grid button {
        width: 100%;
        height: 44px;
    }

    .ktek-quote-badges {
        gap: 12px 20px;
    }

    .ktek-review-card {
        padding: 18px;
    }

    .ktek-review-nav {
        position: static;
        justify-content: flex-end;
        margin-top: 12px;
        transform: none;
    }

    .ktek-flow-steps {
        grid-template-columns: 1fr;
    }

    .ktek-flow-step {
        padding-left: 60px;
    }
}
