/* B2B-лендинг: Изготовление инструмента на заказ — Группа Энергосервис */

.custom-tool-page {
    --ct-dark: #012B57;
    --ct-dark-mid: #024185;
    --ct-accent: #1F5CD3;
    --ct-accent-light: #3d7ae8;
    --ct-bg: #EFF1F5;
    --ct-bg-light: #F5F8FD;
    --ct-text: #2F3338;
    --ct-text-muted: rgba(47, 51, 56, 0.65);
    --ct-gradient: linear-gradient(262.43deg, #012B57 0%, #024185 100%);
    --ct-shadow: 0 20px 40px rgba(31, 92, 211, 0.12);
    --ct-shadow-hover: 0 24px 48px rgba(31, 92, 211, 0.22);
    --ct-radius: 4px;
    --ct-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: hidden;
}

.custom-tool-page * {
    box-sizing: border-box;
}

.ct-section {
    padding: 90px 0;
    position: relative;
}

.ct-section--alt {
    background: var(--ct-bg);
}

.ct-section--dark {
    background: var(--ct-gradient);
    color: #fff;
}

.ct-section__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ct-accent);
    margin-bottom: 16px;
}

.ct-section--dark .ct-section__label {
    color: rgba(255, 255, 255, 0.6);
}

.ct-section__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #333;
}

.ct-section--dark .ct-section__title {
    color: #fff;
}

.ct-section__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ct-text-muted);
    max-width: 720px;
    margin: 0 0 50px;
}

.ct-section--dark .ct-section__subtitle {
    color: rgba(255, 255, 255, 0.75);
}

/* Scroll reveal */
.ct-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ct-transition), transform 0.7s var(--ct-transition);
}

.ct-reveal.ct-visible {
    opacity: 1;
    transform: translateY(0);
}

.ct-reveal-delay-1 { transition-delay: 0.1s; }
.ct-reveal-delay-2 { transition-delay: 0.2s; }
.ct-reveal-delay-3 { transition-delay: 0.3s; }
.ct-reveal-delay-4 { transition-delay: 0.4s; }

.ct-hero .ct-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO ===== */
.ct-hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: var(--ct-gradient);
    overflow: hidden;
    padding: 60px 0 80px;
}

.ct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(31, 92, 211, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.ct-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent 80%);
}

.ct-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.ct-hero__content {
    flex: 1;
    min-width: 300px;
    color: #fff;
}

.ct-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.ct-hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: ct-pulse 2s infinite;
}

@keyframes ct-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.ct-hero__title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.15;
    margin: 0 0 24px;
    color: #fff;
}

.ct-hero__title span {
    color: #7eb3ff;
}

.ct-hero__text {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px;
    max-width: 560px;
}

.ct-hero__checks {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px 24px;
    max-width: 420px;
}

.ct-hero__checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.ct-hero__checks li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--ct-accent);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.ct-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.ct-hero__actions .but {
    min-width: 240px;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.ct-hero__actions .but-mod {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.ct-hero__actions .but-mod:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.ct-hero__visual {
    flex: 1;
    min-width: 320px;
    position: relative;
}

.ct-hero__image-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.ct-hero__image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 43, 87, 0.2) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.ct-hero__image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 420px;
    object-fit: cover;
}

.ct-hero__stat-float {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: #fff;
    padding: 20px 28px;
    border-radius: var(--ct-radius);
    box-shadow: var(--ct-shadow);
    z-index: 3;
}

.ct-hero__stat-float strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--ct-accent);
    line-height: 1;
}

.ct-hero__stat-float span {
    font-size: 13px;
    color: var(--ct-text-muted);
}

/* ===== PROBLEMS ===== */
.ct-problems__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ct-problem-card {
    background: #fff;
    border: 1px solid rgba(47, 51, 56, 0.08);
    padding: 32px 28px;
    border-radius: var(--ct-radius);
    transition: var(--ct-transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.ct-problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--ct-accent);
    transition: height var(--ct-transition);
}

.ct-problem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ct-shadow-hover);
    border-color: rgba(31, 92, 211, 0.2);
}

.ct-problem-card:hover::before {
    height: 100%;
}

.ct-problem-card__icon {
    width: 52px;
    height: 52px;
    background: var(--ct-bg-light);
    border-radius: var(--ct-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--ct-transition);
}

.ct-problem-card:hover .ct-problem-card__icon {
    background: var(--ct-accent);
}

.ct-problem-card__icon img {
    width: 28px;
    height: 28px;
    transition: var(--ct-transition);
}

.ct-problem-card:hover .ct-problem-card__icon img {
    filter: brightness(0) invert(1);
}

.ct-problem-card h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: var(--ct-text);
}

