/* Variables - Modern SaaS Theme */
:root {
    --primary-color: #111111;
    /* Black */
    --secondary-color: #f3f4f6;
    /* Light Gray */
    --accent-purple: #E0C3FC;
    /* Lavender */
    --accent-green: #D4F4DD;
    /* Lime */
    --accent-blue: #BAE6FD;
    /* Light Blue */
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --white: #ffffff;

    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-pill: 100px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: #e5e7eb;
}

.btn-outline {
    border-color: #e5e7eb;
    background: transparent;
    color: var(--text-color);
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.full-width {
    width: 100%;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--primary-color);
}

.nav-links-wrapper {
    background: var(--secondary-color);
    padding: 6px 8px;
    border-radius: var(--radius-pill);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.nav-links a:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Mobile Order Button */
.nav-cta-mobile {
    display: none;
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, #f3f4f6 0%, #ffffff 70%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    background-color: var(--accent-purple);
    color: #5b21b6;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero .highlight {
    color: #7c3aed;
    /* Vibrant Purple */
    position: relative;
    z-index: 1;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--accent-green);
    z-index: -1;
    opacity: 0.6;
    transform: rotate(-2deg);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    perspective: 1000px;
}

.phone-mockup {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: #111;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 50px 100px -20px rgba(50, 50, 93, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 -2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 4px solid #333;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 25px;
    background: #111;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.phone-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.phone-slide.active {
    opacity: 1;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotateY(-5deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-20px) rotateY(5deg) rotateX(-5deg);
    }

    100% {
        transform: translateY(0px) rotateY(-5deg) rotateX(5deg);
    }
}

/* Optional: Vertical Scroll Animation for the image inside */
@keyframes scroll-content {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(calc(-100% + 600px));
    }
}

/* Features - Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.bento-card {
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    transform: translateY(-5px);
}

.bento-card.large {
    grid-column: span 1;
    grid-row: span 2;
    background-color: #fce7f3;
    /* Light Pink */
}

.bento-card.wide {
    grid-column: span 2;
    background-color: #e0f2fe;
    /* Light Blue */
}

.bento-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.bento-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.bento-visual {
    height: 150px;
    margin-top: 20px;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.5);
}

/* Catalog */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
    /* Fixed spacing between catalog and features */
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    /* Gap between individual buttons */
    border: none;
    /* Remove container border */
    border-radius: 0;
    padding: 0;
    margin: 0 auto 15px;
    /* Rapatkan spacing */
    width: fit-content;
}

.category-btn {
    background: none;
    border: 2px solid #111;
    /* Individual border for each button */
    border-radius: 50px;
    /* Pill shape */
    padding: 10px 24px;
    /* Padding inside button */
    font-weight: 700;
    font-size: 0.8rem;
    color: #9ca3af;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.category-btn.active {
    color: #111;
    background-color: #f3f4f6;
    /* Light background for active */
}

.category-btn:hover {
    color: #111;
    background-color: #f8f9fa;
}

/* Info Fitur Button */
.info-fitur-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
    padding: 8px 20px;
    font-size: 0.8rem;
    border: 2px solid #111;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.info-fitur-btn:hover {
    background-color: #111;
    color: var(--white);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: var(--transition), opacity 0.3s ease;
}

.product-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    height: 300px;
    background-color: #f3f4f6;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.price-container {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.price-main {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-original {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--secondary-color);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.stars {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 500;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.user-profile h4 {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.user-profile span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* FAQ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
}

.accordion-header.active {
    background-color: var(--secondary-color);
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--white);
}

.accordion-content p {
    padding: 24px;
    color: var(--text-light);
    border-top: 1px solid #e5e7eb;
}

/* Final CTA */
.final-cta {
    padding: 0 0 100px;
}

