/* ================================
   ITP CARANSEBES PAGE
================================ */

.itp-page {
    background: #fbf7ef;
    color: var(--ink);
}

.itp-page .section {
    position: relative;
    padding: 105px 6vw;
    overflow: hidden;
}

.itp-page .section-head {
    max-width: 980px;
    margin: 0 auto 52px;
    text-align: center;
}

.itp-page .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.itp-page .section-kicker::before {
    content: "";
    width: 32px;
    height: 2px;
    border-radius: 999px;
    background: var(--orange);
}

.itp-page .section-head h2,
.itp-page h2 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(36px, 4.8vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.itp-page .section-head p {
    max-width: 790px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.itp-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* ================================
   HERO
================================ */

.itp-hero {
    background:
        radial-gradient(circle at 10% 0%, rgba(249,115,22,.12), transparent 32%),
        radial-gradient(circle at 88% 20%, rgba(16,36,61,.08), transparent 36%),
        #fbf7ef;
}


/* ================================
   INTRO DARK SECTION
================================ */

.itp-intro-section {
    padding: 82px 6vw 115px;
    background:
        linear-gradient(180deg, #fbf7ef 0%, #fbf7ef 55%, #fff 100%);
}

.itp-intro-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
    gap: 58px;
    align-items: center;
    padding: clamp(34px, 5vw, 76px);
    border-radius: 48px;
    background:
        radial-gradient(circle at 0% 0%, rgba(249,115,22,.34), transparent 34%),
        radial-gradient(circle at 100% 100%, rgba(255,255,255,.1), transparent 32%),
        linear-gradient(135deg, #07111f 0%, #10243d 56%, #0d1b2a 100%);
    box-shadow: 0 42px 95px rgba(13,27,42,.32);
    overflow: hidden;
}

.itp-intro-content {
    position: relative;
    z-index: 2;
}

.itp-intro-content .section-kicker {
    color: #ffb071;
}

.itp-intro-content .section-kicker::before {
    background: #ffb071;
}

.itp-intro-content h2 {
    max-width: 700px;
    color: #fff;
}

.itp-intro-content p {
    max-width: 700px;
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.85;
}

.itp-intro-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 32px 0;
}

.itp-intro-list div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.86);
    font-size: 15px;
    line-height: 1.45;
    backdrop-filter: blur(12px);
}

.itp-intro-list i {
    color: #ffb071;
    margin-top: 2px;
}

.itp-intro-media {
    position: relative;
    min-height: 520px;
}

.itp-intro-media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 34px;
    box-shadow: 0 35px 90px rgba(0,0,0,.34);
    filter: saturate(1.04) contrast(1.03);
    background: rgba(255,255,255,.05);
}

.itp-floating-card {
    position: absolute;
    left: -28px;
    bottom: 34px;
    display: grid;
    gap: 4px;
    min-width: 240px;
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(255,255,255,.93);
    border: 1px solid rgba(255,255,255,.65);
    box-shadow: 0 24px 65px rgba(0,0,0,.25);
    backdrop-filter: blur(16px);
}

.itp-floating-card strong {
    color: var(--orange);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.04em;
}

.itp-floating-card span {
    color: var(--ink);
    font-size: 14px;
    font-weight: 850;
}


/* ================================
   DOCS SECTION
================================ */

.itp-docs-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(249,115,22,.08), transparent 30%),
        radial-gradient(circle at 90% 35%, rgba(16,36,61,.055), transparent 32%),
        #fbf7ef;
}

.itp-docs-grid {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.itp-doc-card {
    position: relative;
    min-height: 310px;
    padding: 30px;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,247,239,.82));
    border: 1px solid rgba(231,229,223,.96);
    box-shadow: 0 24px 70px rgba(17,24,39,.08);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.itp-doc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(249,115,22,.16), transparent 38%);
    opacity: 0;
    transition: opacity .25s ease;
}

.itp-doc-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249,115,22,.28);
    box-shadow: 0 36px 86px rgba(17,24,39,.13);
}

.itp-doc-card:hover::before {
    opacity: 1;
}

.itp-doc-icon {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 22px;
    background: rgba(249,115,22,.12);
    color: var(--orange);
    font-size: 25px;
    box-shadow: inset 0 0 0 1px rgba(249,115,22,.14);
}

.itp-doc-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 23px;
    line-height: 1.18;
    letter-spacing: -.035em;
}

.itp-doc-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.72;
}


/* ================================
   DARK PANEL + CHECK GRID
================================ */

