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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f8fafc;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(45, 90, 160, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(45, 90, 160, 0); }
    100% { box-shadow: 0 0 0 0 rgba(45, 90, 160, 0); }
}

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

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(157, 78, 221, 0.4),
                    0 0 40px rgba(157, 78, 221, 0.2),
                    0 0 60px rgba(157, 78, 221, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(157, 78, 221, 0.6),
                    0 0 60px rgba(157, 78, 221, 0.4),
                    0 0 90px rgba(157, 78, 221, 0.2);
    }
}

@keyframes checkBounce {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(-45deg);
    }
    100% {
        transform: scale(1) rotate(-45deg);
        opacity: 1;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 90, 160, 0.95), rgba(26, 54, 93, 0.95));
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
    z-index: 1;
}

.hero-content {
    animation: fadeInDown 1s ease-out;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: -35px;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.pricing-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2d5aa0, #1a365d, #0077b6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 900;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out;
}

.pricing-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Grid Layout */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* ========================================
   PRICING CARD - BASE
   ======================================== */
.pricing-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out backwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-card:nth-child(4) { animation-delay: 0.4s; }
.pricing-card:nth-child(5) { animation-delay: 0.5s; }
.pricing-card:nth-child(6) { animation-delay: 0.6s; }

/* Top Border Gradient */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--card-color-1), var(--card-color-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

/* Glow Background on Hover */
.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(var(--card-color-rgb), 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s;
    pointer-events: none;
    z-index: 0;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

/* Color Variables */
.pricing-card[data-program="mozaik"] {
    --card-color-1: #00979d;
    --card-color-2: #00b4d8;
    --card-color-rgb: 0, 151, 157;
}

.pricing-card[data-program="wedo"] {
    --card-color-1: #0077b6;
    --card-color-2: #00b4d8;
    --card-color-rgb: 0, 119, 182;
}

.pricing-card[data-program="mechanic"] {
    --card-color-1: #06d6a0;
    --card-color-2: #00979d;
    --card-color-rgb: 6, 214, 160;
}

.pricing-card[data-program="robot"] {
    --card-color-1: #f77f00;
    --card-color-2: #ff9500;
    --card-color-rgb: 247, 127, 0;
}

.pricing-card[data-program="arduino"] {
    --card-color-1: #9d4edd;
    --card-color-2: #c77dff;
    --card-color-rgb: 157, 78, 221;
}

.pricing-card[data-program="scratch"] {
    --card-color-1: #e63946;
    --card-color-2: #f77f00;
    --card-color-rgb: 230, 57, 70;
}

/* ========================================
   CARD COMPONENTS
   ======================================== */

/* Badge */
.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
    z-index: 10;
}

.pricing-badge.coming-soon {
    background: linear-gradient(135deg, #ffa726, #fb8c00);
}

/* Icon */
.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--card-color-1), var(--card-color-2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.6s ease;
    position: relative;
    z-index: 1;
}

.pricing-card:hover .pricing-icon {
    transform: rotateY(360deg) scale(1.1);
}

/* Card Title & Age */
.card-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.card-age {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

/* Price Section */
.price-section {
    background: linear-gradient(135deg, rgba(var(--card-color-rgb), 0.08), rgba(var(--card-color-rgb), 0.03));
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(var(--card-color-rgb), 0.1);
    margin-top: 1.5rem; /* 👈 Kasih space di atas */
}

.price-section::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 3%;
    width: 93%;
    height: 2px;
    background-image: repeating-linear-gradient(
        to right,
        rgba(var(--card-color-rgb), 0.3) 0,
        rgba(var(--card-color-rgb), 0.3) 5px,
        transparent 5px,
        transparent 10px
    );
}

.price-label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--card-color-1), var(--card-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
    line-height: 1.2;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.pricing-price .currency {
    font-size: 1rem;
    font-weight: 600;
}

.price-period {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

/* Features List */
.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card:hover .pricing-features li {
    padding-left: 0.5rem;
}

.pricing-features i {
    color: var(--card-color-1);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-features i {
    transform: scale(1.2);
}

/* CTA Button */
.pricing-btn {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--card-color-1), var(--card-color-2));
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.pricing-btn:hover::before {
    width: 400px;
    height: 400px;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.pricing-btn span {
    position: relative;
    z-index: 1;
}

.pricing-btn:disabled {
    background: linear-gradient(135deg, #9e9e9e, #757575);
    cursor: not-allowed;
    opacity: 0.7;
}

.pricing-btn:disabled:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-btn:disabled::before {
    display: none;
}

/* ========================================
   ARDUINO CARD - LEVEL SELECTION
   ======================================== */

.card-description {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px dashed rgba(157, 78, 221, 0.2);
    position: relative;
    z-index: 1;
}

/* Levels Container */
.arduino-levels {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 0.5rem;
    
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #9d4edd #f0f0f0;
}

.arduino-levels::-webkit-scrollbar {
    width: 6px;
}

.arduino-levels::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.arduino-levels::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #9d4edd, #c77dff);
    border-radius: 10px;
}

.arduino-levels::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #8b3fd8, #b56cfc);
}

/* Level Item - Card Click Selection */
.level-item {
    border: 2px solid rgba(157, 78, 221, 0.15);
    border-radius: 15px;
    margin-bottom: 0.8rem;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.03), rgba(199, 125, 255, 0.01));
    cursor: pointer;
    position: relative;
}

.level-item:last-child {
    margin-bottom: 0;
}

/* Available Level States */
.level-item.available {
    cursor: pointer;
}

.level-item.available:hover {
    border-color: rgba(157, 78, 221, 0.4);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.08), rgba(199, 125, 255, 0.04));
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(157, 78, 221, 0.15);
}

