:root {
    --primary-bg: #fdfdfd;
    --secondary-bg: #f8f8f8;
    --text-dark: #202020; /* Lebih gelap, mendekati hitam logo */
    --text-muted: #707070; /* Abu-abu sedang */
    --accent-blue-dark: #003366; /* Biru gelap untuk teks utama */
    --accent-blue-light: #0056b3; /* Biru logo sebagai aksen utama */
    --gradient-start: #0056b3; /* Biru logo sebagai awal gradien */
    --gradient-end: #4d0080; /* Ungu gelap yang kontras dengan biru logo */
    --border-color: #e0e0e0;
    --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.05);
    --transition-speed: 0.4s ease;
    --border-radius-card: 12px;
}

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--primary-bg);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Subtle Background Pattern (Optional, can be removed for pure white) */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    background-size: 100% 100%;
    opacity: 1;
    z-index: -2;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3; /* Very subtle dots */
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    color: var(--accent-blue-dark);
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all var(--transition-speed);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition-speed);
}

.logo img {
    height: 30px; /* Sesuaikan ukuran logo di sini */
}

nav.scrolled .logo img {
    /* Anda mungkin ingin menyesuaikan tampilan logo saat navbar di-scroll jika perlu */
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all var(--transition-speed);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: width var(--transition-speed);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-blue-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none; /* Sembunyikan secara default */
    position: absolute;
    top: 1.2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001; /* Pastikan di atas konten lain */
    padding: 0.5rem; /* Tambahkan padding agar mudah diklik */
}

nav.scrolled .mobile-menu-button {
    top: 0.8rem; /* Sesuaikan posisi saat navbar di-scroll */
}

/* Hero Section (Full Background) */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    text-align: center;
    position: relative;
    padding: 0 2rem;
    overflow: hidden; /* Ensure content doesn't overflow */

    /* New: Full background image properties */
    background-image: url('../img/131-0-Unsplash.jpg'); /* GANTI DENGAN NAMA FILE GAMBAR ANDA */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white; /* Default text color for better readability on image */
}

/* Overlay for Hero background image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Add a semi-transparent dark overlay for better text readability */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    width: 100%; /* Take full width of container */
    animation: fadeInSlideUp 1.2s ease-out;
    z-index: 1; /* Ensure content is above overlay */
    padding: 3rem;
    border-radius: var(--border-radius-card);
    text-align: center; /* Center text within content box */
    /* Removed specific margins as it's now centered */
}

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

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white; /* Text color changed to white */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5); /* Optional: add text shadow for readability */
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto; /* Center paragraph */
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9); /* Text color changed to white with opacity */
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4); /* Optional: add text shadow for readability */
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition-speed);
    box-shadow: 0 8px 25px rgba(74, 105, 189, 0.3);
    letter-spacing: 0.5px;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 105, 189, 0.4);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-speed);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align text to left */
    text-align: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-blue-light);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(74, 105, 189, 0.3);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-blue-dark);
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
    align-items: stretch; /* Ensure cards stretch to same height */
}

.price-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-card);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Stronger initial shadow */
    transition: all var(--transition-speed);
    border: none; /* Remove default border */
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative; /* For "Popular" badge */
    overflow: hidden; /* For "Popular" badge overflow */
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15); /* Stronger hover shadow */
}

/* Featured Price Card */
.price-card.featured {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    transform: scale(1.05); /* Slightly larger */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    z-index: 1; /* Bring to front */
    padding-top: 5rem; /* Add padding to make space for the badge at the top */
}

