:root {
    --primary: oklch(0.55 0.22 275);
    --primary-foreground: oklch(0.99 0 0);
    --primary-glow: oklch(0.78 0.14 220);
    --background: oklch(0.985 0.005 240);
    --foreground: oklch(0.18 0.04 265);
    --secondary: oklch(0.96 0.02 260);
    --secondary-foreground: oklch(0.22 0.05 270);
    --accent: oklch(0.72 0.16 215);
    --muted: oklch(0.96 0.01 250);
    --muted-foreground: oklch(0.5 0.03 260);
    --border: oklch(0.92 0.015 255);
    --card-bg: oklch(1 0 0);
    --gradient-brand: linear-gradient(135deg, oklch(0.55 0.22 275), oklch(0.78 0.14 220));
    --gradient-text: linear-gradient(135deg, oklch(0.55 0.22 275), oklch(0.78 0.14 220));
    --gradient-radial: radial-gradient(circle at 20% 0%, oklch(0.78 0.14 220 / 0.18), transparent 50%),
        radial-gradient(circle at 80% 20%, oklch(0.55 0.22 275 / 0.18), transparent 55%);
    --gradient-soft: linear-gradient(180deg, oklch(0.985 0.005 240), oklch(0.96 0.025 250));
    --shadow-soft: 0 10px 30px -12px oklch(0.55 0.22 275 / 0.25);
    --shadow-card: 0 4px 20px -8px oklch(0.2 0.05 260 / 0.1);
    --shadow-glow: 0 20px 60px -20px oklch(0.72 0.16 215 / 0.4);
    --font-sans: "Inter", sans-serif;
    --font-display: "Plus Jakarta Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hidden {
    display: none !important;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid var(--border);
    height: 64px;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--gradient-brand);
    color: var(--primary-foreground);
    font-weight: 800;
    font-size: 16px;
    box-shadow: var(--shadow-soft);
}

.logo-text {
    font-family: var(--font-display);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 30px;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--foreground);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
    }
}

.menu-btn {
    display: flex;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    border-top: 1px solid var(--border);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 20px;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu.visible {
    display: flex;
}

.mobile-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
    padding: 12px;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.mobile-nav-link:hover {
    background-color: var(--secondary);
}

.mobile-actions {
    display: flex;
    gap: 10px;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid var(--border);
}

.btn {
    padding: 12px 20px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-large {
    padding: 16px 28px;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-brand);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-text {
    color: var(--foreground);
}

.btn-text:hover {
    color: var(--primary);
}

.btn-outline {
    border: 2px solid var(--border);
    background-color: var(--card-bg);
    color: var(--foreground);
    padding: 12px 20px;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--primary-foreground);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.arrow {
    display: inline-block;
    transition: transform 0.3s;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

.hero {
    padding-top: 112px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-radial);
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 144px;
        padding-bottom: 60px;
    }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 9999px;
    background-color: var(--secondary);
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    width: fit-content;
}

.badge-icon {
    font-size: 14px;
}

.hero-title {
    margin-top: 20px;
    font-size: 36px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }
}

.hero-description {
    margin-top: 20px;
    font-size: 18px;
    color: var(--muted-foreground);
    max-width: 500px;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-stats {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    color: var(--muted-foreground);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--foreground);
}

.stat-label {
    margin-top: 4px;
    font-size: 13px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border);
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -24px;
    background: var(--gradient-radial);
    filter: blur(48px);
    border-radius: 48px;
    z-index: 0;
}

.hero-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid oklch(0.92 0.015 255 / 0.5);
    background-color: var(--card-bg);
    box-shadow: var(--shadow-glow);
    box-shadow: var(--shadow-glow);
}

.hero-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-card);
    z-index: 10;
}

.hero-card-icon-wrapper {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-soft);
}

.hero-card-icon {
    width: 20px;
    height: 20px;
}

.hero-card-title {
    font-weight: 600;
    font-size: 14px;
}

.hero-card-subtitle {
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 2px;
}

