/* Page-specific styles */

/* Container */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomOut 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomOut 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsl(var(--medical-dark) / 0.9), hsl(var(--medical-dark) / 0.7), hsl(var(--medical-dark) / 0.3));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 8rem 1.5rem;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsl(var(--primary) / 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid hsl(var(--primary) / 0.3);
    margin-bottom: 2rem;
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--primary-foreground));
}

.hero-badge span {
    color: hsl(var(--primary-foreground));
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: hsl(var(--primary-foreground));
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--primary-foreground) / 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    max-width: 36rem;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.hero-contact span {
    color: hsl(var(--primary-foreground) / 0.5);
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

@media (max-width: 768px) {
    .hero-video {
        animation: none;
        transform: scale(1.16);
    }
}

@media (max-width: 420px) {
    .hero-video {
        transform: scale(1.24);
    }
}

.hero-wave svg {
    width: 100%;
    display: block;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    color: hsl(var(--primary-foreground) / 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary-foreground) / 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section */
.section {
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .section {
        padding: 7rem 0;
    }
}

.section-bg {
    background: hsl(var(--secondary) / 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    color: hsl(var(--primary));
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-top: 0.75rem;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-desc {
    color: hsl(var(--muted-foreground));
    font-family: 'Inter', sans-serif;
    margin-top: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
}

/* Grid */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Card */
.card {
    background: hsl(var(--card));
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px -4px hsl(200 25% 10% / 0.08);
    transition: all 0.5s ease;
}

.card:hover {
    box-shadow: 0 20px 50px -12px hsl(174 62% 40% / 0.25);
    transform: translateY(-0.5rem);
}

.service-card-click {
    cursor: pointer;
}

.card-image {
    position: relative;
    height: 13rem;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--medical-dark) / 0.5), transparent);
}

.card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    background: hsl(var(--card) / 0.9);
    backdrop-filter: blur(4px);
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.card-content {
    padding: 1.25rem;
}

.card-title {
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.375rem;
    transition: color 0.3s ease;
}

.card:hover .card-title {
    color: hsl(var(--primary));
}

.card-desc {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: hsl(var(--primary));
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(0.5rem);
    transition: all 0.3s ease;
}

.card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
}

.card-link svg {
    width: 0.875rem;
    height: 0.875rem;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-label {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Feature Box */
.feature-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: hsl(var(--secondary));
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
    flex-shrink: 0;
}

.feature-text {
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    font-weight: 500;
}

/* Image Container */
.image-container {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: -1rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    opacity: 0.1;
    filter: blur(2rem);
    transition: opacity 0.3s ease;
}

.image-container:hover .image-glow {
    opacity: 0.2;
}

.image-rounded {
    position: relative;
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 25px 60px -15px hsl(200 25% 10% / 0.15);
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.375rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: hsl(var(--secondary));
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.form-textarea {
    resize: none;
    min-height: 8rem;
}

.form-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    color: hsl(var(--primary-foreground));
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: scale(1.02);
}

/* Success Message */
.success-message {
    background: hsl(var(--card));
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 4px 20px -4px hsl(200 25% 10% / 0.08);
    text-align: center;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: hsl(var(--primary-foreground));
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.success-desc {
    color: hsl(var(--muted-foreground));
    font-family: 'Inter', sans-serif;
}

/* Filter Bar */
.filter-bar {
    position: sticky;
    top: 4.5rem;
    z-index: 40;
    background: hsl(var(--background) / 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid hsl(var(--border) / 0.5);
    padding: 1rem 0;
}

.filter-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .filter-content {
        flex-direction: row;
        align-items: center;
    }
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    width: 100%;
}

@media (min-width: 640px) {
    .filter-buttons {
        width: auto;
    }
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.filter-btn.active {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    color: hsl(var(--primary-foreground));
}

.filter-btn:not(.active) {
    background: hsl(var(--secondary));
    color: hsl(var(--muted-foreground));
}

.filter-btn:not(.active):hover {
    color: hsl(var(--foreground));
}

.search-box {
    position: relative;
    width: 100%;
}

@media (min-width: 640px) {
    .search-box {
        width: 16rem;
    }
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: hsl(var(--muted-foreground));
}

.search-input {
    width: 100%;
    padding: 0.625rem 1rem 0.625rem 2.5rem;
    border-radius: 0.75rem;
    background: hsl(var(--secondary));
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px hsl(var(--primary) / 0.3);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: hsl(var(--medical-dark) / 0.75);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: hsl(var(--card));
    border-radius: 1.5rem;
    max-width: 42rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px -15px hsl(200 25% 10% / 0.25);
    animation: scaleIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-image {
    position: relative;
    height: 18rem;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--card)), transparent);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: hsl(var(--card) / 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: scale(1.1);
}

.modal-close svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--foreground));
}