.price-card.featured:hover {
    transform: scale(1.08) translateY(-8px); /* More pronounced hover */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.price-card.featured .plan-name,
.price-card.featured .price,
.price-card.featured .price span,
.price-card.featured .features li,
.price-card.featured .features li i {
    color: white; /* All text inside featured card is white */
}

.price-card.featured .features li i {
    color: #b3e0ff; /* Lighter icon for featured */
}

.price-card.featured .select-button {
    background: white;
    color: var(--accent-blue-light);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.price-card.featured .select-button:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

/* Popular Badge for Featured Card (New Design) */
.price-card .popular-badge {
    position: absolute;
    top: 0; /* Position at the very top */
    left: 0;
    width: 100%;
    background-color: #ffc107; /* Yellow for contrast, can change if preferred */
    color: var(--text-dark);
    padding: 0.7rem 0; /* Vertical padding */
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-top-left-radius: var(--border-radius-card);
    border-top-right-radius: var(--border-radius-card);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
}

/* Adjust padding of normal price card to match featured for height consistency */
.price-card:not(.featured) {
    padding-top: calc(3rem + 2.4rem); /* 3rem original padding + 0.7rem*2 (badge padding) */
}


.price-card .plan-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; /* Reduced for desktop */
    font-weight: 700;
    color: var(--accent-blue-dark);
    margin-bottom: 1.2rem; /* More space */
}

.price-card .price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; /* Reduced for desktop */
    font-weight: 700;
    color: var(--gradient-start);
    margin-bottom: 2rem; /* More space */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    line-height: 1;
}

.price-card .price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
}

.price-card .features {
    list-style: none;
    margin-bottom: 2.5rem; /* More space */
    flex-grow: 1;
}

.price-card .features li {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1rem; /* More space between features */
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-card .features li i {
    color: var(--accent-blue-light);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.price-card .select-button {
    display: block; /* Make button full width */
    width: 100%; /* Ensure button takes full width */
    padding: 1.1rem 2.2rem; /* Larger padding for button */
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition-speed);
    box-shadow: 0 5px 15px rgba(74, 105, 189, 0.3);
    border: none;
    cursor: pointer;
}

.price-card .select-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 105, 189, 0.4);
}


/* About Section */
.about {
    background-color: var(--secondary-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--accent-blue-dark);
    font-weight: 700;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-blue-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CEO Section - Removed as per user request to avoid unnecessary content based on new prompt details */

/* Partners Section */
.partners {
    background-color: var(--secondary-bg);
    padding: 7rem 0;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    transition: transform 0.3s ease; /* Keep hover effect */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px; /* Ensure consistent height for logos */
}

.partner-logo:hover {
    transform: translateY(-5px); /* Keep hover effect */
}

.partner-logo img {
    max-width: 100%; /* Allow image to take full width of its container */
    height: auto;
    filter: grayscale(80%); /* Make logos grayscale */
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%); /* Full color on hover */
    opacity: 1;
}


/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    text-align: center;
}

.contact .section-title {
    color: white;
}

.contact .section-title::after {
    background: white;
}

.contact p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.contact-item {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-card);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-item h4 {
    font-family: 'Lato', sans-serif;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
}