.itp-page .dark-panel {
    max-width: 1320px;
    margin: 70px auto;
    padding: 92px 6vw;
    border-radius: 48px;
    background:
        radial-gradient(circle at 10% 0%, rgba(249,115,22,.28), transparent 32%),
        radial-gradient(circle at 95% 100%, rgba(255,255,255,.08), transparent 34%),
        linear-gradient(135deg, #07111f 0%, #10243d 56%, #0d1b2a 100%);
    color: #fff;
    box-shadow: 0 42px 95px rgba(13,27,42,.3);
}

.itp-page .dark-panel .section-kicker {
    color: #ffb071;
}

.itp-page .dark-panel .section-kicker::before {
    background: #ffb071;
}

.itp-page .dark-panel h2,
.itp-page .dark-panel .section-head h2 {
    color: #fff;
}

.itp-page .dark-panel p,
.itp-page .dark-panel .section-head p {
    color: rgba(255,255,255,.74);
}

.itp-page .dark-panel .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.3);
    background: rgba(255,255,255,.06);
}

.itp-check-grid {
    max-width: 1180px;
    margin: 56px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.itp-check-card {
    position: relative;
    min-height: 300px;
    padding: 30px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
    border: 1px solid rgba(255,255,255,.14);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 24px 60px rgba(0,0,0,.18);
    overflow: hidden;
    backdrop-filter: blur(18px);
    transition: .25s ease;
}

.itp-check-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(249,115,22,.26), transparent 42%);
    opacity: .45;
    pointer-events: none;
}

.itp-check-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249,115,22,.38);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.1),
        0 34px 80px rgba(0,0,0,.28);
}

.itp-check-card span {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 19px;
    background: rgba(249,115,22,.18);
    color: #ffb071;
    font-size: 16px;
    font-weight: 950;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.itp-check-card > i {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 26px;
    color: rgba(255,255,255,.22);
    font-size: 42px;
}

.itp-check-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.itp-check-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 15.5px;
    line-height: 1.75;
}


/* ================================
   PROCESS SECTION
================================ */

.itp-process-section {
    background: #fff;
}

.itp-process-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: center;
}

.itp-process-text h2 {
    margin-bottom: 18px;
}

.itp-process-text p {
    max-width: 610px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.82;
}

.itp-process-text .hero-actions {
    margin-top: 28px;
}

.itp-process-steps {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 36px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,247,239,.82));
    border: 1px solid rgba(231,229,223,.95);
    box-shadow: 0 28px 80px rgba(17,24,39,.11);
}

.itp-process-steps div {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 2px 16px;
    align-items: center;
    padding: 18px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(231,229,223,.9);
    transition: .25s ease;
}

.itp-process-steps div:hover {
    transform: translateY(-4px);
    border-color: rgba(249,115,22,.28);
    box-shadow: 0 20px 42px rgba(17,24,39,.09);
}

.itp-process-steps span {
    grid-row: span 2;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-weight: 950;
}

.itp-process-steps strong {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.2;
}

.itp-process-steps small {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.5;
}


/* ================================
   LOCAL SECTION
================================ */

.itp-local-section {
    background:
        radial-gradient(circle at 14% 4%, rgba(249,115,22,.08), transparent 30%),
        #fbf7ef;
}

.itp-local-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.itp-local-card {
    min-height: 270px;
    padding: 32px;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,247,239,.78));
    border: 1px solid rgba(231,229,223,.95);
    box-shadow: 0 24px 70px rgba(17,24,39,.075);
    transition: .25s ease;
}

.itp-local-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249,115,22,.28);
    box-shadow: 0 34px 82px rgba(17,24,39,.12);
}

.itp-local-card i {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border-radius: 22px;
    background: rgba(249,115,22,.12);
    color: var(--orange);
    font-size: 24px;
}

.itp-local-card h3 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 23px;
    line-height: 1.18;
    letter-spacing: -.035em;
}

.itp-local-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.72;
}


/* ================================
   FAQ
================================ */

.itp-faq-section {
    background:
        radial-gradient(circle at 12% 0%, rgba(249,115,22,.08), transparent 32%),
        radial-gradient(circle at 88% 40%, rgba(16,36,61,.055), transparent 32%),
        #fbf7ef;
}

.itp-faq-list {
    max-width: 1080px;
    margin: 52px auto 0;
    display: grid;
    gap: 16px;
}

