/* ===== Sections CSS - Frontend Sections Styling ===== */

/* ===== Gradients ===== */
.gradient-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
}

/* Text putih untuk gradient-primary di semua mode */
.gradient-primary h1,
.gradient-primary h2,
.gradient-primary h3,
.gradient-primary h4,
.gradient-primary h5,
.gradient-primary h6,
.gradient-primary p,
.gradient-primary span,
.gradient-primary div {
    color: white !important;
}

.gradient-primary * {
    color: white !important;
}

/* Override untuk link/button agar tetap punya warna sendiri */
.gradient-primary a {
    color: inherit !important;
}

.dark .gradient-primary {
    background: linear-gradient(135deg, #0066FF 0%, #00B8FF 100%);
}

/* ===== Animations ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 102, 255, 0.6);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 80px 140px; }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Hero Section ===== */
body {
    color: var(--text-primary);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    color: var(--text-primary);
}

.dark .hero-section {
    background: #0F172A;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, rgba(0, 102, 255, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 102, 255, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0, 102, 255, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0, 102, 255, 0.03) 75%);
    background-size: 80px 80px;
    background-position: 0 0, 0 40px, 40px -40px, -40px 0px;
    opacity: 0.5;
    animation: patternMove 20s linear infinite;
}

.hero-section h1 {
    color: var(--text-primary);
}

.dark .hero-bg-pattern {
    background-image:
        linear-gradient(45deg, rgba(0, 184, 255, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 184, 255, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0, 184, 255, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0, 184, 255, 0.05) 75%);
}

/* ===== Stats ===== */
.stat-card {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.22) 0%, rgba(0, 184, 255, 0.2) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 22px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(0, 102, 255, 0.2);
    color: #FFFFFF;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(0, 102, 255, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    text-shadow: 0 8px 24px rgba(0, 102, 255, 0.35);
}

.dark .stat-number {
    color: #FFFFFF;
}

.stat-card .text-gray-600 {
    color: rgba(255, 255, 255, 0.88);
}

.dark .stat-card {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.32) 0%, rgba(0, 184, 255, 0.28) 100%);
    border-color: rgba(0, 184, 255, 0.4);
    box-shadow: 0 22px 50px rgba(0, 184, 255, 0.35);
}

.dark .stat-card .text-gray-600 {
    color: rgba(255, 255, 255, 0.95);
}

/* ===== Badge ===== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 184, 255, 0.1) 100%);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

.dark .badge {
    background: linear-gradient(135deg, rgba(0, 184, 255, 0.15) 0%, rgba(0, 102, 255, 0.15) 100%);
    color: var(--accent-blue);
    border-color: var(--accent-blue);
    box-shadow: 0 4px 15px rgba(0, 184, 255, 0.25);
}

.badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.dark .badge:hover {
    box-shadow: 0 6px 20px rgba(0, 184, 255, 0.4);
}

/* ===== Section Utilities ===== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-surface {
    background: var(--bg-primary);
}

.section-muted {
    background: var(--bg-secondary);
}

.dark .section-muted {
    background: #0f172a;
}

.surface-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.dark .surface-card {
    background: rgba(15, 23, 42, 0.94);
    border-color: rgba(56, 189, 248, 0.26);
    box-shadow: 0 25px 60px rgba(2, 6, 23, 0.6);
}

.content-panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.dark .content-panel {
    background: rgba(10, 15, 28, 0.92);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 25px 70px rgba(2, 6, 23, 0.45);
    backdrop-filter: blur(8px);
}

.section-gradient {
    background-color: var(--bg-secondary);
    background-image: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 184, 255, 0.06) 40%, rgba(255, 255, 255, 0) 100%);
}

.dark .section-gradient {
    background-color: #0f172a;
    background-image: linear-gradient(135deg, rgba(37, 99, 235, 0.18) 0%, rgba(56, 189, 248, 0.16) 40%, rgba(15, 23, 42, 0.92) 100%);
}

.section-overlay {
    position: relative;
    overflow: hidden;
}

.section-overlay::before {
    content: '';
    position: absolute;
    inset: -40%;
    opacity: 0.12;
    background: radial-gradient(circle at top left, rgba(0, 184, 255, 0.25), transparent 55%),
        radial-gradient(circle at bottom right, rgba(0, 102, 255, 0.25), transparent 55%);
    pointer-events: none;
}

.dark .section-overlay::before {
    opacity: 0.18;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.35), transparent 55%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.35), transparent 55%);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 48rem;
    margin: 0 auto;
}

.section p:not([class*="text-"]) {
    color: var(--text-secondary);
}

.dark .section p:not([class*="text-"]) {
    color: rgba(255, 255, 255, 0.92);
}

/* ===== Responsive Styles ===== */

