
        /* ===== MAIN STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --qs-green: #0F5E4A;
            --qs-green-dark: #0A3D30;
            --qs-green-light: #1E7B64;
            --qs-green-soft: #E8F3F0;
            --qs-gold: #D4AF37;
            --qs-gold-dark: #B4942C;
            --qs-gold-soft: #FEF7E6;
            --qs-bg-light: #FFFFFF;
            --qs-bg-offwhite: #FDFCF9;
            --qs-text-dark: #1A2E2A;
            --qs-text-muted: #5A6E68;
            --qs-border: #E8E2D4;
            --qs-gradient: linear-gradient(135deg, #0F5E4A 0%, #D4AF37 100%);
            --qs-btn-gradient: linear-gradient(135deg, #0F5E4A, #1A6B55);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--qs-bg-light);
            color: var(--qs-text-dark);
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
        }

        html {
            overflow-x: hidden;
            width: 100%;
            scroll-behavior: smooth;
        }

        .container, .container-fluid {
            width: 100%;
            max-width: 100%;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (min-width: 1400px) {
            .container {
                max-width: 1320px;
            }
        }

        .row {
            margin-left: 0;
            margin-right: 0;
        }

        [class*="col-"] {
            padding-left: 12px;
            padding-right: 12px;
        }

        /* Spinner */
        #spinner {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--qs-bg-light);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .custom-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(15, 94, 74, 0.1);
            border-top: 3px solid var(--qs-green);
            border-right: 3px solid var(--qs-gold);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

        /* Navbar */
        .navbar-sama {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--qs-border);
            box-shadow: 0 2px 12px rgba(0,0,0,0.03);
            position: relative;
            z-index: 100;
        }
        .navbar-brand {
            padding: 0;
            margin: 0;
            display: flex;
            align-items: center;
            flex-shrink: 0;
            margin-left: 40px;
        }
        .navbar-brand img {
            height: 120px;
            width: auto;
            max-height: 120px;
            transition: transform 0.2s ease;
            display: block;
        }
        .navbar-brand img:hover {
            transform: scale(1.02);
        }
        @media (max-width: 992px) {
            .navbar-brand {
                margin-left: 25px;
            }
            .navbar-brand img {
                height: 80px;
                max-height: 80px;
            }
        }
        @media (max-width: 768px) {
            .navbar-brand {
                margin-left: 15px;
            }
            .navbar-brand img {
                height: 65px;
                max-height: 65px;
            }
        }
        .navbar-toggler {
            border: none;
            background: transparent;
            padding: 0;
            margin-right: 20px;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        .navbar-nav {
            flex-direction: row;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.2rem;
        }
        .nav-link-sama {
            color: var(--qs-text-dark) !important;
            font-weight: 500;
            padding: 0.5rem 0.9rem !important;
            transition: all 0.25s;
            border-radius: 8px;
            font-size: 0.85rem;
            white-space: nowrap;
        }
        @media (max-width: 1200px) {
            .nav-link-sama {
                padding: 0.4rem 0.6rem !important;
                font-size: 0.8rem;
            }
        }
        @media (max-width: 992px) {
            .nav-link-sama {
                padding: 0.4rem 0.5rem !important;
                font-size: 0.75rem;
            }
        }
        @media (max-width: 768px) {
            .navbar-nav {
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                gap: 0;
            }
            .nav-link-sama {
                white-space: normal;
                text-align: center;
                padding: 0.6rem !important;
                font-size: 0.9rem;
            }
            .navbar-collapse {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                padding: 1rem;
                border-radius: 0 0 1rem 1rem;
                box-shadow: 0 12px 24px rgba(0,0,0,0.1);
                border-top: 1px solid var(--qs-border);
                max-height: 70vh;
                overflow-y: auto;
            }
        }
        .nav-link-sama:hover, .nav-link-sama.active {
            color: var(--qs-gold) !important;
            background: rgba(212, 175, 55, 0.1);
        }

        /* Hero Section Button - Keep Original Gold Gradient */
        .btn-primary-hero {
            background: linear-gradient(135deg, #D4AF37, #C49F2E);
            color: #0A1A15;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0.75rem 1.8rem;
            font-size: 0.85rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            transition: all 0.3s;
            border: none;
        }
        .btn-primary-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(212,175,55,0.4);
            background: linear-gradient(135deg, #E5C95C, #D4AF37);
            color: #0A1A15;
        }
        .btn-outline-hero {
            border: 1.5px solid var(--qs-gold);
            color: var(--qs-gold);
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(5px);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0.75rem 1.8rem;
            font-size: 0.85rem;
            transition: all 0.3s;
        }
        .btn-outline-hero:hover {
            background: var(--qs-gold);
            color: #0A1A15;
            transform: translateY(-3px);
        }

        /* All Other Buttons - Green Gradient */
        .btn-primary-sama, .btn-primary-sama-sm {
            background: var(--qs-btn-gradient);
            color: white;
            padding: 0.45rem 1.2rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            border: none;
            font-size: 0.85rem;
            white-space: nowrap;
        }
        .btn-primary-sama-sm {
            padding: 0.35rem 1rem;
            font-size: 0.8rem;
        }
        .btn-primary-sama:hover, .btn-primary-sama-sm:hover {
            background: linear-gradient(135deg, #1A6B55, #0F5E4A);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(15,94,74,0.3);
            color: white;
        }
        .btn-outline-sama {
            background: transparent;
            border: 1.5px solid var(--qs-gold);
            color: var(--qs-gold-dark);
            padding: 0.45rem 1.2rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            white-space: nowrap;
        }
        .btn-outline-sama:hover {
            background: var(--qs-gold);
            color: white;
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            .btn-primary-sama, .btn-outline-sama, .btn-primary-sama-sm {
                white-space: normal;
                text-align: center;
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(125deg, #0A1A15 0%, #0D241E 50%, #0F2E26 100%);
            padding: 80px 0;
        }
        .hero-bg-full {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.25;
        }
        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.06"><path fill="none" stroke="%23D4AF37" stroke-width="0.8" d="M100,10 L190,55 L190,145 L100,190 L10,145 L10,55 Z M100,40 L160,70 L160,130 L100,160 L40,130 L40,70 Z M100,70 L130,85 L130,115 L100,130 L70,115 L70,85 Z"/><circle cx="100" cy="100" r="25" fill="none" stroke="%23D4AF37" stroke-width="0.5"/></svg>');
            background-repeat: repeat;
            background-size: 120px;
            pointer-events: none;
            z-index: 1;
        }
        .hero-ornament {
            position: absolute;
            top: 0;
            right: 0;
            width: 45%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(212,175,55,0.12) 0%, transparent 70%);
            pointer-events: none;
            z-index: 1;
        }
        .hero-section .container {
            position: relative;
            z-index: 10;
        }
        .hero-project-name {
            text-align: center;
            margin-bottom: 1rem;
            animation: fadeInDown 0.8s ease-out;
        }
        .main-title {
            font-size: 2.5rem;
            font-weight: 500;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #F5D76E 80%, #FFFFFF 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 8px rgba(0,0,0,0.15);
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', serif;
        }
        .main-title::before {
            content: '❝';
            position: absolute;
            top: -25px;
            left: -25px;
            font-size: 1.8rem;
            color: var(--qs-gold);
            opacity: 0.4;
            font-family: serif;
            font-weight: 300;
        }
        .main-title::after {
            content: '❞';
            position: absolute;
            bottom: -25px;
            right: -25px;
            font-size: 1.8rem;
            color: var(--qs-gold);
            opacity: 0.4;
            font-family: serif;
            font-weight: 300;
        }
        .title-sub {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-top: 0.5rem;
            word-break: break-word;
            font-weight: 300;
        }
        @media (min-width: 480px) {
            .main-title { font-size: 3rem; }
            .title-sub { font-size: 0.85rem; }
            .main-title::before { font-size: 2rem; left: -30px; top: -30px; }
            .main-title::after { font-size: 2rem; right: -30px; bottom: -30px; }
        }
        @media (min-width: 640px) {
            .main-title { font-size: 3.5rem; }
        }
        @media (min-width: 768px) {
            .main-title { font-size: 4rem; }
            .title-sub { font-size: 0.9rem; letter-spacing: 4px; }
            .main-title::before { font-size: 2.2rem; left: -35px; top: -35px; }
            .main-title::after { font-size: 2.2rem; right: -35px; bottom: -35px; }
        }
        @media (min-width: 992px) {
            .main-title { font-size: 4.8rem; }
        }
        @media (min-width: 1200px) {
            .main-title { font-size: 5.2rem; }
        }
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero-desc-simple {
            text-align: center;
            max-width: 700px;
            margin: 1.2rem auto;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.9rem;
            line-height: 1.5;
            animation: fadeInUp 0.8s ease-out 0.2s both;
            font-family: 'Playfair Display', serif;
            font-style: italic;
            padding: 0 15px;
        }
        @media (min-width: 768px) {
            .hero-desc-simple { font-size: 1rem; margin: 1.5rem auto; }
        }
        @media (min-width: 992px) {
            .hero-desc-simple { font-size: 1.1rem; }
        }
        .hero-btn-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero-stats-simple {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 1.8rem;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }
        .hero-stat-simple {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(8px);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            border: 1px solid rgba(212,175,55,0.2);
        }
        .hero-stat-simple i {
            font-size: 1rem;
            color: var(--qs-gold);
        }
        .hero-stat-simple span {
            font-size: 0.75rem;
            color: white;
        }
        .hero-stat-simple strong {
            font-weight: 700;
            margin-right: 3px;
        }
        @media (min-width: 768px) {
            .hero-stats-simple { gap: 1.5rem; margin-top: 2rem; }
            .hero-stat-simple { gap: 10px; padding: 0.6rem 1.3rem; }
            .hero-stat-simple i { font-size: 1.2rem; }
            .hero-stat-simple span { font-size: 0.85rem; }
        }

        /* Stats Container */
        .stats-container {
            margin-top: -30px;
            position: relative;
            z-index: 20;
        }
        @media (min-width: 768px) {
            .stats-container { margin-top: -40px; }
        }
        .stats-grid-modern {
            background: white;
            border-radius: 1.5rem;
            padding: 1rem;
            border: 1px solid var(--qs-border);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }
        @media (min-width: 768px) {
            .stats-grid-modern { padding: 1.2rem 1.8rem; border-radius: 2rem; }
        }
        .stat-item {
            text-align: center;
            padding: 0.5rem;
        }
        .stat-number-lg {
            font-size: 1rem;
            font-weight: 800;
            background: var(--qs-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        @media (min-width: 768px) {
            .stat-number-lg { font-size: 1.3rem; }
        }
        .stat-label-sm {
            font-size: 0.65rem;
            color: var(--qs-text-muted);
            font-weight: 500;
        }

        /* Card Style */
        .card-modern {
            background: white;
            border-radius: 1.5rem;
            padding: 1.5rem;
            border: 1px solid var(--qs-border);
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }
        @media (min-width: 768px) {
            .card-modern { padding: 2rem; border-radius: 2rem; }
        }

        /* Watch And Enjoy Section */
        .watch-enjoy-img {
            max-width: 280px;
            width: 100%;
            transition: transform 0.3s ease;
        }
        .watch-enjoy-img:hover {
            transform: scale(1.02);
        }
        @media (min-width: 576px) {
            .watch-enjoy-img { max-width: 320px; }
        }
        @media (min-width: 992px) {
            .watch-enjoy-img { max-width: 400px; }
        }

        /* ===== DOWNLOAD APPS SECTION - REDESIGNED & ATTRACTIVE ===== */
        .apps-section {
            padding: 4rem 0;
            background: linear-gradient(165deg, #FFFFFF 0%, #F8F9FA 100%);
            position: relative;
            overflow: hidden;
        }
        .apps-section::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -10%;
            width: 60%;
            height: 120%;
            background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 70%);
            pointer-events: none;
        }
        .apps-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -5%;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle, rgba(15,94,74,0.03) 0%, transparent 70%);
            pointer-events: none;
        }
        .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 2;
        }
        .section-header h2 {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #0F5E4A, #1E7B64);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }
        .section-header .section-subtitle {
            color: var(--qs-text-muted);
            font-size: 0.9rem;
        }
        .underline {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--qs-gold), #0F5E4A);
            margin: 1rem auto 0;
            border-radius: 4px;
        }
        .apps-grid-modern {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            position: relative;
            z-index: 2;
        }
        @media (min-width: 576px) {
            .apps-grid-modern { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
        }
        @media (min-width: 768px) {
            .apps-grid-modern { grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
        }
        @media (min-width: 992px) {
            .apps-grid-modern { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
        }
        .app-card-modern {
            background: white;
            border-radius: 1.5rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: 1px solid var(--qs-border);
            box-shadow: 0 8px 20px rgba(0,0,0,0.04);
            position: relative;
            overflow: hidden;
        }
        .app-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--qs-green), var(--qs-gold), var(--qs-green));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        .app-card-modern:hover::before {
            transform: scaleX(1);
        }
        .app-card-modern:hover {
            transform: translateY(-8px);
            border-color: var(--qs-gold);
            box-shadow: 0 20px 35px rgba(15,94,74,0.12);
        }
        .app-icon-wrapper {
            background: linear-gradient(135deg, var(--qs-green-soft), #F0F7F4);
            width: 85px;
            height: 85px;
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: all 0.3s ease;
        }
        .app-card-modern:hover .app-icon-wrapper {
            background: linear-gradient(135deg, var(--qs-green-light), var(--qs-green));
            transform: scale(1.02);
        }
        .app-icon-wrapper img {
            width: 50px;
            transition: all 0.3s ease;
        }
        .app-card-modern:hover .app-icon-wrapper img {
        }
        @media (min-width: 768px) {
            .app-icon-wrapper { width: 90px; height: 90px; }
            .app-icon-wrapper img { width: 55px; }
        }
        .app-card-modern h5 {
            font-weight: 700;
            margin: 0.8rem 0;
            font-size: 1rem;
            color: var(--qs-text-dark);
        }
        @media (min-width: 768px) {
            .app-card-modern h5 { font-size: 1.1rem; }
        }
        .app-buttons {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }
        .btn-app-modern {
            background: var(--qs-green-soft);
            padding: 0.45rem 1rem;
            border-radius: 40px;
            font-size: 0.7rem;
            font-weight: 600;
            text-decoration: none;
            color: var(--qs-green);
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.25s;
        }
        .btn-app-modern i {
            font-size: 0.7rem;
        }
        .btn-app-modern:hover {
            background: var(--qs-btn-gradient);
            color: white;
            transform: translateY(-2px);
        }
        @media (min-width: 768px) {
            .btn-app-modern { padding: 0.5rem 1.2rem; font-size: 0.75rem; }
        }

        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(165deg, #F8F9FA 0%, #F0F2F5 100%);
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        .pricing-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 150%;
            background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .pricing-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 60%;
            height: 120%;
            background: radial-gradient(circle, rgba(15,94,74,0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        .pricing-grid-modern {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.8rem;
            position: relative;
            z-index: 2;
        }
        @media (min-width: 576px) {
            .pricing-grid-modern { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
        }
        @media (min-width: 992px) {
            .pricing-grid-modern { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
        }
        @media (min-width: 1200px) {
            .pricing-grid-modern { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
        }
        .pricing-card-modern {
            background: white;
            border-radius: 1.5rem;
            padding: 1.8rem 1.2rem;
            text-align: center;
            transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: none;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            overflow: hidden;
        }
        .pricing-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0F5E4A, #D4AF37, #0F5E4A);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        .pricing-card-modern:hover::before {
            transform: scaleX(1);
        }
        .pricing-card-modern:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 45px rgba(15,94,74,0.15), 0 0 0 1px rgba(212,175,55,0.2);
        }
        .price-amount-modern {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--qs-green);
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #0F5E4A, #1E7B64);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        @media (min-width: 768px) {
            .price-amount-modern { font-size: 2.4rem; }
        }
        .price-amount-modern small {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--qs-text-muted);
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
            color: #7A8B85;
        }
        .price-features-modern {
            list-style: none;
            padding: 0;
            margin: 1.2rem 0;
            text-align: left;
            display: inline-block;
            width: 100%;
        }
        .price-features-modern li {
            margin: 0.7rem 0;
            font-size: 0.8rem;
            color: var(--qs-text-dark);
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
        }
        @media (min-width: 768px) {
            .price-features-modern li { font-size: 0.85rem; margin: 0.8rem 0; }
        }
        .price-features-modern li i {
            color: var(--qs-gold);
            font-size: 0.85rem;
            width: 22px;
            text-align: center;
        }
        .btn-price-modern {
            background: var(--qs-btn-gradient);
            color: white;
            padding: 0.7rem 1rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            width: 100%;
            font-size: 0.9rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            letter-spacing: 0.5px;
            margin-top: 0.5rem;
        }
        .btn-price-modern:hover {
            background: linear-gradient(135deg, #1A6B55, #0F5E4A);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(15,94,74,0.3);
        }

        /* FAQ */
        .faq-item-modern {
            background: white;
            border-radius: 1rem;
            margin-bottom: 0.8rem;
            border: 1px solid var(--qs-border);
            overflow: hidden;
        }
        .faq-question-modern {
            padding: 1rem;
            font-weight: 700;
            cursor: pointer;
            background: white;
            transition: 0.2s;
            color: var(--qs-text-dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }
        @media (min-width: 768px) {
            .faq-question-modern { padding: 1.2rem 1.5rem; font-size: 1rem; }
        }
        .faq-question-modern:hover {
            background: var(--qs-gold-soft);
        }
        .faq-answer-modern {
            padding: 0 1rem 1rem 1rem;
            display: none;
            color: var(--qs-text-muted);
            border-top: 1px solid var(--qs-border);
            line-height: 1.5;
            font-size: 0.85rem;
        }
        @media (min-width: 768px) {
            .faq-answer-modern { padding: 0 1.5rem 1.2rem 1.5rem; }
        }
        .faq-item-modern.active .faq-answer-modern {
            display: block;
        }

        /* Feature Icons */
        .feature-icons-grid {
            display: flex;
            justify-content: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        @media (min-width: 768px) {
            .feature-icons-grid { gap: 2rem; }
        }
        .feature-icon-item img {
            width: 55px;
            opacity: 0.8;
        }
        @media (min-width: 768px) {
            .feature-icon-item img { width: 70px; }
        }

        /* Footer */
        .footer-modern {
            background: var(--qs-green-dark);
            color: #CBD5D0;
            padding: 3rem 0 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }
        .footer-heading {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: var(--qs-gold);
            letter-spacing: 0.5px;
        }
        .footer-links-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links-list li {
            margin-bottom: 0.6rem;
        }
        .footer-links-list a {
            color: #CBD5D0;
            text-decoration: none;
            transition: all 0.25s ease;
            font-size: 0.85rem;
            display: inline-block;
        }
        .footer-links-list a:hover {
            color: var(--qs-gold);
            transform: translateX(3px);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.15);
            font-size: 0.8rem;
            color: #8BA39A;
        }
        .footer-bottom a {
            color: var(--qs-gold);
            text-decoration: none;
            transition: 0.2s;
        }
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .footer-modern { padding: 2rem 0 1.5rem; }
            .footer-heading { font-size: 1rem; margin-bottom: 1rem; }
            .footer-links-list a { font-size: 0.75rem; }
        }

        /* WhatsApp & Back to Top */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 99;
        }
        .whatsapp-float img {
            width: 48px;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .back-to-top {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: var(--qs-gold);
            color: var(--qs-green-dark);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            z-index: 99;
            transition: 0.2s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .back-to-top:hover {
            background: var(--qs-green);
            color: white;
        }

        img, iframe, video {
            max-width: 100%;
            height: auto;
        }
