/* =========================
   STATIC PAGES - ITC
========================= */

.itc-page-hero {
    background:
        radial-gradient(circle at 18% 16%, rgba(214,168,79,.22), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(37,99,235,.17), transparent 24%),
        linear-gradient(135deg, #020617, #0f172a 48%, #111827);
    color: white;
    padding: 80px 0;
    overflow: hidden;
}

.itc-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr .92fr;
    gap: 42px;
    align-items: center;
}

.itc-page-kicker,
.itc-page-heading span {
    display: inline-block;
    color: #d6a84f;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 900;
}

.itc-page-hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -.05em;
    margin: 14px 0 20px;
}

.itc-page-hero p {
    color: #cbd5e1;
    line-height: 1.82;
    font-size: 18px;
    max-width: 720px;
}

.itc-page-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.itc-page-btn-gold,
.itc-page-btn-dark {
    display: inline-flex;
    min-height: 48px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    font-weight: 900;
    text-decoration: none;
}

.itc-page-btn-gold {
    background: linear-gradient(135deg, #d6a84f, #fbbf24);
    color: #111827;
}

.itc-page-btn-dark {
    background: rgba(255,255,255,.07);
    color: white;
    border: 1px solid rgba(255,255,255,.18);
}

.itc-page-photo {
    min-height: 440px;
    border-radius: 36px;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 34px 100px rgba(0,0,0,.34);
    background-size: cover;
    background-position: center;
}

.about-photo {
    background-image:
        linear-gradient(180deg, rgba(2,6,23,.05), rgba(2,6,23,.58)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1400&q=85');
}

.contact-photo {
    background-image:
        linear-gradient(180deg, rgba(2,6,23,.05), rgba(2,6,23,.58)),
        url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1400&q=85');
}

.faq-photo {
    background-image:
        linear-gradient(180deg, rgba(2,6,23,.05), rgba(2,6,23,.58)),
        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1400&q=85');
}

.itc-page-white {
    background: white;
}

.itc-page-soft {
    background: #f8fafc;
}

.itc-about-grid {
    display: grid;
    grid-template-columns: 1.1fr .95fr .95fr;
    gap: 18px;
}

.itc-about-card,
.itc-contact-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 18px 55px rgba(15,23,42,.06);
}

.itc-about-card.dark {
    background: #111827;
    color: white;
}

.itc-about-card span,
.itc-contact-card span {
    color: #a16207;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
}

.itc-about-card.dark span {
    color: #fbbf24;
}

.itc-about-card h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    margin: 12px 0;
}

.itc-about-card h3,
.itc-contact-card h3 {
    font-size: 24px;
    line-height: 1.18;
    margin: 12px 0;
}

.itc-about-card p,
.itc-contact-card p {
    color: #64748b;
    line-height: 1.75;
}

.itc-about-card.dark p {
    color: #cbd5e1;
}

.itc-page-heading.center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 30px;
}

.itc-page-heading h2 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.itc-page-values,
.itc-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.itc-contact-grid {
    grid-template-columns: repeat(3, 1fr);
}

.itc-page-values div {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 18px 55px rgba(15,23,42,.06);
}

.itc-page-values strong {
    display: block;
    color: #111827;
    font-size: 20px;
}

.itc-page-values span {
    display: block;
    color: #64748b;
    line-height: 1.65;
    margin-top: 8px;
}

.itc-contact-form-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 34px;
    align-items: start;
}

.itc-contact-form-grid h2 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.05;
    margin: 12px 0;
}

.itc-contact-form-grid p {
    color: #64748b;
    line-height: 1.8;
}

.itc-contact-form {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 18px 55px rgba(15,23,42,.06);
    display: grid;
    gap: 12px;
}

.itc-contact-form label {
    font-weight: 900;
    color: #111827;
}

.itc-contact-form input,
.itc-contact-form select,
.itc-contact-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 14px;
    font-size: 15px;
    font-family: inherit;
}

.itc-contact-form button {
    border: 0;
    background: linear-gradient(135deg, #d6a84f, #fbbf24);
    color: #111827;
    border-radius: 999px;
    min-height: 48px;
    font-weight: 900;
    cursor: pointer;
}

.itc-faq-wrap {
    max-width: 920px;
}

.itc-faq-wrap details {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 20px 22px;
    margin-bottom: 14px;
    box-shadow: 0 16px 45px rgba(15,23,42,.05);
}

.itc-faq-wrap summary {
    font-size: 18px;
    font-weight: 900;
    color: #111827;
    cursor: pointer;
}

.itc-faq-wrap p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0;
}

.itc-faq-cta {
    background:
        radial-gradient(circle at top center, rgba(214,168,79,.22), transparent 32%),
        linear-gradient(135deg, #0f172a, #020617);
    color: white;
    text-align: center;
    padding: 70px 0;
}

.itc-faq-cta h2 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.05;
}

.itc-faq-cta p {
    color: #cbd5e1;
}

.itc-faq-cta a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 22px;
    background: linear-gradient(135deg, #d6a84f, #fbbf24);
    color: #111827;
    font-weight: 900;
    text-decoration: none;
    margin-top: 12px;
}

.itc-contact-link {
    display: inline-flex !important;
    color: #fbbf24 !important;
    font-weight: 900 !important;
    margin-top: 8px !important;
}

.itc-floating-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    color: white;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 50px rgba(34,197,94,.38);
}

@media (max-width: 1100px) {
    .itc-page-hero-grid,
    .itc-contact-form-grid {
        grid-template-columns: 1fr;
    }

    .itc-about-grid,
    .itc-page-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .itc-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .itc-about-grid,
    .itc-page-values {
        grid-template-columns: 1fr;
    }

    .itc-page-photo {
        min-height: 330px;
    }

    .itc-floating-wa {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }
}