/* Tablet & Medium Screens (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-section {
        padding: 60px 0 80px;
        margin-top: 80px;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section p {
        font-size: 1.15rem;
    }

    .section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2.25rem;
    }
}

/* Tablet & Small Screens (max-width: 768px) */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 60px;
        margin-top: 70px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 2.25rem;
        line-height: 1.25;
    }

    .hero-section p {
        font-size: 1.05rem;
    }

    /* Hero buttons tablet */
    .hero-section .flex.flex-wrap.gap-4 {
        gap: 0.875rem;
    }

    .hero-section .btn-primary,
    .hero-section .btn-outline {
        padding: 13px 28px;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Mobile (max-width: 640px) */
@media (max-width: 640px) {
    .section-title {
        font-size: 1.875rem;
        line-height: 1.3;
    }

    .hero-section {
        padding: 30px 0 50px;
        margin-top: 64px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 1.875rem !important;
        line-height: 1.2 !important;
    }

    .hero-section p {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }

    /* Hero buttons responsive */
    .hero-section .flex.flex-wrap.gap-4 {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-section .btn-primary,
    .hero-section .btn-outline {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
        text-align: center;
        justify-content: center;
    }

    .stat-number {
        font-size: 2rem;
        text-shadow: 0 5px 18px rgba(0, 102, 255, 0.28);
    }

    .section {
        padding: 60px 0;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* Extra Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .section {
        padding: 50px 0;
    }

    .hero-section {
        padding: 20px 0 40px;
        margin-top: 60px;
        min-height: auto;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }

    .hero-section h1 {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
    }

    .hero-section p {
        font-size: 0.875rem !important;
        line-height: 1.6;
    }

    /* Hero buttons extra small */
    .hero-section .btn-primary,
    .hero-section .btn-outline {
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    .stat-card {
        padding: 28px 20px;
        border-radius: 20px;
        box-shadow: 0 12px 28px rgba(0, 102, 255, 0.25);
        max-width: 300px;
    }

    .stat-number {
        font-size: 1.75rem;
        text-shadow: 0 4px 14px rgba(0, 102, 255, 0.22);
    }

    /* Badge responsive */
    .badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }
}

/* ===== Dark Mode Hero Section ===== */
.dark .hero-section {
    background-color: #0F172A;
    color: #FFFFFF;
}

/* Ensure all text in hero section is white in dark mode */
.dark .hero-section h1,
.dark .hero-section h2,
.dark .hero-section h3,
.dark .hero-section p,
.dark .hero-section span:not(.text-gradient):not(.badge),
.dark .hero-section div:not(.badge):not(.text-gradient) {
    color: #FFFFFF !important;
}

/* Override Tailwind utility classes in dark mode */
.dark .hero-section .text-gray-600,
.dark .hero-section .text-gray-500,
.dark .hero-section .text-gray-900 {
    color: #FFFFFF !important;
}

.dark .stat-card {
    background: linear-gradient(
        145deg,
        rgba(0, 184, 255, 0.3) 0%,
        rgba(0, 102, 255, 0.25) 40%,
        rgba(0, 102, 255, 0.38) 100%
    );
    border-color: rgba(0, 184, 255, 0.4);
    box-shadow: 0 22px 55px rgba(0, 184, 255, 0.35);
}

.dark .stat-card:hover {
    box-shadow: 0 30px 70px rgba(0, 184, 255, 0.45);
}

/* ===== Cards ===== */
.card {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.dark .card {
    background-color: #1E293B;
    border-color: #334155;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dark .card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 20px 60px rgba(0, 184, 255, 0.2);
}

.dark .card h3,
.dark .card p {
    color: #FFFFFF !important;
}

.dark .tech-item p,
.dark .service-card p,
.dark .process-step p,
.dark .pricing-card p,
.dark .contact-info-card p,
.dark .faq-item p,
.dark .testimonial-card p,
.dark #statsSection p,
.dark .section-subtitle {
    color: rgba(255, 255, 255, 0.92) !important;
}

/* ===== Tech Stack ===== */
.tech-item {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.tech-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-12px) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.tech-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-item:hover .tech-icon {
    transform: scale(1.3) rotateY(360deg);
}

.dark .tech-item {
    background-color: #1E293B;
    border-color: #334155;
}

.dark .tech-item:hover {
    border-color: var(--accent-blue);
}

.dark .tech-icon {
    filter: brightness(1.3);
}

/* ===== FAQ ===== */
.faq-item {
    background: var(--bg-primary);
    border-radius: 20px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 28px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    padding: 0 28px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 28px 28px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.dark .faq-item {
    background-color: #1E293B;
    border-color: #334155;
}

.dark .faq-item:hover,
.dark .faq-item.active {
    border-color: var(--accent-blue);
}

.dark .faq-question {
    color: #FFFFFF;
}

.dark .faq-answer {
    color: #E2E8F0;
}

/* ===== Process Steps ===== */
.process-step {
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .process-number {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 18px 50px rgba(0, 102, 255, 0.6);
}

.dark .process-step:hover .process-number {
    box-shadow: 0 18px 50px rgba(0, 184, 255, 0.7);
}

.dark .process-step h3,
.dark .process-step p {
    color: #FFFFFF !important;
}

/* ===== SERVICE CARDS (Phase 3) ===== */
.service-card {
    background: var(--card-surface, rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 102, 255, 0.2);
    border-color: var(--primary-blue);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.5);
}

.service-card__gradient {
    background: linear-gradient(140deg, #1d4ed8 0%, #2563eb 45%, #0ea5e9 100%);
    padding: 48px 0 44px;
    display: flex;
    justify-content: center;
}

.dark .service-card__gradient {
    background: linear-gradient(150deg, #0a1f3d 0%, #142f64 40%, #2563eb 100%);
}

.service-card__icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    font-size: 2rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}

.dark .service-card__icon-wrapper {
    background: linear-gradient(145deg, #1d4ed8, #38bdf8);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.45);
}

.service-card__body {
    padding: 32px 32px 36px;
}

.service-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.dark .service-card__title {
    color: #f8fafc;
}

.service-card__description {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.dark .service-card__description {
    color: rgba(226, 232, 240, 0.92);
}

.service-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.service-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #1f2937;
}

.dark .service-card__features li {
    color: rgba(226, 232, 240, 0.92);
}

.service-card__check {
    display: inline-flex;
    width: 26px;
    height: 26px;
    border-radius: 9999px;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.dark .service-card {
    background: rgba(15, 23, 42, 0.92);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.55);
}

.dark .service-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 25px 60px rgba(14, 165, 233, 0.35);
}

.service-card__header,
.service-label,
.service-title,
.service-description,
.service-features,
.service-features li {
    all: unset;
}

/* ===== PORTFOLIO CARDS (Phase 3) ===== */
.portfolio-card {
    background: var(--card-surface, rgba(255, 255, 255, 0.96));
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
}

.portfolio-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 102, 255, 0.2);
    border-color: var(--primary-blue);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.95) 0%, rgba(0, 184, 255, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay .btn-primary {
    background: white;
    color: var(--primary-blue);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.portfolio-overlay .btn-primary:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.portfolio-filter-btn {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.25);
    outline: none;
    border-radius: 999px;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    color: #1f2937;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-filter-btn.active {
    background: var(--primary-blue) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.25);
}

.dark .portfolio-filter-btn {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(96, 165, 250, 0.35);
    color: rgba(226, 232, 240, 0.9);
}

.dark .portfolio-filter-btn.active {
    background: rgba(59, 130, 246, 0.35) !important;
    color: rgba(191, 219, 254, 0.95) !important;
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.4);
}

.portfolio-item {
    transition: all 0.4s ease;
}

.portfolio-item.hidden {
    display: none;
}

.dark .portfolio-card {
    background: rgba(15, 23, 42, 0.94);
    border-color: rgba(56, 189, 248, 0.28);
    box-shadow: 0 20px 55px rgba(2, 6, 23, 0.55);
}

.dark .portfolio-card:hover {
    border-color: rgba(147, 197, 253, 0.85);
    box-shadow: 0 28px 68px rgba(14, 165, 233, 0.4);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    background: rgba(250, 204, 21, 0.92);
    color: #78350f;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.3);
}

.dark .rating-badge {
    background: rgba(250, 204, 21, 0.95);
    color: #78350f;
    box-shadow: 0 10px 24px rgba(250, 204, 21, 0.35);
}

.card-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-primary-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 20px 45px rgba(14, 165, 233, 0.4);
}

.dark .card-primary-btn {
    background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
    box-shadow: 0 18px 45px rgba(14, 165, 233, 0.45);
}

.card-primary-btn svg {
    width: 1.1rem;
    height: 1.1rem;
}
/* Blog cards */
.blog-card {
    background: var(--card-surface, rgba(255, 255, 255, 0.96));
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 28px 68px rgba(37, 99, 235, 0.18);
}

.dark .blog-card {
    background: rgba(15, 23, 42, 0.94);
    border-color: rgba(56, 189, 248, 0.22);
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.6);
}

.dark .blog-card:hover {
    border-color: rgba(147, 197, 253, 0.85);
    box-shadow: 0 30px 76px rgba(14, 165, 233, 0.42);
}

/* ===== PRICING CARDS (Phase 3) ===== */
.pricing-card {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 28px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
    border-color: var(--primary-blue);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border: none;
    color: white;
    transform: scale(1.08);
    box-shadow: 0 25px 60px rgba(0, 102, 255, 0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.12) translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 102, 255, 0.5);
}