.itp-faq-item {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,247,239,.78));
    border: 1px solid rgba(231,229,223,.95);
    box-shadow: 0 22px 58px rgba(17,24,39,.075);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.itp-faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(249,115,22,.15), transparent 35%);
    opacity: 0;
    transition: opacity .22s ease;
    pointer-events: none;
}

.itp-faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(249,115,22,.28);
    box-shadow: 0 30px 72px rgba(17,24,39,.11);
}

.itp-faq-item:hover::before,
.itp-faq-item[open]::before {
    opacity: 1;
}

.itp-faq-item summary {
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 82px;
    padding: 24px 78px 24px 28px;
    color: var(--ink);
    font-size: 19px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -.015em;
    list-style: none;
}

.itp-faq-item summary::-webkit-details-marker {
    display: none;
}

.itp-faq-item summary::before {
    content: "?";
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(249,115,22,.12);
    color: var(--orange);
    font-size: 20px;
    font-weight: 950;
    box-shadow: inset 0 0 0 1px rgba(249,115,22,.13);
}

.itp-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(231,229,223,.95);
    color: var(--orange);
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 10px 26px rgba(17,24,39,.07);
    transition: .22s ease;
}

.itp-faq-item[open] {
    border-color: rgba(249,115,22,.32);
    box-shadow: 0 32px 80px rgba(17,24,39,.12);
}

.itp-faq-item[open] summary::after {
    content: "−";
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: translateY(-50%) rotate(180deg);
}

.itp-faq-item[open] summary::before {
    background: var(--orange);
    color: #fff;
}

.itp-faq-item p {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0 78px 28px 86px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}


/* ================================
   CTA
================================ */

.itp-cta-section {
    text-align: center;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {
    .itp-intro-inner,
    .itp-process-inner {
        grid-template-columns: 1fr;
    }

    .itp-docs-grid,
    .itp-check-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .itp-local-grid {
        grid-template-columns: 1fr;
    }

    .itp-intro-media {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .itp-page .section,
    .itp-intro-section {
        padding: 72px 20px;
    }

    .itp-page .section-head {
        text-align: left;
        margin-bottom: 36px;
    }

    .itp-page .section-head h2,
    .itp-page h2 {
        font-size: clamp(32px, 10vw, 44px);
    }

    .itp-page .section-head p {
        margin-left: 0;
        font-size: 16px;
    }

    .itp-intro-inner {
        padding: 28px;
        border-radius: 32px;
    }

    .itp-intro-list,
    .itp-docs-grid,
    .itp-check-grid {
        grid-template-columns: 1fr;
    }

    .itp-intro-media img {
        height: 360px;
        border-radius: 26px;
    }

    .itp-floating-card {
        left: 18px;
        bottom: 18px;
    }

    .itp-doc-card,
    .itp-check-card,
    .itp-local-card {
        min-height: auto;
        padding: 24px;
        border-radius: 26px;
    }

    .itp-page .dark-panel {
        margin: 42px 14px;
        padding: 62px 22px;
        border-radius: 32px;
    }

    .itp-process-inner {
        gap: 36px;
    }

    .itp-process-steps {
        padding: 14px;
        border-radius: 26px;
    }

    .itp-process-steps div {
        grid-template-columns: 50px 1fr;
        padding: 15px;
        border-radius: 20px;
    }

    .itp-process-steps span {
        width: 50px;
        height: 50px;
        border-radius: 17px;
    }

    .itp-faq-list {
        margin-top: 34px;
    }

    .itp-faq-item {
        border-radius: 22px;
    }

    .itp-faq-item summary {
        min-height: auto;
        padding: 20px 62px 20px 20px;
        font-size: 16.5px;
        gap: 12px;
    }

    .itp-faq-item summary::before {
        width: 36px;
        height: 36px;
        border-radius: 14px;
        font-size: 17px;
    }

    .itp-faq-item summary::after {
        right: 18px;
        width: 34px;
        height: 34px;
        font-size: 22px;
    }

    .itp-faq-item p {
        padding: 0 20px 22px 68px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .itp-page .section,
    .itp-intro-section {
        padding: 60px 16px;
    }

    .itp-intro-inner {
        padding: 22px;
        border-radius: 28px;
    }

    .itp-intro-media img {
        height: 300px;
    }

    .itp-floating-card {
        min-width: 200px;
        padding: 18px 20px;
    }

    .itp-faq-item summary {
        align-items: flex-start;
    }

    .itp-faq-item p {
        padding-left: 20px;
    }
}