.section {
    padding: 60px 20px;
}

@media (min-width: 640px) {
    .section {
        padding: 60px 20px;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 60px 20px;
    }
}

.section-alt {
    background: var(--gradient-soft);
}

.section-header {
    max-width: 700px;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 48px;
    }
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.section-title {
    margin-top: 8px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 48px;
    }
}

.section-description {
    margin-top: 16px;
    font-size: 18px;
    color: var(--muted-foreground);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    position: relative;
    padding: 24px;
    border-radius: 16px;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.3s;
}

.step-card:hover {
    box-shadow: var(--shadow-soft);
}

.step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: var(--primary-foreground);
    font-size: 12px;
    font-weight: 700;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-soft);
}

.step-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    margin-bottom: 16px;
}

.step-icon {
    width: 22px;
    height: 22px;
}

.step-title {
    font-weight: 700;
    font-size: 18px;
    font-family: var(--font-display);
}

.step-description {
    margin-top: 8px;
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.programs-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 1024px) {
    .programs-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.link-with-arrow {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.link-with-arrow:hover {
    gap: 12px;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.program-card {
    position: relative;
    padding: 24px;
    border-radius: 16px;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
}

.program-card:hover {
    border-color: rgba(oklch(0.55 0.22 275) / 0.4);
    box-shadow: var(--shadow-soft);
}

.program-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-brand);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 16px;
    box-shadow: var(--shadow-soft);
}

.program-icon {
    width: 22px;
    height: 22px;
}

.program-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
}

.program-description {
    margin-top: 8px;
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.program-card .link-with-arrow {
    margin-top: 20px;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-us-container {
        grid-template-columns: 1fr 1fr;
    }
}

.why-us-content {
    max-width: 600px;
}

.benefits-grid {
    list-style: none;
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-us-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    border-radius: 16px;
    padding: 24px;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.stat-card-primary {
    background: var(--gradient-brand);
    color: var(--primary-foreground);
    border: none;
    box-shadow: var(--shadow-glow);
}

.stat-card:nth-child(2) {
    margin-top: 32px;
}

.stat-card:nth-child(3) {
    margin-top: 0;
}

.stat-card:nth-child(4) {
    margin-top: 32px;
}

.stat-value-large {
    font-size: 36px;
    font-weight: 800;
    color: var(--foreground);
}

.stat-card-primary .stat-value-large {
    color: var(--primary-foreground);
}

.stat-value-large.gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    margin-top: 8px;
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.stat-card-primary .stat-text {
    color: rgba(255, 255, 255, 0.9);
}

.stories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .stories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.story-card {
    padding: 24px;
    border-radius: 16px;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    box-shadow: var(--shadow-soft);
}

.quote-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.story-quote {
    margin-top: 16px;
    font-size: 16px;
    color: var(--foreground);
    line-height: 1.6;
}

.story-rating {
    display: flex;
    gap: 4px;
    margin-top: 20px;
    color: var(--accent);
}

.star-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.story-attribution {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.story-name {
    font-weight: 600;
    font-size: 14px;
}

.story-role {
    margin-top: 2px;
    font-size: 12px;
    color: var(--muted-foreground);
}

.cta-section {
    background: none;
}

.cta-content {
    border-radius: 24px;
    background: var(--gradient-brand);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .cta-content {
        padding: 64px;
    }
}

.cta-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, white, transparent 40%);
    opacity: 0.2;
    pointer-events: none;
}

.cta-title {
    position: relative;
    z-index: 1;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-foreground);
    line-height: 1.2;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 48px;
    }
}

.cta-description {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    position: relative;
    z-index: 1;
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.footer {
    border-top: 1px solid var(--border);
    background-color: var(--background);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 2;
    }
}

.footer-description {
    font-size: 14px;
    color: var(--muted-foreground);
    max-width: 400px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-list a {
    font-size: 14px;
    color: var(--muted-foreground);
    transition: color 0.3s;
}

.footer-list a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .footer-bottom-container {
        flex-direction: row;
        padding: 20px;
    }
}