.pricing-card.featured * {
    color: white !important;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1E293B;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.85rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-badge-simple {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.85rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-top: 16px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.pricing-card.featured .price-currency {
    color: white !important;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
}

.pricing-card.featured .price-amount {
    color: white !important;
}

.price-suffix {
    font-size: 1.1rem;
    color: #6B7280;
    font-weight: 600;
}

.pricing-card.featured .price-suffix {
    color: rgba(255, 255, 255, 0.9) !important;
}

.pricing-card .price-original {
    display: inline-block;
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.5);
    text-decoration: line-through;
    margin-left: 0.75rem;
}

.dark .pricing-card .price-original {
    color: rgba(255, 255, 255, 0.65);
}

.source-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: #2563EB;
    margin-bottom: 20px;
}

.dark .source-card-badge {
    background: rgba(96, 165, 250, 0.16);
    color: #93C5FD;
}

.btn-pricing-source {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-pricing-source:hover {
    background: var(--primary-blue);
    color: #FFFFFF;
    box-shadow: 0 18px 45px rgba(0, 102, 255, 0.25);
}

.dark .btn-pricing-source {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.dark .btn-pricing-source:hover {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
    color: #0F172A;
}

.pricing-features {
    flex: 1;
    margin-bottom: 32px;
}

.pricing-cta {
    margin-top: auto;
}

.btn-pricing {
    display: inline-block;
    width: 100%;
    padding: 16px 32px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.btn-pricing:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.3);
}

.btn-pricing-featured {
    background: white;
    color: var(--primary-blue);
    border-color: white;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    font-size: 1.1rem;
}

.btn-pricing-featured:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.dark .pricing-card {
    background: rgba(13, 23, 41, 0.95);
    border-color: rgba(96, 165, 250, 0.25);
    color: rgba(248, 250, 252, 0.94);
}

.dark .pricing-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 20px 50px rgba(0, 184, 255, 0.25);
}