.modal-body {
    padding: 1.5rem 2rem 2rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.modal-desc {
    color: hsl(var(--muted-foreground));
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-benefits {
    background: hsl(var(--secondary) / 0.5);
    border-radius: 1rem;
    padding: 1.25rem;
}

.modal-benefits-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.modal-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
}

.modal-benefit-item svg {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--primary));
    flex-shrink: 0;
}

/* Tip Card */
.tip-card {
    background: hsl(var(--card));
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px -4px hsl(200 25% 10% / 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.tip-card:hover {
    box-shadow: 0 10px 40px -10px hsl(200 25% 10% / 0.12);
    transform: translateY(-0.25rem);
}

.tip-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    margin-left: auto;
    margin-right: auto;
}

.tip-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: hsl(var(--primary-foreground));
}

.tip-title {
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.tip-desc {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

/* Info Card */
.info-card {
    background: hsl(var(--card));
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px -4px hsl(200 25% 10% / 0.08);
}

.info-card-title {
    font-weight: 700;
    color: hsl(var(--foreground));
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.info-item-content p {
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

.info-item-content .info-label {
    font-weight: 600;
    color: hsl(var(--foreground));
    font-size: 0.875rem;
}

.info-item-content .info-text {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

.info-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(var(--border)), transparent);
    margin: 1.25rem 0;
}

.info-buttons {
    display: flex;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.info-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-btn-primary {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    color: hsl(var(--primary-foreground));
}

.info-btn-primary:hover {
    transform: scale(1.05);
}

.info-btn-secondary {
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
}

.info-btn-secondary:hover {
    background: hsl(var(--secondary));
}

/* Map Container */
.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px -4px hsl(200 25% 10% / 0.08);
    height: 16rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tech Feature */
.tech-feature {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 20rem;
    box-shadow: 0 10px 40px -10px hsl(200 25% 10% / 0.12);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tech-feature:hover {
    transform: scale(1.02);
}

.tech-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.tech-feature:hover img {
    transform: scale(1.05);
}

.tech-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--medical-dark) / 0.8), hsl(var(--medical-dark) / 0.2), transparent);
}

.tech-feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
}

.tech-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary-foreground));
    margin-bottom: 0.5rem;
}

.tech-feature-desc {
    color: hsl(var(--primary-foreground) / 0.7);
    font-family: 'Inter', sans-serif;
}

/* Value Card */
.value-card {
    background: hsl(var(--card));
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px -4px hsl(200 25% 10% / 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 10px 40px -10px hsl(200 25% 10% / 0.12);
    transform: translateY(-0.25rem);
}

.value-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.value-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: hsl(var(--primary-foreground));
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
}

.value-desc {
    color: hsl(var(--muted-foreground));
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Program Card */
.program-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .program-card {
        grid-template-columns: repeat(2, 1fr);
    }
}

.program-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.program-image:hover img {
    transform: scale(1.05);
}

.program-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--medical-dark) / 0.6), transparent);
}

.program-icon-container {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
}

.program-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px -4px hsl(200 25% 10% / 0.08);
}

.program-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: hsl(var(--primary-foreground));
}

.program-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.program-content p {
    color: hsl(var(--muted-foreground));
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    border-radius: 0.75rem;
    background: hsl(var(--secondary));
}

.benefit-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    flex-shrink: 0;
}

.benefit-text {
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    font-weight: 500;
}

/* Utility */
.text-center {
    text-align: center;
}

.mt-10 {
    margin-top: 2.5rem;
}

.hidden {
    display: none;
}