/* ===== EFFECT AREAS ===== */
.ct-effect__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ct-effect-card {
    position: relative;
    height: 280px;
    border-radius: var(--ct-radius);
    overflow: hidden;
    cursor: pointer;
}

.ct-effect-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ct-effect-card:hover img {
    transform: scale(1.08);
}

.ct-effect-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 43, 87, 0.95) 0%, rgba(1, 43, 87, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--ct-transition);
}

.ct-effect-card:hover .ct-effect-card__overlay {
    background: linear-gradient(to top, rgba(1, 43, 87, 0.98) 0%, rgba(31, 92, 211, 0.7) 100%);
}

.ct-effect-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    transform: translateY(0);
    transition: var(--ct-transition);
}

.ct-effect-card__desc {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0);
    max-height: 0;
    overflow: hidden;
    margin: 0;
    transition: var(--ct-transition);
}

.ct-effect-card:hover .ct-effect-card__desc {
    color: rgba(255, 255, 255, 0.85);
    max-height: 120px;
    margin-top: 4px;
}

/* ===== SERVICES ===== */
.ct-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ct-service-card {
    background: #fff;
    border: 1px solid rgba(47, 51, 56, 0.08);
    padding: 36px 30px;
    border-radius: var(--ct-radius);
    display: flex;
    flex-direction: column;
    transition: var(--ct-transition);
    position: relative;
}

.ct-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ct-gradient);
    transform: scaleX(0);
    transition: transform var(--ct-transition);
}

.ct-service-card:hover {
    box-shadow: var(--ct-shadow-hover);
    transform: translateY(-4px);
}

.ct-service-card:hover::after {
    transform: scaleX(1);
}

.ct-service-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.ct-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 14px;
    color: var(--ct-text);
}

.ct-service-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ct-text-muted);
    margin: 0 0 24px;
    flex-grow: 1;
}

.ct-service-card .but-mod {
    align-self: flex-start;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.06em;
}

/* ===== TIMELINE ===== */
.ct-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 0;
    padding: 40px 0 20px;
}

.ct-timeline::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, var(--ct-accent) 0%, var(--ct-dark-mid) 100%);
    z-index: 0;
}

.ct-timeline__step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.ct-timeline__num {
    width: 56px;
    height: 56px;
    background: var(--ct-gradient);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(31, 92, 211, 0.35);
    transition: var(--ct-transition);
}

.ct-timeline__step:hover .ct-timeline__num {
    transform: scale(1.12);
    box-shadow: 0 12px 32px rgba(31, 92, 211, 0.5);
}

.ct-timeline__step h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: var(--ct-text);
}

/* ===== CASES ===== */
.ct-cases__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ct-case-card {
    background: #fff;
    border-radius: var(--ct-radius);
    overflow: hidden;
    box-shadow: var(--ct-shadow);
    transition: var(--ct-transition);
}

.ct-case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ct-shadow-hover);
}

.ct-case-card__image {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.ct-case-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ct-case-card:hover .ct-case-card__image img {
    transform: scale(1.05);
}

.ct-case-card__body {
    padding: 28px 32px 32px;
}

.ct-case-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 16px;
    color: var(--ct-text);
}

.ct-case-card__result {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 20px;
    background: var(--ct-bg-light);
    border-left: 3px solid var(--ct-accent);
    border-radius: 0 var(--ct-radius) var(--ct-radius) 0;
}

.ct-case-card__result strong {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ct-accent);
    white-space: nowrap;
}

.ct-case-card__result p {
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    color: var(--ct-text-muted);
}

/* ===== STATS ===== */
.ct-stats {
    padding: 100px 0;
}

.ct-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.ct-stat-item {
    padding: 20px;
}

.ct-stat-item__num {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin-bottom: 12px;
}

.ct-stat-item__num span {
    color: #7eb3ff;
}

.ct-stat-item p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ===== BENEFITS ===== */
.ct-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ct-benefit-card {
    background: #fff;
    padding: 36px 30px;
    border-radius: var(--ct-radius);
    border: 1px solid rgba(47, 51, 56, 0.06);
    position: relative;
    overflow: hidden;
    transition: var(--ct-transition);
}

.ct-benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(31, 92, 211, 0.06) 0%, transparent 70%);
    transition: var(--ct-transition);
}

.ct-benefit-card:hover {
    box-shadow: var(--ct-shadow-hover);
    transform: translateY(-4px);
    border-color: rgba(31, 92, 211, 0.15);
}

.ct-benefit-card:hover::before {
    top: -20%;
    right: -20%;
}

.ct-benefit-card__num {
    font-size: 48px;
    font-weight: 700;
    color: rgba(31, 92, 211, 0.12);
    line-height: 1;
    margin-bottom: 16px;
}

.ct-benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: var(--ct-text);
    position: relative;
}