.dark .pricing-card h3,
.dark .pricing-card .pricing-price span,
.dark .pricing-card .pricing-features span,
.dark .pricing-card .pricing-features li,
.dark .pricing-card .pricing-header p {
    color: rgba(248, 250, 252, 0.9) !important;
}

.dark .price-currency,
.dark .price-amount {
    color: #ffffff;
}

.dark .price-suffix {
    color: rgba(226, 232, 240, 0.7);
}

.dark .pricing-card.featured {
    background: linear-gradient(135deg, #0066FF 0%, #00B8FF 100%);
}

.dark .btn-pricing {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.45);
}

.dark .btn-pricing:hover {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
    color: #ffffff;
}

.dark .btn-pricing-featured {
    background: #ffffff;
    color: var(--primary-blue);
    border-color: transparent;
}

.pricing-card.featured .btn-pricing-featured {
    color: var(--primary-blue) !important;
}

/* ===== TESTIMONIAL CARDS (Phase 3) ===== */
.testimonial-card {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 28px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 102, 255, 0.2);
    border-color: var(--primary-blue);
}

.testimonial-quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 3rem;
    color: var(--primary-blue);
    opacity: 0.15;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #E5E7EB;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
}

.testimonial-avatar-fallback {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.testimonial-verified {
    display: flex;
    align-items: center;
    margin-top: 16px;
    opacity: 0.8;
}

.dark .testimonial-card {
    background: #1E293B;
    border-color: #334155;
}

.dark .testimonial-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 25px 60px rgba(0, 184, 255, 0.3);
}

