        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gradient: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            --primary-color: #2d3748;
            --accent-color: #48bb78; /* Hijau Imora */
            --whatsapp-color: #25D366;
            --text-dark: #1a1a1a;
            --text-light: #718096;
            --bg-light: #f7fafc;
            --white: #ffffff;
            --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--white);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        nav.scrolled {
            padding: 0.8rem 5%;
            box-shadow: var(--shadow-md);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .cta-btn {
            background: var(--primary-gradient);
            color: white;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(74, 85, 104, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(74, 85, 104, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-dark);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            margin-top: 70px;
            padding: 6rem 5%;
            background: var(--primary-gradient);
            color: var(--white);
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            top: -300px;
            right: -200px;
            animation: float 20s infinite ease-in-out;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            bottom: -150px;
            left: -100px;
            animation: float 15s infinite ease-in-out reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        .hero-content {
            max-width: 700px;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: white;
            animation: fadeInUp 0.8s ease;
        }

        .hero p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2.5rem;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn-primary, .btn-secondary {
            padding: 1rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: white;
            color: var(--primary-color);
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 2px solid white;
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Features Section */
        .features {
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #718096;
            max-width: 600px;
            margin: 0 auto;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        .feature-card p {
            color: #718096;
            line-height: 1.7;
        }

        /* =========================================
        OPTIMIZED TEMPLATES SECTION (MOBILE READY)
        ========================================= */

:root {
    --primary-color: #2d3748;
    --accent-color: #48bb78;
    --whatsapp-color: #25D366;
    --text-main: #1a202c;
    --text-muted: #718096;
    --bg-light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --shadow-soft: 0 10px 20px rgba(0,0,0,0.02);
    --shadow-hover: 0 30px 60px rgba(0,0,0,0.12);
}

/* Base Section */
.template {
    padding: 80px 5%;
    background: radial-gradient(circle at top right, #fdfbfb 0%, #ebedee 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}

/* Grid Layout */
.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

/* Card Styling */
.template-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.template-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

/* Highlight untuk Paket Standard */
.template-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.template-card.featured:hover {
    transform: translateY(-15px) scale(1.02);
}

/* Content Styling */
.template-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.template-category {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.template-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.template-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Features list */
.template-features {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 25px;
    border: 1px solid #edf2f7;
}

.feature-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
}

.template-feature {
    font-size: 0.85rem;
    color: #4a5568;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.template-feature::before {
    content: "✦";
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 12px;
}

/* Masa Aktif Styling */
.validity-info {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #cbd5e1;
    display: block;
}

/* Button & Button Group */
.button-group {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.template-btn {
    flex: 3;
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.template-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-whatsapp {
    flex: 1;
    background: var(--whatsapp-color);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #128C7E;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .template-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .template-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 400px) {
    .button-group {
        flex-direction: column;
    }
    .template-btn {
        width: 100%;
    }
}


/* =========================================
   VARIABLES
   ========================================= */
:root {
    --tb-primary: #2d3748;
    --tb-accent: #48bb78;
    --tb-wa: #25D366;
    --tb-bg-light: #f8fafc;
    --tb-text-main: #1a202c;
    --tb-text-muted: #718096;
    --tb-radius: 20px;
}

/* =========================================
   SECTION & GRID
   ========================================= */
.template-basic {
    padding: 60px 5%;
    background: #ffffff;
}

.template-basic .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.template-basic .template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: stretch;
}

/* =========================================
   CARD STRUCTURE
   ========================================= */
.template-basic .template-card {
    background: #ffffff;
    border-radius: var(--tb-radius);
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.template-basic .template-card:hover {
    transform: translateY(-10px);
}

/* =========================================
   IMAGE AREA (DIZOOM DI SINI)
   ========================================= */
.template-basic .template-image {
    width: 100%;
    height: 450px; /* Tinggi ditambah agar area gambar lebih luas */
    background: #fff;
    overflow: hidden;
}

.template-basic .template-image img {
    width: 100%;
    height: 100%;
    /* Mengubah contain menjadi cover agar gambar 'zoom' memenuhi area */
    object-fit: cover;
    /* Fokuskan ke bagian atas gambar jika itu gambar HP */
    object-position: top;
    transition: transform 0.5s ease;
}

.template-basic .template-card:hover .template-image img {
    transform: scale(1.1); /* Efek zoom tambahan saat hover */
}

/* =========================================
   CONTENT AREA
   ========================================= */
.template-basic .template-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.template-basic .template-category {
    color: var(--tb-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.template-basic h3 {
    font-size: 1.8rem;
    color: var(--tb-text-main);
    margin-bottom: 20px;
    font-weight: 700;
}

/* BOX DESKRIPSI */
.template-basic .template-features {
    background: var(--tb-bg-light);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--tb-accent);
    margin-bottom: 25px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    min-height: 110px;
}

.template-basic .template-features span {
    font-size: 0.95rem;
    color: var(--tb-text-muted);
    line-height: 1.6;
    font-style: italic;
}

/* =========================================
   BUTTON GROUP (SEJAJAR & PROPORSIONAL)
   ========================================= */
.template-basic .button-group {
    display: flex;
    gap: 10px;
    margin-top: auto;
    width: 100%;
}

.template-basic .template-btn {
    text-decoration: none;
    font-weight: 700;
    padding: 14px 5px;
    border-radius: 12px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    white-space: nowrap;
}

.template-basic .btn-view {
    background: var(--tb-primary);
    color: white;
    flex: 1.3; /* Rasio proporsional */
}

.template-basic .btn-whatsapp {
    background: var(--tb-wa);
    color: white;
    flex: 1;
}

.template-basic .template-btn:hover {
    filter: brightness(0.9);
}

.template-basic .template-btn i {
    margin-right: 6px;
    font-size: 1.1rem;
}

/* =========================================
           SWIPER & CARD (OPTIMIZED)
           ========================================= */
        .template-swiper {
            padding: 20px 10px 80px 10px !important;
        }

        .template-card {
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid var(--imora-border);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: var(--transition);
            /* Shadow halus khas Modern UI */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        }

        .template-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
            border-color: var(--imora-accent);
        }

        /* Image Display - Meniru Tampilan Layar HP */
        .template-image {
            position: relative;
            width: 100%;
            height: 480px; /* Area preview vertikal */
            background: #f8fafc;
            overflow: hidden;
        }

        .template-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            transition: transform 0.7s ease;
        }

        .template-card:hover .template-image img {
            transform: scale(1.05);
        }

        /* Badge Minimalis */
        .badge-exclusive {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--imora-dark);
            color: white;
            padding: 5px 12px;
            border-radius: 8px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 5;
        }

        /* Content Area */
        .template-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .template-category {
            font-size: 0.7rem;
            font-weight: 800;
            color: var(--imora-accent);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .template-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--imora-dark);
            margin-bottom: 12px;
        }

        .template-features {
            font-size: 0.85rem;
            color: var(--imora-muted);
            line-height: 1.5;
            margin-bottom: 20px;
            min-height: 50px;
        }

        /* =========================================
           BUTTONS (IMORA UI STYLE)
           ========================================= */
        .button-group {
            display: flex;
            gap: 10px;
            margin-top: auto;
        }

        .template-btn {
            text-decoration: none;
            font-weight: 700;
            padding: 12px;
            border-radius: 10px;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .btn-view {
            background: var(--imora-dark);
            color: white;
            flex: 2;
        }

        .btn-view:hover { background: #000; }

        .btn-whatsapp {
            background: transparent;
            border: 1.5px solid var(--imora-border);
            color: var(--imora-dark);
            flex: 1;
        }

        .btn-whatsapp:hover {
            background: var(--imora-accent);
            color: white;
            border-color: var(--imora-accent);
        }

        /* =========================================
           NAVIGATION & PAGINATION
           ========================================= */
        .swiper-nav-wrapper {
            position: absolute;
            top: 45%;
            width: 100%;
            left: 0;
            display: flex;
            justify-content: space-between;
            padding: 0 1%;
            pointer-events: none;
            z-index: 10;
        }

        .swiper-button-prev-custom, .swiper-button-next-custom {
            pointer-events: auto;
            background: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--imora-dark);
            font-size: 2.2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: var(--transition);
        }

        .swiper-button-prev-custom:hover, .swiper-button-next-custom:hover {
            color: var(--imora-accent);
            transform: scale(1.1);
        }

        .swiper-pagination-bullet-active {
            background: var(--imora-accent) !important;
            width: 20px !important;
            border-radius: 10px !important;
        }

        /* Responsive Fixes */
        @media (max-width: 768px) {
            .swiper-nav-wrapper { display: none; }
            .template-image { height: 380px; }
            .section-title h2 { font-size: 1.8rem; }
        }
        
/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 480px) {
    .template-basic .template-image {
        height: 280px;
    }

    .template-basic .template-btn {
        font-size: 0.75rem;
    }
}

/* =========================================
   SECTION & GRID STANDARD
   ========================================= */
.template-standard {
    padding: 60px 5%;
    background: #ffffff;
}

.template-standard .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.template-standard .template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto;
    align-items: stretch;
}

/* =========================================
   CARD STRUCTURE
   ========================================= */
.template-standard .template-card {
    background: #ffffff;
    border-radius: var(--tb-radius);
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.template-standard .template-card:hover {
    transform: translateY(-10px);
}

/* =========================================
   IMAGE AREA (DIZOOM DI SINI)
   ========================================= */
.template-standard .template-image {
    width: 100%;
    height: 450px; /* Tinggi ditambah agar area gambar lebih luas */
    background: #fff;
    overflow: hidden;
}

.template-standard .template-image img {
    width: 100%;
    height: 100%;
    /* Mengubah contain menjadi cover agar gambar 'zoom' memenuhi area */
    object-fit: cover;
    /* Fokuskan ke bagian atas gambar jika itu gambar HP */
    object-position: top;
    transition: transform 0.5s ease;
}

.template-standard .template-card:hover .template-image img {
    transform: scale(1.1); /* Efek zoom tambahan saat hover */
}

/* =========================================
   CONTENT AREA
   ========================================= */
.template-standard .template-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.template-standard .template-category {
    color: var(--tb-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.template-standard h3 {
    font-size: 1.8rem;
    color: var(--tb-text-main);
    margin-bottom: 20px;
    font-weight: 700;
}

/* BOX DESKRIPSI */
.template-standard .template-features {
    background: var(--tb-bg-light);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--tb-accent);
    margin-bottom: 25px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    min-height: 110px;
}

.template-standard .template-features span {
    font-size: 0.95rem;
    color: var(--tb-text-muted);
    line-height: 1.6;
    font-style: italic;
}

/* =========================================
   BUTTON GROUP (SEJAJAR & PROPORSIONAL)
   ========================================= */
.template-standard .button-group {
    display: flex;
    gap: 10px;
    margin-top: auto;
    width: 100%;
}

.template-standard .template-btn {
    text-decoration: none;
    font-weight: 700;
    padding: 14px 5px;
    border-radius: 12px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    white-space: nowrap;
}

.template-standard .btn-view {
    background: var(--tb-primary);
    color: white;
    flex: 1.3; /* Rasio proporsional */
}

.template-standard .btn-whatsapp {
    background: var(--tb-wa);
    color: white;
    flex: 1;
}

.template-standard .template-btn:hover {
    filter: brightness(0.9);
}

.template-standard .template-btn i {
    margin-right: 6px;
    font-size: 1.1rem;
}

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 480px) {
    .template-standard .template-image {
        height: 280px;
    }

    .template-standard .template-btn {
        font-size: 0.75rem;
    }
}

        /* Stats Section */
        .stats {
            padding: 4rem 5%;
            background: var(--primary-gradient);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.95;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 5%;
            text-align: center;
            background: var(--bg-light);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            color: var(--text-dark);
        }

        .cta-section p {
            font-size: 1.15rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            z-index: 999;
            transition: var(--transition);
            text-decoration: none;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
            animation: none;
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        /* Footer */
        footer {
            background: #2d3748;
            color: white;
            padding: 3rem 5% 2rem;
        }

        footer p {
            text-align: center;
            opacity: 0.8;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            opacity: 1;
            color: #cbd5e0;
        }

        .stats-grid-smedia {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .stat-item-smedia a {
            color: white;
            transition: var(--transition);
            font-size: 1.8rem;
        }

        .stat-item-smedia a:hover {
            transform: scale(1.2);
            color: #cbd5e0;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 5rem 5%;
            background: white;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border: 1px solid #f0f0f0;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-content {
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .author-info h4 {
            font-size: 1rem;
            margin-bottom: 0.2rem;
            color: var(--text-dark);
        }

        .author-info p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* FAQ Section */
        .faq {
            padding: 5rem 5%;
            background: var(--bg-light);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-dark);
            transition: var(--transition);
        }

        .faq-question:hover {
            background: #f9f9f9;
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.5rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        .timeline {
    position: relative;
}

.timeline::before {
    height: var(--timeline-progress, 0%);
    transition: height 0.3s ease-out;
}

.timeline-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item[data-direction="left"] {
    transform: translateX(-50px) translateY(50px);
}

.timeline-item[data-direction="right"] {
    transform: translateX(50px) translateY(50px);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.timeline-dot {
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-dot.active {
    transform: scale(1);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(200, 200, 200, 0.2);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(200, 200, 200, 0.1),
                    0 0 0 12px rgba(200, 200, 200, 0.05);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

        /* Newsletter Section */
        .newsletter {
            padding: 5rem 5%;
            background: var(--primary-gradient);
            color: white;
            text-align: center;
        }

        .newsletter h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
        }

        .newsletter p {
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
            opacity: 0.95;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 1rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            border: none;
            font-size: 1rem;
            outline: none;
        }

        .newsletter-btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            border: none;
            background: white;
            color: var(--primary-color);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        }

        .newsletter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
        }

        /* Preview Modal Styles */
        .preview-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal-content {
            background-color: white;
            border-radius: 15px;
            width: 90%;
            max-width: 900px;
            height: 85vh;
            max-height: 700px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: modalFadeIn 0.3s ease;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
        }

        .modal-header h3 {
            margin: 0;
            color: var(--text-dark);
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #777;
            transition: var(--transition);
        }

        .close-modal:hover {
            color: var(--primary-color);
        }

        .modal-body {
            flex: 1;
            padding: 0;
            overflow: hidden;
        }

        .iframe-container {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #previewFrame {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 4rem 5% 3rem;
                min-height: 500px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .template-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 1.5rem;
            }

            .stat-item h3 {
                font-size: 2.5rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .modal-content {
                width: 95%;
                height: 90vh;
            }
        }

        @media (max-width: 640px) {
            nav {
                padding: 1rem 4%;
            }

            .logo {
                font-size: 1.3rem;
            }

            .logo img {
                height: 32px;
            }

            .hero {
                padding: 3rem 4% 2.5rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .templates, .features, .stats, .cta-section, .testimonials, .faq, .newsletter {
                padding: 3rem 4%;
            }

            .template-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .cta-section h2 {
                font-size: 1.8rem;
            }

            .newsletter h2 {
                font-size: 1.8rem;
            }

            .modal-content {
                width: 100%;
                height: 95vh;
                border-radius: 0;
            }

            .modal-header {
                padding: 10px 15px;
            }

            .modal-header h3 {
                font-size: 1.2rem;
            }
        }