/* ===== LEAD FORM ===== */
.ct-form-section {
    background: var(--ct-bg);
}

.ct-form-wrap {
    display: flex;
    gap: 60px;
    align-items: stretch;
    flex-wrap: wrap;
}

.ct-form-info {
    flex: 1;
    min-width: 280px;
}

.ct-form-box {
    flex: 1.2;
    min-width: 320px;
    background: #fff;
    padding: 40px;
    border-radius: var(--ct-radius);
    box-shadow: var(--ct-shadow);
}

.ct-form-box .input {
    width: 100%;
    margin-bottom: 16px;
}

.ct-form-box .file-label {
    margin-bottom: 16px;
}

.ct-form-box .but {
    width: 100%;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 8px;
}

.ct-form-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}

.ct-form-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ct-text-muted);
}

.ct-form-trust span::before {
    content: '✓';
    color: var(--ct-accent);
    font-weight: 700;
}

/* ===== FINAL CTA ===== */
.ct-cta-final {
    padding: 80px 0;
    background: var(--ct-gradient);
    position: relative;
    overflow: hidden;
}

.ct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(31, 92, 211, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.ct-cta-final__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    color: #fff;
}

.ct-cta-final h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #fff;
}

.ct-cta-final p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 36px;
}

.ct-cta-final .but {
    min-width: 280px;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1199px) {
    .ct-effect__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ct-timeline {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .ct-timeline::before {
        display: none;
    }

    .ct-timeline__step {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media screen and (max-width: 991px) {
    .ct-hero__title {
        font-size: 36px;
    }

    .ct-problems__grid,
    .ct-services__grid,
    .ct-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ct-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .ct-cases__grid {
        grid-template-columns: 1fr;
    }

    .ct-hero__stat-float {
        left: 10px;
        bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    .ct-section {
        padding: 60px 0;
    }

    .ct-hero {
        min-height: auto;
        padding: 40px 0 60px;
    }

    .ct-hero__title {
        font-size: 30px;
    }

    .ct-hero__checks {
        grid-template-columns: 1fr;
    }

    .ct-hero__actions .but {
        min-width: 100%;
    }

    .ct-section__title {
        font-size: 28px;
    }

    .ct-problems__grid,
    .ct-effect__grid,
    .ct-services__grid,
    .ct-benefits__grid {
        grid-template-columns: 1fr;
    }

    .ct-timeline__step {
        flex: 0 0 100%;
    }

    .ct-stat-item__num {
        font-size: 42px;
    }

    .ct-form-wrap {
        flex-direction: column;
    }

    .ct-form-box {
        padding: 28px 20px;
    }

    .ct-cta-final h2 {
        font-size: 28px;
    }
}



/* ===== EXTRA: FAQ / two-col / steps / note ===== */
.custom-tool-page .ct-note {
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ct-text-muted);
}

.custom-tool-page .ct-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.custom-tool-page .ct-split > * {
    min-width: 0;
    max-width: 100%;
}

.custom-tool-page .ct-split--reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.custom-tool-page .ct-split--spaced {
    margin-bottom: 36px;
}

.custom-tool-page .ct-split__media img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--ct-radius);
    box-shadow: var(--ct-shadow);
    object-fit: cover;
}

.custom-tool-page .ct-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.custom-tool-page .ct-two-col--flush {
    margin-bottom: 0;
}

.custom-tool-page .ct-services__grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.custom-tool-page .ct-services__grid,
.custom-tool-page .ct-problems__grid,
.custom-tool-page .ct-benefits__grid {
    width: 100%;
    min-width: 0;
}

.custom-tool-page .ct-service-card,
.custom-tool-page .ct-problem-card,
.custom-tool-page .ct-benefit-card,
.custom-tool-page .ct-panel {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.custom-tool-page .ct-panel {
    background: #fff;
    border: 1px solid rgba(47, 51, 56, 0.08);
    border-radius: var(--ct-radius);
    padding: 32px 28px;
    box-shadow: var(--ct-shadow);
}

.custom-tool-page .ct-panel h3 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 600;
    color: var(--ct-text);
}

.custom-tool-page .ct-panel p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ct-text-muted);
}

.custom-tool-page .ct-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-tool-page .ct-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--ct-text);
}

.custom-tool-page .ct-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    background: var(--ct-accent);
    border-radius: 2px;
}

.custom-tool-page .ct-center-actions {
    text-align: center;
    margin-top: 12px;
}

.custom-tool-page .ct-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.custom-tool-page .ct-step-card {
    background: #fff;
    border: 1px solid rgba(47, 51, 56, 0.08);
    border-radius: var(--ct-radius);
    padding: 28px 24px;
    box-shadow: var(--ct-shadow);
}