.dark .testimonial-author {
    border-top-color: #334155;
}

.dark .testimonial-quote-icon {
    color: var(--accent-blue);
}

/* ===== CONTACT SECTION (Phase 4) ===== */
.contact-info-card {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.15);
    border-color: var(--primary-blue);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
}

.dark .contact-info-card {
    background: #1E293B;
    border-color: #334155;
}

.dark .contact-info-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 12px 35px rgba(0, 184, 255, 0.25);
}

/* Contact Form Container */
.contact-form-container {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 24px;
    padding: 40px;
}

.dark .contact-form-container {
    background: #1E293B;
    border-color: #334155;
}

/* Form Elements */
.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.dark .form-label {
    color: #E5E7EB;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
    color: #1F2937;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-input.is-invalid {
    border-color: #EF4444;
}

.form-input.with-leading-icon {
    padding-left: 3.25rem;
}

@media (min-width: 640px) {
    .form-input.with-leading-icon {
        padding-left: 3.75rem;
    }
}

.dark .form-input {
    background: #0F172A;
    border-color: #334155;
    color: #FFFFFF;
}

.dark .form-input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 184, 255, 0.1);
}

.form-error {
    display: block;
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 6px;
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.alert-success {
    background: #DCFCE7;
    color: #166534;
    border: 2px solid #86EFAC;
}

.alert-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 2px solid #FCA5A5;
}

.dark .alert-success {
    background: #064E3B;
    color: #86EFAC;
    border-color: #059669;
}

.dark .alert-error {
    background: #7F1D1D;
    color: #FCA5A5;
    border-color: #DC2626;
}

/* ===== FOOTER (Phase 4) ===== */
.footer {
    position: relative;
    padding: 80px 0 0;
}

.footer-content {
    padding-bottom: 64px;
}

.footer-col h3 {
    margin-bottom: 24px;
}

.footer-logo {
    display: inline-block;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent-blue);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: start;
    margin-bottom: 16px;
    color: #9CA3AF;
}