/* SELECTED STATE - The Magic Happens Here! */
.level-item.selected {
    border-color: #9d4edd !important;
    border-width: 3px !important;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(199, 125, 255, 0.08)) !important;
    box-shadow: 0 8px 30px rgba(157, 78, 221, 0.35) !important;
    transform: translateY(0) scale(1) !important;
    animation: glowPulse 2s ease-in-out infinite;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
}

/* Selected Badge (Check Icon) - OVERLAY BORDER STYLE */
.level-selected-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: none;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5);
    z-index: 15;
    animation: checkBounce 0.5s ease-out;
    white-space: nowrap;
    border: 2px solid white;
}

.level-item.selected .level-selected-badge {
    display: flex;
}

.level-selected-badge i {
    font-size: 0.85rem;
}

/* Coming Soon State */
.level-item.coming-soon {
    background: linear-gradient(135deg, rgba(158, 158, 158, 0.03), rgba(117, 117, 117, 0.01));
    border-color: rgba(158, 158, 158, 0.15);
    opacity: 0.6;
    cursor: not-allowed;
}

.level-item.coming-soon:hover {
    transform: none;
    box-shadow: none;
}

/* Level Header */
.level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    gap: 1rem;
    transition: all 0.3s ease;
}

.level-item.selected .level-header {
    padding-bottom: 0.8rem;
}

/* Header Left */
.level-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    min-width: 0;
    max-width: 60%;
}

.level-badge {
    background: linear-gradient(135deg, #9d4edd, #c77dff);
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
}

.level-item.selected .level-badge {
    background: linear-gradient(135deg, #8b3fd8, #b56cfc);
    box-shadow: 0 4px 12px rgba(157, 78, 221, 0.5);
}

.level-badge.coming {
    background: linear-gradient(135deg, #9e9e9e, #757575);
    box-shadow: 0 2px 8px rgba(158, 158, 158, 0.3);
}

.level-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
    line-height: 1.2;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.level-item.selected .level-name {
    color: #9d4edd;
    font-size: 1rem;
}

.level-item.coming-soon .level-name {
    color: #999;
}

/* Header Right */
.level-price {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
    white-space: nowrap;
    max-width: 40%;
}

.level-price .currency {
    font-size: 0.65rem;
    color: #9d4edd;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.level-item.selected .level-price .currency {
    color: #8b3fd8;
    font-size: 0.75rem;
}

.level-price .amount {
    font-size: 0.95rem;
    background: linear-gradient(135deg, #9d4edd, #c77dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.level-item.selected .level-price .amount {
    font-size: 1.05rem;
    background: linear-gradient(135deg, #8b3fd8, #b56cfc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


.coming-label {
    font-size: 0.85rem;
    color: #ffa726;
    font-weight: 600;
    font-style: italic;
}

/* Level Features - Always Visible */
.level-features {
    list-style: none;
    padding: 0 1.4rem 1.2rem 1.4rem;
    margin: 0;
    border-top: 1px solid rgba(157, 78, 221, 0.1);
    transition: all 0.3s ease;
}

.level-item.selected .level-features {
    border-top-color: rgba(157, 78, 221, 0.25);
    padding-bottom: 1.4rem;
}

.level-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #555;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.level-item.selected .level-features li {
    color: #333;
    font-weight: 500;
}

.level-features i {
    font-size: 0.95rem;
    color: #9d4edd;
    flex-shrink: 0;
    margin-top: 0.15rem;
    transition: all 0.3s ease;
}

.level-item.selected .level-features i {
    color: #8b3fd8;
    transform: scale(1.15);
}

.level-item.coming-soon .level-features i {
    color: #999;
}

.level-item.coming-soon .level-features li {
    color: #999;
}

/* Arduino Register Button */
.arduino-register-btn {
    position: relative;
}

.arduino-register-btn:not(:disabled) {
    background: linear-gradient(135deg, #9d4edd, #c77dff);
    animation: glowPulse 2s ease-in-out infinite;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #2d5aa0, #1a365d);
    padding: 5rem 2rem;
    margin: 6rem 0 0 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: float 15s linear infinite reverse;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: #ffffff;
    color: #2d5aa0;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: 
        transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        background 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    background: #f8f9fa;
}

.cta-btn i {
    margin-right: 8px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1090px) {
    html, body {
        width: 100%;
        max-width: 100%;
    }

    /* Hero */
    .hero {
        height: 50vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Pricing Section */
    .pricing-section h2 {
        font-size: 2rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .card-title {
        font-size: 1.7rem;
    }

    .pricing-price {
        font-size: 2.2rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
    }

    .pricing-btn {
        padding: 1.1rem;
        font-size: 1rem;
    }

    /* Arduino Level Mobile */
    .level-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.2rem;
        gap: 0.6rem;
    }

    .level-info {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
    }

    .level-badge {
        flex-shrink: 0;
    }

    .level-name {
        font-size: 0.9rem;
        line-height: 1.3;
        flex: 1;
    }

    .level-price {
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
        padding-left: 0;
    }
    
    .level-price .currency {
        font-size: 0.65rem;
    }

    .level-price .amount {
        font-size: 1.1rem;
        margin-right: auto;
    }

    .level-item.selected .level-header {
        padding: 1.2rem 1.2rem 1rem 1.2rem;
    }

    .level-item.selected .level-name {
        font-size: 0.95rem;
    }

    .level-item.selected .level-price .amount {
        font-size: 1.2rem;
    }

    .level-selected-badge {
        padding: 0.35rem 0.8rem;
        font-size: 0.65rem;
        top: -10px;
    }

    .level-features {
        padding: 0 1.2rem 1rem 1.2rem;
    }

    .level-features li {
        font-size: 0.8rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
    }
}