@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Sans:wght@300;400;500;600&display=swap');

.jct-ia-home {
    --jct-bg: #f6f4f1;
    --jct-ink: #0e1316;
    --jct-muted: #54636f;
    --jct-accent: #ff6b4a;
    --jct-accent-2: #1f8a70;
    --jct-surface: #ffffff;
    --jct-surface-alt: #f1f3f5;
    --jct-shadow: 0 20px 60px rgba(14, 19, 22, 0.12);
    --jct-shadow-soft: 0 12px 30px rgba(14, 19, 22, 0.08);
    color: var(--jct-ink);
    background: var(--jct-bg);
    font-family: "IBM Plex Sans", "Segoe UI", "Helvetica Neue", sans-serif;
}

.jct-ia-home h1,
.jct-ia-home h2,
.jct-ia-home h3,
.jct-ia-home h4 {
    font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
    letter-spacing: -0.02em;
}

.jct-container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.jct-hero {
    position: relative;
    padding: 110px 0 90px;
    overflow: hidden;
    background: radial-gradient(circle at top left, #ffe0d6 0%, #f6f4f1 55%, #dff1ea 100%);
}

.jct-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14, 19, 22, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 19, 22, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.25;
    pointer-events: none;
}

.jct-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 50px;
    align-items: center;
}

.jct-hero__title {
    font-size: clamp(2.6rem, 4vw, 4rem);
    margin: 0 0 18px;
}

.jct-hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--jct-muted);
    margin-bottom: 26px;
}

.jct-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.jct-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--jct-surface);
    box-shadow: var(--jct-shadow-soft);
    font-size: 0.95rem;
}

.jct-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.jct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.jct-btn--primary {
    background: var(--jct-ink);
    color: #ffffff;
    box-shadow: var(--jct-shadow);
}

.jct-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(14, 19, 22, 0.2);
}

.jct-btn--ghost {
    border: 1px solid var(--jct-ink);
    color: var(--jct-ink);
    background: transparent;
}

.jct-btn--ghost:hover {
    background: var(--jct-ink);
    color: #ffffff;
}

.jct-hero__panel {
    background: var(--jct-surface);
    border-radius: 22px;
    padding: 30px;
    box-shadow: var(--jct-shadow);
    position: relative;
}

.jct-hero__panel::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    border: 1px dashed rgba(14, 19, 22, 0.12);
    pointer-events: none;
}

.jct-hero__panel h4 {
    margin-top: 0;
}

.jct-hero__panel ul {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--jct-muted);
}

.jct-section {
    padding: 70px 0;
}

.jct-section__title {
    font-size: clamp(1.9rem, 2.6vw, 2.6rem);
    margin-bottom: 18px;
}

.jct-section__lead {
    color: var(--jct-muted);
    max-width: 720px;
    line-height: 1.7;
}

.jct-grid {
    display: grid;
    gap: 26px;
}

.jct-grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.jct-grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.jct-card {
    background: var(--jct-surface);
    padding: 28px;
    border-radius: 18px;
    box-shadow: var(--jct-shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.jct-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -40px;
    top: -40px;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.25), transparent 70%);
}

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

.jct-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(31, 138, 112, 0.12);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.jct-card__link {
    color: var(--jct-ink);
    font-weight: 600;
    text-decoration: none;
}

.jct-card__link:hover {
    color: var(--jct-accent);
}

.jct-stats {
    background: linear-gradient(135deg, #0e1316 0%, #1b2c30 100%);
    color: #ffffff;
    border-radius: 24px;
    padding: 50px;
}

.jct-stat {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 18px;
}

.jct-stat h4 {
    font-size: 2.4rem;
    margin: 0 0 8px;
}

.jct-process {
    background: var(--jct-surface-alt);
    border-radius: 24px;
    padding: 40px;
}

.jct-process__step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
}

.jct-process__index {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--jct-ink);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 600;
}

.jct-products .woocommerce ul.products {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.jct-products .woocommerce ul.products li.product {
    background: var(--jct-surface);
    padding: 20px;
    border-radius: 18px;
    box-shadow: var(--jct-shadow-soft);
}

.jct-products .woocommerce ul.products li.product img {
    border-radius: 14px;
}

.jct-products .woocommerce ul.products li.product .button {
    background: var(--jct-accent-2);
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 18px;
}

.jct-cta {
    margin: 0 auto;
    padding: 60px 50px;
    border-radius: 26px;
    background: linear-gradient(120deg, #ff6b4a, #ffb347);
    color: #ffffff;
    text-align: center;
    box-shadow: var(--jct-shadow);
}

.jct-cta p {
    opacity: 0.9;
}

.jct-testimonials {
    background: var(--jct-surface-alt);
    border-radius: 24px;
    padding: 40px;
}

.jct-testimonial {
    background: var(--jct-surface);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--jct-shadow-soft);
}

.jct-reveal {
    animation: jct-fade-up 0.8s ease forwards;
    opacity: 0;
}

.jct-reveal:nth-child(1) { animation-delay: 0.1s; }
.jct-reveal:nth-child(2) { animation-delay: 0.2s; }
.jct-reveal:nth-child(3) { animation-delay: 0.3s; }
.jct-reveal:nth-child(4) { animation-delay: 0.4s; }

@keyframes jct-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .jct-hero__inner {
        grid-template-columns: 1fr;
    }

    .jct-hero {
        padding: 80px 0 70px;
    }

    .jct-stats {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .jct-hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .jct-cta {
        padding: 40px 28px;
    }
}