.footer-contact a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-blue);
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-description {
    line-height: 1.8;
}

.dark .footer-description {
    color: rgba(255, 255, 255, 0.78);
}

/* ===== Select Wrapper ===== */
.select-wrapper {
    position: relative;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2351526B' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.custom-select:focus {
    outline: none;
}

.dark .custom-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2393C5FD' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.dark .custom-select {
    background-color: #0f172a;
    color: rgba(248, 250, 252, 0.96);
    border-color: rgba(99, 102, 241, 0.45);
}

/* ===== WHATSAPP FLOAT BUTTON (Phase 4) ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    font-size: 1.75rem;
    animation: pulse 2s infinite;
}

.whatsapp-text {
    font-size: 0.95rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    bottom: 80px;
    left: 0;
    background: white;
    border-radius: 16px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.whatsapp-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dark .whatsapp-tooltip {
    background: #1E293B;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.whatsapp-tooltip-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #9CA3AF;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.whatsapp-tooltip-close:hover {
    color: #374151;
}

.dark .whatsapp-tooltip-close:hover {
    color: #E5E7EB;
}

.whatsapp-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #25D366;
}

.whatsapp-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-tooltip-button {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.whatsapp-tooltip-button:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile Responsive for WhatsApp */
@media (max-width: 640px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-button {
        padding: 12px 18px;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-tooltip {
        width: calc(100vw - 40px);
        max-width: 320px;
    }

    .back-to-top {
        bottom: 90px;
        right: 20px;
    }
}
.dark .text-gray-900 { color: #FFFFFF !important; }
.dark .text-gray-800 { color: rgba(255, 255, 255, 0.97) !important; }

.dark .text-gray-600 { color: rgba(255, 255, 255, 0.9) !important; }
.dark .text-gray-500 { color: rgba(255, 255, 255, 0.82) !important; }
.dark .text-gray-400 { color: rgba(255, 255, 255, 0.7) !important; }
.dark .text-gray-300 { color: rgba(255, 255, 255, 0.6) !important; }
.prose-custom {
    max-width: none;
    color: #1f2937;
    font-size: 1.125rem;
    line-height: 1.8;
}

.prose-custom h1,
.prose-custom h2,
.prose-custom h3,
.prose-custom h4,
.prose-custom h5,
.prose-custom h6 {
    color: #111827;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose-custom h1 {
    font-size: 2.5rem;
}

.prose-custom h2 {
    font-size: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(15, 23, 42, 0.08);
}

.prose-custom h3 {
    font-size: 1.65rem;
}

.prose-custom h4 {
    font-size: 1.35rem;
}

.prose-custom p {
    color: #374151;
    margin-bottom: 1.5rem;
}

.prose-custom ul,
.prose-custom ol {
    padding-left: 1.75rem;
    margin: 1.5rem 0;
}

.prose-custom li {
    color: #4b5563;
    margin: 0.65rem 0;
}

.prose-custom a {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 600;
}

.prose-custom blockquote {
    border-left: 4px solid rgba(37, 99, 235, 0.35);
    padding-left: 1.25rem;
    color: #1f2937;
    font-style: italic;
    background: rgba(227, 233, 255, 0.35);
    border-radius: 0 16px 16px 0;
}

.dark .prose-custom {
    color: rgba(226, 232, 240, 0.92);
}

.dark .prose-custom h1,
.dark .prose-custom h2,
.dark .prose-custom h3,
.dark .prose-custom h4,
.dark .prose-custom h5,
.dark .prose-custom h6 {
    color: #e2e8f0;
    border-color: rgba(148, 163, 184, 0.2);
}

.dark .prose-custom p,
.dark .prose-custom li {
    color: rgba(203, 213, 225, 0.95);
}

.dark .prose-custom a {
    color: #60a5fa;
}

.dark .prose-custom blockquote {
    border-color: rgba(96, 165, 250, 0.6);
    background: rgba(17, 42, 87, 0.45);
    color: rgba(224, 231, 255, 0.95);
}