.contact-item h4 i {
    font-size: 1.7rem;
    color: #d1e0ff; /* Lighter shade of blue for icons */
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--accent-blue-dark);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 2.5rem 0;
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Ease out quad */
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Body Scroll Lock */
body.no-scroll {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        /* When full background, still centered */
        flex-direction: column; /* Keep content stacked */
        justify-content: center;
        text-align: center;
        padding: 0 2rem;
        background-position: top center; /* Adjust background position for smaller screens */
    }
    .hero::before {
        /* Adjust overlay for smaller screens if needed */
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    }
    .hero-content {
        width: 100%; /* Full width */
        max-width: 900px; /* Keep max-width */
        margin: 0 auto; /* Center content */
        padding: 2rem 0; /* Adjust padding */
        text-align: center; /* Center text */
    }

    .hero h1 {
        font-size: 3.5rem;
    }
    .hero p {
        font-size: 1.15rem;
    }
    .about-content,
    .ceo-content { /* Retaining ceo-content for safety, though section removed */
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-text, .ceo-info { /* Retaining ceo-info for safety, though section removed */
        text-align: center;
    }
    .ceo-image { /* Retaining ceo-image for safety, though section removed */
        order: -1;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .nav-links {
        gap: 1.8rem;
    }
    .logo {
        /* Styles for logo remain */
    }

    /* Adjust pricing card fonts on larger tablets if needed, though 768px below handles smaller ones */
    .price-card .plan-name {
        font-size: 1.8rem; /* Slightly smaller for tablets */
    }
    .price-card .price {
        font-size: 2.8rem; /* Adjusted for tablets */
    }
    .price-card .price span {
        font-size: 1.1rem;
    }
    /* Featured card on tablets - adjust padding-top if badge is slightly larger */
    .price-card.featured {
        padding-top: calc(3rem + 2.4rem); /* Match normal card padding top */
        transform: scale(1.02); /* Less scale on tablets */
    }
    .price-card.featured:hover {
        transform: scale(1.05) translateY(-8px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
    /* Mobile Navigation */
    .mobile-menu-button {
        display: block; /* Tampilkan tombol menu mobile */
    }
    .nav-links {
        display: none; /* Sembunyikan menu default */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999; /* Pastikan di bawah tombol menu */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-links.open {
        display: flex; /* Tampilkan menu mobile */
        opacity: 1;
        visibility: visible;
    }

    .nav-links li a {
        font-size: 1.5rem;
        color: var(--text-dark); /* Ensure links are visible on mobile menu background */
    }
    .nav-links li a:hover {
        color: var(--accent-blue-light);
    }


    .stats-grid {
        grid-template-columns: 1fr;
    }
    .service-card, .contact-item, .price-card {
        padding: 2rem;
    }
    /* Perbaikan untuk Pricing Grid */
    .pricing-grid {
        grid-template-columns: 1fr; /* Menjadi satu kolom pada layar kecil */
    }
    .ceo-avatar { /* Retaining for safety, though section removed */
        width: 200px;
        height: 200px;
        font-size: 3.5rem;
    }
    .section {
        padding: 5rem 0;
    }
    .section-title {
        margin-bottom: 3rem;
    }
    .hero-content {
        padding: 2.5rem;
    }
    .cta-button {
        padding: 1rem 2.2rem;
        font-size: 0.95rem;
    }
    .service-card {
        align-items: center;
        text-align: center;
    }
    /* Pricing Card Specific adjustments for smaller screens */
    .price-card .plan-name {
        font-size: 1.4rem; /* Reduced font size for plan name */
        margin-bottom: 0.8rem;
    }
    .price-card .price {
        font-size: 2.2rem; /* Reduced font size for price */
        margin-bottom: 1.2rem;
    }
    .price-card .price span {
        font-size: 0.9rem; /* Reduced font size for /bulan */
    }
    .price-card .features li {
        font-size: 0.85rem; /* Reduced font size for features */
        margin-bottom: 0.6rem; /* Reduced space */
    }
    .price-card .select-button {
        font-size: 0.9rem; /* Reduced font size for button */
        padding: 0.8rem 1.6rem;
    }
    /* Adjust featured card scale to prevent overflow */
    .price-card.featured {
        transform: scale(1.02); /* Slightly less scale on smaller screens */
        padding-top: calc(2rem + 2.4rem); /* Adjust padding for mobile featured card */
    }
    .price-card.featured:hover {
        transform: scale(1.04) translateY(-8px); /* Adjusted hover scale */
    }
    .price-card .popular-badge {
        font-size: 0.8rem; /* Smaller badge text on mobile */
        padding: 0.6rem 0;
    }
    /* Adjust padding of normal price card to match featured for height consistency on mobile */
    .price-card:not(.featured) {
        padding-top: calc(2rem + 2.4rem); /* Match featured padding for height */
    }


    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Smaller logos on smaller screens */
        gap: 2rem;
    }
    .partner-logo {
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }
    .container {
        padding: 0 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .service-card h3 {
        font-size: 1.4rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .ceo-info h3 { /* Retaining for safety, though section removed */
        font-size: 2rem;
    }
    .logo img {
        height: 25px; /* Lebih kecil di mobile */
    }
    /* Even smaller pricing text for very small screens */
    .price-card .plan-name {
        font-size: 1.1rem; /* Further reduced */
    }
    .price-card .price {
        font-size: 1.8rem; /* Further reduced */
    }
    .price-card .price span {
        font-size: 0.75rem; /* Further reduced */
    }
    .price-card .features li {
        font-size: 0.8rem;
    }
    .price-card .select-button {
        font-size: 0.8rem;
    }
    /* Featured card on very small screens */
    .price-card.featured {
        transform: scale(1.0); /* No scale on very small screens */
    }
    .price-card.featured:hover {
        transform: scale(1.02) translateY(-5px); /* Adjusted hover scale */
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on very small screens */
    }
}