.custom-tool-page .ct-step-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--ct-gradient);
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
}

.custom-tool-page .ct-step-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--ct-text);
}

.custom-tool-page .ct-step-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ct-text-muted);
}

.custom-tool-page .ct-timeline-vert {
    display: grid;
    gap: 18px;
}

.custom-tool-page .ct-timeline-vert__item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: start;
    background: #fff;
    border: 1px solid rgba(47, 51, 56, 0.08);
    border-radius: var(--ct-radius);
    padding: 22px 24px;
}

.custom-tool-page .ct-timeline-vert__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ct-gradient);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(31, 92, 211, 0.35);
}

.custom-tool-page .ct-timeline-vert__item h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--ct-text);
}

.custom-tool-page .ct-timeline-vert__item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ct-text-muted);
}

.custom-tool-page .ct-highlight {
    margin-top: 28px;
    padding: 22px 24px;
    background: var(--ct-bg-light);
    border-left: 3px solid var(--ct-accent);
    border-radius: 0 var(--ct-radius) var(--ct-radius) 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ct-text);
    font-weight: 600;
}

.custom-tool-page .ct-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.custom-tool-page .ct-checklist li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.55;
    color: var(--ct-text);
}

.custom-tool-page .ct-checklist li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--ct-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.custom-tool-page .ct-req-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.custom-tool-page .ct-faq {
    display: grid;
    gap: 12px;
}

.custom-tool-page .ct-faq details {
    background: #fff;
    border: 1px solid rgba(47, 51, 56, 0.08);
    border-radius: var(--ct-radius);
    padding: 0;
    overflow: hidden;
}

.custom-tool-page .ct-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 56px 20px 24px;
    font-size: 17px;
    font-weight: 600;
    color: var(--ct-text);
    position: relative;
}

.custom-tool-page .ct-faq summary::-webkit-details-marker { display: none; }

.custom-tool-page .ct-faq summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ct-bg-light);
    color: var(--ct-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.custom-tool-page .ct-faq details[open] summary::after {
    content: '−';
}

.custom-tool-page .ct-faq__body {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ct-text-muted);
}

.custom-tool-page .ct-hero__hint {
    margin-top: 18px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.custom-tool-page .ct-form-box .ct-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}

.custom-tool-page .ct-form-box .ct-form-grid .ct-span-2 {
    grid-column: 1 / -1;
}

.custom-tool-page .ct-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.custom-tool-page .ct-cta-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.custom-tool-page .ct-cta-final__actions .but-mod {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}

.custom-tool-page .ct-cta-final__actions .but-mod:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

.custom-tool-page .ct-problem-card p {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ct-text-muted);
}

.custom-tool-page .ct-service-card .but {
    margin-top: auto;
}

@media screen and (max-width: 991px) {
    .custom-tool-page .ct-split,
    .custom-tool-page .ct-split--reverse,
    .custom-tool-page .ct-two-col,
    .custom-tool-page .ct-req-grid,
    .custom-tool-page .ct-steps {
        grid-template-columns: 1fr;
    }
    .custom-tool-page .ct-form-box .ct-form-grid {
        grid-template-columns: 1fr;
    }
    .custom-tool-page .ct-services__grid--2 {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .custom-tool-page {
        overflow-x: hidden;
    }

    .custom-tool-page .ct-section,
    .custom-tool-page .ct-form-section {
        padding-left: 0;
        padding-right: 0;
    }

    .custom-tool-page .ct-services__grid,
    .custom-tool-page .ct-services__grid--2,
    .custom-tool-page .ct-problems__grid,
    .custom-tool-page .ct-benefits__grid,
    .custom-tool-page .ct-two-col,
    .custom-tool-page .ct-steps,
    .custom-tool-page .ct-req-grid {
        grid-template-columns: 1fr !important;
    }

    .custom-tool-page .ct-service-card,
    .custom-tool-page .ct-problem-card,
    .custom-tool-page .ct-benefit-card,
    .custom-tool-page .ct-panel,
    .custom-tool-page .ct-step-card {
        padding: 24px 20px;
    }

    .custom-tool-page .ct-split,
    .custom-tool-page .ct-split--reverse,
    .custom-tool-page .ct-split--spaced {
        gap: 24px;
        margin-bottom: 24px;
    }

    .custom-tool-page .ct-note {
        margin-top: 20px;
        padding: 0 2px;
    }

    .custom-tool-page .ct-timeline-vert__item {
        grid-template-columns: 44px 1fr;
        padding: 18px;
    }
    .custom-tool-page .ct-timeline-vert__num {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    .custom-tool-page .ct-cta-final__actions .but {
        min-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .custom-tool-page .ct-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.custom-tool-page .ct-section__subtitle--flush { margin-bottom: 0; }