.cta-box {
    background-color: var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    color: var(--white);
    background-image: radial-gradient(circle at 100% 0%, #333 0%, #111 50%);
}

.cta-box h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-box p {
    color: #9ca3af;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-box .btn:hover {
    background-color: var(--accent-purple);
}

/* Footer */
footer {
    border-top: 1px solid #e5e7eb;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-weight: 500;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .bento-grid {
        grid-template-rows: repeat(2, 250px);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .nav-links-wrapper {
        display: none;
        /* Hide desktop menu */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        box-shadow: var(--shadow-lg);
        border-top: 1px solid #eee;
    }

    .nav-links-wrapper.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .nav-links a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
        background: var(--secondary-color);
    }

    /* Mobile: Hide desktop CTA, show mobile Order button */
    .nav-cta-desktop {
        display: none !important;
    }

    .nav-cta-mobile {
        display: inline-flex !important;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

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

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

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    /* Reorder: Phone on Top (-1), Text below */
    .hero-visual {
        order: -1;
        margin-bottom: -100px;
        /* Pull text up */
        margin-top: -100px;
        /* Pull phone up to reduce top space */
        transform: scale(0.6);
        /* Smaller phone on mobile */
    }

    .hero-text {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .bento-card {
        min-height: 250px;
    }

    .bento-card.large,
    .bento-card.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-box {
        padding: 40px 20px;
    }

    /* Mobile Catalog Horizontal Carousel */
    .catalog .container {
        padding: 0;
    }

    .catalog .section-header {
        padding: 0 20px;
    }

    .category-filter {
        margin-left: 20px;
        margin-right: 20px;
        padding: 0;
        gap: 10px;
        /* Spacing between buttons on mobile */
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .category-filter::-webkit-scrollbar {
        display: none;
    }

    .info-fitur-btn {
        margin-left: 20px;
        margin-right: 20px;
        max-width: calc(100% - 40px);
    }

    .catalog-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        /* Jarak antar card sedikit diperlebar */
        padding: 40px 20px;
        /* Space Atas & Bawah diperbesar (40px) */
        margin-bottom: 40px;
        /* Spacing ke feature section */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .catalog-grid::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        background: transparent;
        /* Card container transparan */
        border: none;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        height: auto;
        /* Tinggi menyesuaikan konten */
        gap: 20px;
        /* Space antara Foto & Info Box diperbesar */
        padding-bottom: 10px;
    }

    .product-image {
        position: relative;
        height: auto;
        min-height: 480px;
        aspect-ratio: 9/16;
        width: 100%;
        border-radius: 20px;
        /* Radius konsisten di induk */
        background-color: #f3f4f6;
        overflow: hidden;
        /* Lock shape */
        z-index: 1;
        flex-shrink: 0;
        transform: translateZ(0);
        /* Fix rendering bug di mobile */
    }

    /* Overlay Border (Solusi Final: Inset Shadow + Radius Inherit) */
    .product-image::after {
        content: '';
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;

        border: none;
        /* Gunakan box-shadow inset tebal agar tidak terpotong */
        box-shadow: inset 0 0 0 2px #111;

        border-radius: 20px;
        /* Samakan radius */
        z-index: 20;
        pointer-events: none;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        border-radius: 0;
        /* Reset radius anak, ikut induk */
        object-fit: cover !important;
        object-position: top center;
    }

    /* Fokus ke bagian atas gambar */

    .tag {
        z-index: 6;
        /* Naikkan z-index tag agar di atas border */
        top: 15px;
        left: 15px;
        border: 1px solid #111;
    }

    .product-info {
        position: relative;
        background-color: #fffbf0;
        /* Warna Cream sesuai referensi */
        border: 2px solid #111;
        border-radius: 20px;
        padding: 20px 15px;
        text-align: center;
        color: #111;
        display: block;
        /* Reset display */
    }

    .product-info h3 {
        color: #0f172a;
        font-family: serif;
        /* Font serif agar elegan seperti 'Aulia' */
        font-size: 1.5rem;
        margin-bottom: 5px;
        text-shadow: none;
        letter-spacing: 0.5px;
    }

    .product-info .price-container {
        display: flex;
        /* Tampilkan Harga */
        justify-content: center;
        margin-bottom: 15px;
        color: #4b5563;
        font-size: 0.9rem;
    }

    .price-main {
        color: #e11d48;
    }

    .product-info .btn {
        width: 100%;
        background-color: var(--primary-color);
        /* Ubah ke Hitam (#111) agar senada */
        color: white;
        border: 2px solid #111;
        /* Tambahan border agar kartunish/tegas */
        border-radius: 50px;
        padding: 12px 0;
        font-weight: 700;
        font-size: 1rem;
        margin-top: 0;
        box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
        /* Shadow solid */
        backdrop-filter: none;
    }

    .product-info .btn:hover {
        background-color: #333;
        /* Dark Grey saat hover */
        transform: translate(1px, 1px);
        box-shadow: none;
    }
}

/* Accordion Content */
.accordion-content p {
    padding: 24px;
    color: var(--text-light);
    border-top: 1px solid #e5e7eb;
}

/* Final CTA */
.final-cta {
    padding: 0 0 100px;
}

.cta-box {
    background-color: var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    color: var(--white);
    background-image: radial-gradient(circle at 100% 0%, #333 0%, #111 50%);
}

.cta-box h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-box p {
    color: #9ca3af;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-box .btn:hover {
    background-color: var(--accent-purple);
}

/* Footer */
footer {
    border-top: 1px solid #e5e7eb;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-weight: 500;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .bento-grid {
        grid-template-rows: repeat(2, 250px);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .nav-links-wrapper {
        display: none;
        /* Hide desktop menu */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        box-shadow: var(--shadow-lg);
        border-top: 1px solid #eee;
    }

    .nav-links-wrapper.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .nav-links a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
        background: var(--secondary-color);
    }

    .navbar .btn {
        display: none;
        /* Hide CTA button on mobile header to save space */
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

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

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

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .bento-card {
        min-height: 250px;
    }

    .bento-card.large,
    .bento-card.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    /* Mobile Catalog: 2 Columns */
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-image {
        height: 160px;
    }

    .product-info {
        padding: 12px;
    }

    .product-info h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .product-info p {
        font-size: 0.8rem;
        margin-bottom: 12px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-info .btn {
        padding: 8px 0;
        font-size: 0.8rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        /* Limit width to look nice */
        margin: 0 auto 20px;
        /* Center container and add bottom spacing */
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    /* Mobile Price Tags */
    .price-container {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        margin-bottom: 8px;
        flex-wrap: wrap;
    }

    .price-main {
        font-size: 0.85rem;
    }

    .price-original {
        font-size: 0.75rem;
    }

    .price-original {
        font-size: 0.75rem;
    }
}

/* Feature Details / Pricing Grid */
#feature-details {
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

#feature-details.pricing-grid {
    max-width: 1000px;
}

.feature-content {
    flex: 1;
    min-width: 280px;
    border: 2px solid #111;
    padding: 30px 25px;
    text-align: left;
    background: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.feature-content.featured {
    background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
    color: white;
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

/* Platinum color variant */
.feature-content.featured.platinum {
    background: linear-gradient(135deg, #E5E4E2 0%, #B0B0B0 50%, #8B8B8B 100%);
    border-color: #B0B0B0;
    box-shadow: 0 8px 30px rgba(140, 140, 140, 0.3);
}

.feature-content.featured.platinum h3 {
    color: #2c2c2c;
}

.feature-content.featured.platinum .price-old {
    color: rgba(50, 50, 50, 0.6);
}

.feature-content.featured.platinum .price-current {
    color: #1a1a1a;
}

.feature-content.featured.platinum .feature-list li {
    color: #2c2c2c;
}

.feature-content.featured.platinum .feature-list li.included::before {
    color: #4a4a4a;
}

.feature-content.featured.platinum .feature-list li.excluded {
    color: rgba(50, 50, 50, 0.4);
}

.feature-content.featured.platinum .btn-outline {
    background: #2c2c2c;
    color: white;
    border-color: #2c2c2c;
}

.feature-content.featured.platinum .btn-outline:hover {
    background: #1a1a1a;
}

.feature-content.featured h3 {
    color: white;
}

.feature-content.featured .price-old {
    color: rgba(255, 255, 255, 0.7);
}

.feature-content.featured .price-current {
    color: white;
}

.feature-content.featured .feature-list li.included::before {
    color: white;
}

.feature-content.featured .feature-list li.excluded {
    color: rgba(255, 255, 255, 0.5);
}

.feature-content.featured .feature-list li {
    color: white;
}

.feature-content.featured .btn-primary {
    background: white;
    color: #d4af37;
    border-color: white;
}

.feature-content.featured .btn-primary:hover {
    background: #f5f5f5;
}

.feature-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #111;
    margin-bottom: 5px;
    text-align: left;
}

/* Price Display */
.price-display {
    margin-bottom: 20px;
}

.price-old {
    display: block;
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price-current {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
}

.feature-content .subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.feature-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.feature-list li::before {
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
    width: 18px;
}

.feature-list li.included::before {
    content: "✓";
    color: #111;
}

.feature-list li.excluded {
    color: #bbb;
    text-decoration: line-through;
}

.feature-list li.excluded::before {
    content: "✗";
    color: #ccc;
}

.feature-content .btn {
    margin-top: auto;
    text-align: center;
    display: block;
}

@media (max-width: 768px) {
    #feature-details {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        /* Space for scrollbar */
        -webkit-overflow-scrolling: touch;
        /* Reset grid width if needed */
        grid-template-columns: none;
    }

    .feature-content {
        min-width: 85%;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .feature-content {
        padding: 20px;
    }

    .feature-content h3 {
        font-size: 2rem;
    }
}

/* ADD-ONS Section Styles */
#addons-section {
    max-width: 600px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.addons-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #111;
    text-transform: uppercase;
}

.addon-item {
    margin-bottom: 15px;
}

.addon-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
}

.addon-name {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #111;
    white-space: nowrap;
    /* Prevent wrapping if possible */
}

.addon-dots {
    flex-grow: 1;
    border-bottom: 2px dotted #ccc;
    margin: 0 10px;
    position: relative;
    top: -5px;
    /* Alignment fix */
    min-width: 20px;
    /* Ensure dots are visible */
}

.addon-price {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #111;
    white-space: nowrap;
}

.addon-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
    margin-top: 4px;
    line-height: 1.4;
}

/* Responsive adjustment for addons */
@media (max-width: 480px) {
    .addon-name {
        font-size: 0.8rem;
        white-space: normal;
        /* Allow wrapping on small screens */
    }

    .addon-price {
        font-size: 0.8rem;
    }

    /* When wrapping, we might need adjustments */
    .addon-row {
        align-items: flex-end;
        /* Align dots to bottom */
    }
}

/* ============================================ */
/* FAQ, CTA, FOOTER MOBILE RESPONSIVENESS */
/* ============================================ */
@media (max-width: 768px) {

    /* FAQ Section */
    .faq {
        padding: 40px 0;
    }

    .accordion {
        max-width: 100%;
    }

    .accordion-header {
        font-size: 0.95rem;
        padding: 16px 18px;
    }

    .accordion-content p {
        padding: 16px 18px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Final CTA Section */
    .final-cta {
        padding: 0 0 60px;
    }

    .cta-box {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .cta-box h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .cta-box p {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .cta-box .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    /* Footer Section */
    footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-brand {
        margin-bottom: 10px;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        margin-top: 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    /* Smaller mobile FAQ */
    .accordion-header {
        font-size: 0.9rem;
        padding: 14px 15px;
    }

    .accordion-content p {
        padding: 14px 15px;
        font-size: 0.85rem;
    }

    /* Smaller mobile CTA */
    .cta-box h2 {
        font-size: 1.4rem;
    }

    .cta-box p {
        font-size: 0.85rem;
    }

    /* Smaller mobile Footer */
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}