.back-to-top-link {
    color: var(--muted-foreground);
    transition: color 0.3s;
}

.back-to-top-link:hover {
    color: var(--primary);
}

.partner-slider {
    padding: 10px 0;
}

.partner-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 10px;
    height: 150px;
}

.partner-slide img {
    max-height: 140px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .partner-slide {
        height: 100px;
        padding: 8px;
    }

    .partner-slide img {
        max-height: 80px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .partner-slide {
        height: 80px;
        padding: 6px;
    }

    .partner-slide img {
        max-height: 60px;
        max-width: 100px;
    }
}

.partner-slide:hover img {
    transform: scale(1.05);
}

.partner-slider .slick-prev,
.partner-slider .slick-next {
    width: 20px;
    height: 20px;
}

.partner-slider .slick-prev:before,
.partner-slider .slick-next:before {
    content: "";
    background: #716f6f;
    width: 15px;
    height: 4px;
    display: block;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 2px;
    position: absolute;
}

.partner-slider .slick-next:after,
.partner-slider .slick-prev:after {
    content: "";
    background: #716f6f;
    width: 15px;
    height: 4px;
    display: block;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-radius: 2px;
    position: absolute;
}

.partner-slider .slick-next:before {
    top: 1px;
}

.partner-slider .slick-prev:after {
    top: 1px;
}

.partner-slider .slick-prev {
    left: -20px;
}

.partner-slider .slick-next {
    right: -10px;
}

.partner-slider .slick-track {
    display: flex !important;
    align-items: center;
}

@media (max-width: 768px) {

    .partner-slider .slick-prev,
    .partner-slider .slick-next {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .hero-stats {
        flex-wrap: nowrap;
        gap: 16px;
        justify-content: flex-start;
    }

    .stat-divider {
        width: 1px;
        height: 32px;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }
}

/* ====================================================================
   JRS Info Section — Two-Card Layout
   ==================================================================== */
.jrs-info-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .jrs-info-row {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

/* Base card */
.jrs-card {
    position: relative;
    border-radius: 20px;
    padding: 36px 32px;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.35s, transform 0.35s;
}

.jrs-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
}

/* Top accent bar on the left card */
.jrs-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
}

/* Gradient variant (right card) */
.jrs-card-gradient {
    background: var(--gradient-brand);
    border: none;
    color: var(--primary-foreground);
    box-shadow: var(--shadow-glow);
}

.jrs-card-gradient:hover {
    box-shadow: 0 24px 72px -24px oklch(0.72 0.16 215 / 0.5);
}

/* Shine overlay on gradient card */
.jrs-card-shine {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 10%, rgba(255, 255, 255, 0.25), transparent 50%);
    pointer-events: none;
}

/* Card header with icon + title */
.jrs-card-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.jrs-card-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient-brand);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.jrs-card-icon-wrap-light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    box-shadow: none;
}

.jrs-card-icon {
    width: 22px;
    height: 22px;
}

.jrs-card-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .jrs-card-title {
        font-size: 24px;
    }
}

/* Items list inside left card */
.jrs-card-items {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.jrs-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 14px;
    background: var(--secondary);
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

.jrs-item:hover {
    border-color: oklch(0.55 0.22 275 / 0.3);
}

.jrs-item-icon-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.jrs-item-icon {
    width: 20px;
    height: 20px;
}

.jrs-item-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
}

.jrs-item-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted-foreground);
}

/* Text inside gradient card */
.jrs-card-text {
    position: relative;
    z-index: 1;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

/* Tags */
.jrs-card-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.jrs-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-foreground);
    transition: background-color 0.3s;
}

.jrs-tag:hover {
    background: rgba(255, 255, 255, 0.25);
}

.jrs-tag-icon {
    width: 14px;
    height: 14px;
}

/* CTA button inside gradient card */
.jrs-card-cta {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    align-self: flex-start;
}
