/*
Theme Name: Emiration SaaS
Theme URI: 
Author: EmirAuctions
Description: Production-ready investment platform landing. Golden dark theme with Bootstrap 5.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: emiration-saas
*/

        :root {
            --base-1: #d4af37;
            --base-2: #b8941f;
            --gradient-1: linear-gradient(to left, var(--base-2), var(--base-1), var(--base-2));
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #0a0a0a;
            color: #f5f5f5;
            overflow-x: hidden;
        }

        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 25px 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .logo {
            font-size: 32px;
            font-weight: 900;
            background: var(--gradient-1);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 3px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
            animation: logoShine 3s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
            transition: all 0.3s ease;
            filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
        }

        .logo::before {
            content: 'EMIRAUCTIONS';
            position: absolute;
            top: 0;
            left: 0;
            background: var(--gradient-1);
            opacity: 0.3;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            z-index: -1;
            filter: blur(10px);
            animation: logoGlow 2s ease-in-out infinite alternate;
        }

        .logo:hover {
            transform: scale(1.05);
            animation: logoShine 1.5s ease-in-out infinite;
        }

        @keyframes logoShine {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes logoGlow {
            0% {
                opacity: 0.5;
                transform: scale(1);
            }
            100% {
                opacity: 0.8;
                transform: scale(1.02);
            }
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            width: 100%;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 44px;
            height: 44px;
            padding: 10px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            -webkit-tap-highlight-color: transparent;
        }

        .nav-toggle:hover,
        .nav-toggle:focus {
            background: rgba(212, 175, 55, 0.2);
            border-color: #d4af37;
            outline: none;
        }

        .nav-toggle-bar {
            display: block;
            width: 22px;
            height: 2px;
            background: #d4af37;
            border-radius: 1px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
            justify-content: flex-end;
        }

        .nav-links a {
            color: #f5f5f5;
            text-decoration: none;
            font-size: 15px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #d4af37;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #d4af37;
            transition: width 0.3s ease;
        }

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

        .btn-primary {
            background: linear-gradient(135deg, #d4af37 0%, #c9a532 100%);
            color: #0a0a0a;
            padding: 12px 35px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
        }

        .hero {
            /* min-height: 100vh; */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 150px 60px 70px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.1); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: left;
            margin-right: -110px;
        }

        .hero-screenshots {
            position: relative;
            z-index: 1;
            height: 600px;
            padding: 30px 0;
            margin-right: -60px;
            margin-left: 150px;
        }

        .referral-screenshots {
            margin-right: 0px;
            margin-left: 70px;
        }

        .referral-screenshots .screenshot-item:nth-child(2) {
            top: 80px;
            left: 60px;
        }

        .referral-screenshots .screenshot-item:nth-child(3) {
            top: 160px;
            left: 120px;
        }

        .screenshot-item {
            position: absolute;
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease, z-index 0.3s ease;
            z-index: 1;
            border: 3px solid rgba(212, 175, 55, 0.4);
            background: rgba(10, 10, 10, 0.5);
            padding: 4px;
        }

        .screenshot-item img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
            border-radius: 8px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .screenshot-item:nth-child(1) {
            top: 0;
            left: 0;
            z-index: 3;
        }

        .screenshot-item:nth-child(2) {
            top: 50px;
            left: 35px;
            z-index: 2;
        }

        .screenshot-item:nth-child(3) {
            top: 100px;
            left: 70px;
            z-index: 1;
        }

        .screenshot-item:hover {
            transform: translateY(-10px) scale(1.02);
            z-index: 10;
        }

        .screenshot-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 50%, rgba(10, 10, 10, 0.3) 100%);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b8b8b8;
            font-size: 16px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
        }

        .screenshot-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a1a1a"/><path d="M30 40h40v20H30z" fill="%23333"/><circle cx="50" cy="50" r="8" fill="%23444"/></svg>') repeat;
            opacity: 0.3;
        }

        .screenshot-placeholder span {
            position: relative;
            z-index: 1;
            color: #d4af37;
            font-weight: 600;
        }

        .hero-badge {
            display: inline-block;
            padding: 10px 25px;
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid rgba(212, 175, 55, 0.4);
            border-radius: 50px;
            color: #d4af37;
            font-size: 12px;
            letter-spacing: 2px;
            margin-bottom: 30px;
            animation: fadeInDown 1s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
        }

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

        .hero h1 {
            font-size: 70px;
            line-height: 1.3;
            margin-bottom: 20px;
            background: var(--gradient-1);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease 0.2s both, logoShine 3s ease-in-out infinite;
            font-weight: 800;
            letter-spacing: -0.02em;
            text-align: left;
            text-transform: uppercase;
            font-family: Arial, Helvetica, sans-serif;
        }

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

        .hero p {
            font-size: 18px;
            color: #b8b8b8;
            margin-bottom: 40px;
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.4s both;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            margin: 0;
            border-left: 2px solid #d2ad36;
            padding: 15px 0px 15px 25px;
            background: linear-gradient(69deg, #d2ad362b, transparent);
        }

        .hero-pricing-badge-inline {
            position: relative;
            display: inline-block;
            margin: 0 8px;
            vertical-align: middle;
        }

        .hero-pricing-badge {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px 25px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
            border: 2px solid rgba(212, 175, 55, 0.4);
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
            /* animation: fadeInUp 1s ease 0.4s both, badgeRotate 0.5s ease 0.6s both; */
            /* transform: rotate(-3deg); */
            transform-origin: center;
            z-index: 1;
            margin-top: -20px;
        }

        @keyframes badgeRotate {
            from {
                transform: rotate(-8deg) scale(0.9);
                opacity: 0;
            }
            to {
                transform: rotate(-3deg) scale(1);
                opacity: 1;
            }
        }

        .hero-pricing-badge:hover {
            transform: rotate(-1deg) scale(1.05);
            transition: transform 0.3s ease;
        }

        .hero-pricing-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
            animation: shine 3s infinite;
            z-index: 0;
        }

        @keyframes shine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        .hero-pricing-main {
            font-size: 42px;
            font-weight: 800;
            background: var(--gradient-1);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 6px;
            position: relative;
            z-index: 10;
            animation: logoShine 3s ease-in-out infinite;
        }

        .hero-pricing-sub {
            font-size: 12px;
            color: var(--base-1);
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 700;
            position: relative;
            z-index: 10;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
            opacity: 1;
            -webkit-text-fill-color: var(--base-1);
        }

        .hero-key-points {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            animation: fadeInUp 1s ease 0.5s both;
        }

        .hero-key-point {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50px;
            color: #d4af37;
            font-size: 15px;
        }

        .hero-buttons {
            animation: fadeInUp 1s ease 0.6s both;
        }

        .btn-secondary {
            background: transparent;
            color: #d4af37;
            padding: 12px 35px;
            border: 2px solid #d4af37;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-2px);
        }

        .contact-section {
            padding: 50px 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .contact-section h3 {
            font-size: 36px;
            font-weight: 700;
            color: #f5f5f5;
            margin-bottom: 50px;
            text-align: center;
            background: var(--gradient-1);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: logoShine 3s ease-in-out infinite;
        }

        .contact-icons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            flex-direction: row;
        }

        .contact-icon {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 15px;
            padding: 15px 25px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
            overflow: hidden;
            position: relative;
            text-decoration: none;
            min-width: 200px;
        }

        .contact-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .contact-icon:hover {
            transform: translateY(-5px) scale(1.1);
            border-color: #d4af37;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .contact-icon:hover::before {
            opacity: 1;
        }

        .contact-icon img {
            width: 35px;
            height: 35px;
            object-fit: contain;
            position: relative;
            z-index: 1;
            filter: none;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .contact-icon:hover img {
            transform: scale(1.1);
        }

        .contact-icon-text {
            color: #f5f5f5;
            font-size: 16px;
            font-weight: 500;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .contact-icon:hover .contact-icon-text {
            color: #d4af37;
        }

        .section-separator {
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .section-separator::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: repeating-linear-gradient(
                90deg,
                transparent,
                transparent 15px,
                rgba(212, 175, 55, 0.6) 15px,
                rgba(212, 175, 55, 0.6) 20px
            );
            transform: translateY(-50%);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }

        .section-separator::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: radial-gradient(circle, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.98) 60%, transparent 100%);
            border: 3px dashed rgba(212, 175, 55, 0.7);
            border-radius: 50%;
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.5), 0 0 50px rgba(212, 175, 55, 0.2), inset 0 0 15px rgba(212, 175, 55, 0.1);
        }

        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            background: var(--gradient-1);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: logoShine 3s ease-in-out infinite;
        }

        .section-title p {
            font-size: 18px;
            color: #b8b8b8;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .comparison-section {
            padding: 50px 60px;
            background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
        }

        .quote-box {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.5) 100%);
            border-left: 4px solid #d4af37;
            padding: 30px 40px;
            /* margin: 40px auto 60px; */
            max-width: 900px;
            border-radius: 10px;
            font-style: italic;
            color: #b8b8b8;
            font-size: 18px;
            line-height: 1.8;
        }

        .comparison-table {
            width: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0.5) 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            margin-top: 40px;
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .comparison-table th {
            padding: 20px 30px;
            text-align: left;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
            color: #d4af37;
            font-size: 16px;
            font-weight: 700;
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .comparison-table th:first-child {
            border-top-left-radius: 20px;
        }

        .comparison-table th:last-child {
            border-top-right-radius: 20px;
        }

        .comparison-table td {
            padding: 20px 30px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            color: #b8b8b8;
            font-size: 16px;
            line-height: 1.6;
        }

        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }

        .comparison-table td:first-child {
            font-weight: bold;
            color: #f5f5f5;
        }

        .comparison-table .feature-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
            border-radius: 8px;
            font-size: 18px;
            flex-shrink: 0;
        }

        .comparison-table .check {
            color: #4ade80;
            font-size: 15px;
            margin-right: 10px;
            font-weight: bold;
        }

        .comparison-table .cross {
            color: #ef4444;
            font-size: 12px;
            margin-right: 10px;
            font-weight: bold;
        }

        .comparison-table tbody tr {
            transition: all 0.3s ease;
        }

        .comparison-table tbody tr:hover {
            background: rgba(212, 175, 55, 0.05);
        }

        .comparison-table td {
            vertical-align: middle;
        }

        .gallery-section {
            padding: 50px 60px;
            background: radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
        }

        .gallery-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .gallery-tab-btn {
            padding: 12px 30px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 50px;
            color: #b8b8b8;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .gallery-tab-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
            transition: left 0.3s ease;
        }

        .gallery-tab-btn:hover::before {
            left: 0;
        }

        .gallery-tab-btn:hover {
            border-color: #d4af37;
            color: #f5f5f5;
            transform: translateY(-2px);
        }

        .gallery-tab-btn.active {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
            border-color: #d4af37;
            color: #d4af37;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
        }

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

        .gallery-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .gallery-content.active {
            display: block;
        }

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

        .gallery-masonry {
            column-count: 4;
            column-gap: 20px;
            column-fill: balance;
        }
        
        @media (max-width: 1400px) {
            .gallery-masonry {
                column-count: 3;
            }
        }
        
        @media (max-width: 768px) {
            .gallery-masonry {
                column-count: 2;
            }
        }
        
        @media (max-width: 480px) {
            .gallery-masonry {
                column-count: 1;
            }
        }

        .gallery-item {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0.5) 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 15px;
            overflow: visible;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: scale(0.9);
            cursor: pointer;
            position: relative;
            display: flex;
            flex-direction: column;
            height: auto;
            break-inside: avoid;
            margin-bottom: 20px;
            page-break-inside: avoid;
        }

        .gallery-item-image-wrapper {
            width: 100%;
            max-height: 300px;
            overflow: hidden;
            border-radius: 15px 15px 0 0;
            position: relative;
        }

        .gallery-item-hover-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(212, 175, 55, 0.3) 100%);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 6px;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
            border-radius: 15px 15px 0 0;
        }

        .gallery-item-image-wrapper:hover .gallery-item-hover-overlay {
            opacity: 1;
        }

        .gallery-item-hover-overlay-icon {
            font-size: 24px;
            color: #d4af37;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
            animation: pulse 2s ease-in-out infinite;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-item-hover-overlay-icon i {
            font-size: inherit;
            color: inherit;
        }

        .gallery-item-hover-overlay-text {
            color: var(--base-1);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.9;
            }
        }

        .gallery-item.visible {
            opacity: 1;
            transform: scale(1);
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: #d4af37;
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.4s ease;
            object-fit: cover;
            object-position: center;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-item-caption {
            padding: 10px 20px;
            color: #d4af37;
            font-size: 14px;
            text-align: center;
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid rgba(212, 175, 55, 0.4);
            border-radius: 50px;
            margin: 15px;
            font-weight: 600;
            letter-spacing: 0.5px;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .gallery-placeholder {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 50%, rgba(10, 10, 10, 0.3) 100%);
            border: none;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d4af37;
            font-size: 16px;
            font-weight: 600;
        }

        .gallery-modal {
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        .gallery-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .gallery-modal-content {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%) scale(0.9);
            width: 90%;
            max-width: 90%;
            height: 100%;
            padding: 80px 0 20px;
            overflow: hidden;
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
            box-sizing: border-box;
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        .gallery-modal.active .gallery-modal-content {
            transform: translateX(-50%) scale(1);
            opacity: 1;
        }

        .gallery-modal-content img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            transition: transform 0.1s ease-out;
            will-change: transform;
        }

        /* Hide scrollbar */
        .gallery-modal-content::-webkit-scrollbar {
            display: none;
        }
        
        .gallery-modal-content {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .gallery-modal-close {
            position: fixed;
            top: 25px;
            right: 25px;
            color: #d4af37;
            font-size: 0;
            font-weight: bold;
            cursor: pointer;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
            border: 2px solid rgba(212, 175, 55, 0.5);
            border-radius: 50%;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10001;
            opacity: 0;
            transform: scale(0.8);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2), 0 0 15px rgba(212, 175, 55, 0.1);
            backdrop-filter: blur(10px);
        }

        .gallery-modal-close::before {
            content: 'âœ•';
            font-size: 28px;
            line-height: 1;
            color: #d4af37;
            font-weight: 300;
            display: block;
        }

        .gallery-modal.active .gallery-modal-close {
            opacity: 1;
            transform: scale(1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
        }

        .gallery-modal-close:hover {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.15) 100%);
            border-color: #d4af37;
            transform: scale(1.1) rotate(90deg);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4), 0 0 25px rgba(212, 175, 55, 0.3);
        }

        .gallery-modal-close:hover::before {
            color: var(--base-1);
            transform: scale(1.1);
        }

        .features {
            padding: 50px 60px;
            position: relative;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.2), transparent);
        }


        .feature-card {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0.5) 100%);
            padding: 30px 25px;
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .feature-card:hover::before {
            transform: translateX(100%);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: #d4af37;
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: linear-gradient(135deg, #d4af37 0%, #c9a532 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .feature-card-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .feature-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #f5f5f5;
            line-height: 1.4;
            display: block;
        }

        .feature-card p {
            color: #b8b8b8;
            line-height: 1.7;
            font-size: 14px;
            margin: 0;
            display: block;
        }

        /* Crypto section specific feature cards */
        .crypto-feature-card {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0.5) 100%);
            padding: 30px 25px;
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            height: 100%;
        }

        .crypto-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .crypto-feature-card:hover::before {
            transform: translateX(100%);
        }

        .crypto-feature-card:hover {
            transform: translateY(-5px);
            border-color: #d4af37;
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
        }

        .crypto-feature-card h3 {
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #f5f5f5;
            line-height: 1.4;
            display: block;
            background: var(--gradient-1);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: logoShine 3s ease-in-out infinite;
        }

        .crypto-feature-card p {
            color: #b8b8b8;
            line-height: 1.8;
            font-size: 15px;
            margin: 0;
            display: block;
        }


        .referral-level-card {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.5) 100%);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
        }

        .referral-level-card:hover {
            transform: translateY(-10px);
            border-color: #d4af37;
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
        }

        .referral-level-number {
            font-size: 72px;
            font-weight: bold;
            background: var(--gradient-1);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            animation: logoShine 3s ease-in-out infinite;
        }

        .referral-level-details {
            list-style: none;
            margin-top: 20px;
        }

        .referral-level-details li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            color: #b8b8b8;
            display: flex;
            justify-content: space-between;
        }

        .referral-level-details li:last-child {
            border-bottom: none;
        }

        .referral-level-details .value {
            color: #d4af37;
            font-weight: bold;
        }


        .crypto-box {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0.5) 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 40px;
        }

        .crypto-box.problem {
            border-left: 4px solid #ef4444;
        }

        .crypto-box.solution {
            border-left: 4px solid #4ade80;
        }

        .crypto-box h3 {
            font-size: 24px;
            margin-bottom: 25px;
            color: #f5f5f5;
        }

        .crypto-box.problem h3 {
            color: #ef4444;
        }

        .crypto-box.solution h3 {
            color: #4ade80;
        }

        .crypto-box ul {
            list-style: none;
        }

        .crypto-box li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            color: #b8b8b8;
            font-size: 16px;
        }

        .crypto-box li:last-child {
            border-bottom: none;
        }


        .wordpress-box {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0.5) 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 40px;
        }

        .wordpress-box.advantages {
            border-left: 4px solid #4ade80;
        }

        .wordpress-box.disadvantages {
            border-left: 4px solid #ef4444;
        }

        .wordpress-box h3 {
            font-size: 24px;
            margin-bottom: 25px;
            color: #f5f5f5;
        }

        .wordpress-box.advantages h3 {
            color: #4ade80;
        }

        .wordpress-box.disadvantages h3 {
            color: #ef4444;
        }

        .wordpress-box ul {
            list-style: none;
        }

        .wordpress-box li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            color: #b8b8b8;
            font-size: 16px;
        }

        .wordpress-box li:last-child {
            border-bottom: none;
        }

        .pricing {
            padding: 50px 60px;
        }


        .pricing-card {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0.5) 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 15px;
            padding: 30px 25px;
            text-align: left;
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .pricing-card:hover::before {
            transform: translateX(100%);
        }

        .pricing-card.featured {
            border: 2px solid #d4af37;
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: #d4af37;
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
        }

        .pricing-badge {
            display: inline-block;
            padding: 4px 12px;
            background: #d4af37;
            color: #0a0a0a;
            border-radius: 15px;
            font-size: 11px;
            font-weight: bold;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .pricing-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: #f5f5f5;
            font-weight: 700;
            line-height: 1.3;
        }

        .pricing-price {
            font-size: 42px;
            font-weight: 800;
            background: var(--gradient-1);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            line-height: 1;
            animation: logoShine 3s ease-in-out infinite;
        }

        .pricing-card p {
            color: #b8b8b8;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .pricing-card ul {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            text-align: left;
            flex-grow: 1;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(10, 10, 10, 0.3) 100%);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-left: 3px solid #d4af37;
            border-radius: 10px;
            padding: 15px 18px;
        }

        .pricing-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            color: #b8b8b8;
            font-size: 13px;
            line-height: 1.5;
            display: flex;
            align-items: flex-start;
        }

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

        .pricing-card ul li .check {
            color: #d4af37;
            font-size: 12px;
            margin-right: 8px;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .testimonials {
            padding: 50px 60px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
        }


        .testimonial-card {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0.5) 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            border-color: #d4af37;
        }

        .testimonial-stars {
            color: #d4af37;
            font-size: 20px;
            margin-bottom: 20px;
        }

        .testimonial-text {
            color: #b8b8b8;
            line-height: 1.8;
            font-size: 16px;
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #d4af37 0%, #c9a532 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #0a0a0a;
        }

        .author-info h4 {
            color: #f5f5f5;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .author-info p {
            color: #b8b8b8;
            font-size: 14px;
        }

        .faq-section {
            padding: 50px 60px;
        }

        .faq-item {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0.5) 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: #d4af37;
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #f5f5f5;
            font-size: 18px;
            font-weight: bold;
        }

        .faq-question:hover {
            color: #d4af37;
        }

        .faq-question.active {
            color: #d4af37;
        }

        .faq-icon {
            transition: transform 0.3s ease;
            color: #d4af37;
            font-size: 20px;
        }

        .faq-question.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer.active {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 30px 25px;
            color: #b8b8b8;
            line-height: 1.8;
            font-size: 16px;
        }

        .cta {
            padding: 50px 40px;
            text-align: center;
            background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%, rgba(212, 175, 55, 0.05) 100%);
            opacity: 0.5;
            z-index: 0;
        }

        .cta .container {
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 18px;
            background: var(--gradient-1);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.02em;
            line-height: 1.2;
            animation: fadeInUp 1s ease 0.2s both, logoShine 3s ease-in-out infinite;
        }

        .cta p {
            font-size: 18px;
            color: #d4d4d4;
            margin-bottom: 30px;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .cta .btn-primary {
            background: linear-gradient(135deg, #d4af37 0%, #c9a532 100%);
            color: #0a0a0a;
            padding: 14px 35px;
            border: 2px solid rgba(212, 175, 55, 0.5);
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4), 0 0 15px rgba(212, 175, 55, 0.2);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .cta .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta .btn-primary:hover::before {
            left: 100%;
        }

        .cta .btn-primary:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6), 0 0 25px rgba(212, 175, 55, 0.4);
            border-color: #d4af37;
        }

        .cta .btn-primary:active {
            transform: translateY(-1px) scale(1.01);
        }

        .cta-button-wrapper {
            margin-top: 15px;
        }

        .footer {
            padding: 40px 0;
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, #0a0a0a 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.15);
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
        }

        .footer-brand h3 {
            font-weight: 800;
            background: var(--gradient-1);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
            animation: logoShine 3s ease-in-out infinite;
        }

        .footer-bottom {
            color: #b8b8b8;
            font-size: 13px;
            letter-spacing: 0.5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .social-links a {
            color: #b8b8b8;
            text-decoration: none;
            font-size: 18px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            color: #d4af37;
            background: rgba(212, 175, 55, 0.2);
            border-color: rgba(212, 175, 55, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
        }

        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .shape {
            position: absolute;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }

        .shape:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 15%;
            animation-delay: 5s;
        }

        .shape:nth-child(3) {
            width: 250px;
            height: 250px;
            bottom: 10%;
            left: 50%;
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        @media (max-width: 1024px) {
            .hero h1 { font-size: 56px; }
            .hero-pricing-main { font-size: 36px; }
            .hero-pricing-badge { padding: 18px 30px; }
            .hero-screenshots { 
                height: 550px;
                margin-left: 80px;
                margin-right: -40px;
            }
            .screenshot-item:nth-child(2) {
                top: 40px;
                left: 25px;
            }
            .screenshot-item:nth-child(3) {
                top: 80px;
                left: 50px;
            }
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 38px; text-align: center; }
            .hero-content { text-align: center; }
            .hero-badge { display: block; text-align: center; }
            .hero h1 .hero-pricing-badge-inline { display: block; margin: 15px 0; }
            .hero-pricing-badge { transform: rotate(-2deg); padding: 15px 25px; }
            .hero-pricing-main { font-size: 32px; }
            .hero-pricing-sub { font-size: 10px; letter-spacing: 1.5px; }
            .hero p { font-size: 16px; }
            .hero-buttons { justify-content: center; }
            .hero-key-points { justify-content: center; }
            .hero-screenshots { 
                height: 450px; 
                padding: 15px 0;
                margin-left: 0;
                margin-right: 0;
            }
            .screenshot-placeholder { height: 250px; }
            .screenshot-item:nth-child(1) {
                top: 0;
                left: 0;
            }
            .screenshot-item:nth-child(2) {
                top: 35px;
                left: 20px;
            }
            .screenshot-item:nth-child(3) {
                top: 70px;
                left: 40px;
            }
            .nav { padding: 20px 30px; }
            .nav-links { display: none; }
            .hero, .features, .cta, .comparison-section, .pricing, .testimonials, .faq-section, .contact-section, .gallery-section { padding: 50px 30px; }
            .pricing-card.featured { transform: scale(1); }
            .comparison-table { overflow-x: auto; }
            .comparison-table table { min-width: 600px; }
            .contact-icon { min-width: 180px; padding: 12px 20px; }
            .contact-icon img { width: 30px; height: 30px; }
            .contact-icon-text { font-size: 14px; }
            .contact-icons { gap: 15px; }
            .gallery-masonry { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
            .gallery-tab-btn { padding: 10px 20px; font-size: 14px; }
            .gallery-item-caption { padding: 15px; font-size: 12px; }
            .gallery-placeholder { height: 200px; font-size: 14px; }
            .footer { padding: 50px 30px 25px; }
            .footer-brand h3 { font-size: 24px; }
            .footer-brand p { max-width: 100%; }
            .footer-links h4 { font-size: 14px; margin-bottom: 15px; }
            .footer-links a { font-size: 13px; }
            .footer-bottom { padding-top: 25px; text-align: center; }
            .social-links { justify-content: center; margin-top: 15px; }
        }

        /* ========== RESPONSIVE: Tablet (max 991px) ========== */
        @media (max-width: 991px) {
            .nav-toggle { display: flex; }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                gap: 0;
                padding: 20px;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(12px);
                border-bottom: 1px solid rgba(212, 175, 55, 0.2);
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
                max-height: 70vh;
                overflow-y: auto;
            }
            .nav.nav-open .nav-links { display: flex; }
            .nav-links a {
                padding: 14px 16px;
                font-size: 16px;
                border-bottom: 1px solid rgba(212, 175, 55, 0.1);
                min-height: 48px;
                display: flex;
                align-items: center;
            }
            .nav-links a:last-child { border-bottom: none; }
            .nav { position: relative; }
            .nav-inner { position: relative; }

            .hero { padding: 120px 24px 50px; }
            .hero-content { margin-right: 0; }
            .hero-screenshots { margin-left: 60px; margin-right: -20px; height: 520px; }
            .hero h1 { font-size: 52px; }
            .hero-pricing-main { font-size: 36px; }
            .section-separator { padding: 35px 0; }
            .comparison-section,
            .gallery-section,
            .features,
            .pricing,
            .testimonials,
            .faq-section,
            .contact-section { padding: 40px 24px; }
            .section-title h2 { font-size: 30px; }
            .section-title p { font-size: 16px; }
            .quote-box { padding: 24px 24px; font-size: 16px; }
            .cta { padding: 40px 24px; }
            .cta h2 { font-size: 34px; }
        }

        /* ========== RESPONSIVE: Mobile landscape / small tablet (max 768px) ========== */
        @media (max-width: 768px) {
            .logo { font-size: 24px; letter-spacing: 2px; }
            .nav { padding: 16px 0; }
            .container { padding-left: 16px; padding-right: 16px; }

            .hero { padding: 100px 16px 40px; }
            .hero h1 { font-size: 32px; line-height: 1.25; }
            .hero-content { text-align: center; margin-right: 0; margin-left: 0; }
            .hero-badge { display: block; text-align: center; margin-bottom: 20px; }
            .hero h1 .hero-pricing-badge-inline { display: block; margin: 12px 0; }
            .hero-pricing-badge { padding: 12px 20px; }
            .hero-pricing-main { font-size: 28px; }
            .hero-pricing-sub { font-size: 10px; }
            .hero p { font-size: 15px; padding: 12px 0 12px 16px; margin: 0 0 24px 0; }
            .hero-buttons { justify-content: center; flex-wrap: wrap; gap: 12px; }
            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary { min-width: 160px; text-align: center; }
            .hero-screenshots {
                height: 380px;
                margin-left: 0;
                margin-right: 0;
                padding: 20px 0;
                position: relative;
            }
            .screenshot-item {
                position: relative;
                top: auto !important;
                left: auto !important;
                margin-bottom: 12px;
                width: 100%;
            }
            .screenshot-item:nth-child(1),
            .screenshot-item:nth-child(2),
            .screenshot-item:nth-child(3) { position: relative; top: auto !important; left: auto !important; }
            .screenshot-item img { height: 220px; }
            .referral-screenshots .screenshot-item:nth-child(2),
            .referral-screenshots .screenshot-item:nth-child(3) { position: relative; top: auto !important; left: auto !important; }
            .referral-screenshots { margin-left: 0; }

            .contact-section { padding: 40px 16px; }
            .contact-section h3 { font-size: 26px; margin-bottom: 30px; }
            .contact-icons { flex-direction: column; align-items: stretch; gap: 12px; }
            .contact-icon { min-width: 0; width: 100%; justify-content: center; }

            .comparison-section,
            .gallery-section,
            .features,
            .pricing,
            .testimonials,
            .faq-section { padding: 40px 16px; }
            .section-title h2 { font-size: 26px; margin-bottom: 12px; }
            .section-title p { font-size: 15px; }
            .quote-box { padding: 20px 16px; font-size: 15px; max-width: 100%; }
            .comparison-table { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-left: -16px; margin-right: -16px; border-radius: 0; }
            .comparison-table table { min-width: 560px; }
            .comparison-table th,
            .comparison-table td { padding: 12px 16px; font-size: 14px; }

            .gallery-tabs { flex-wrap: wrap; gap: 10px; margin-bottom: 24px; justify-content: center; }
            .gallery-tab-btn { padding: 10px 18px; font-size: 14px; }
            .gallery-item-caption { padding: 10px 12px; font-size: 13px; }
            .feature-card,
            .crypto-feature-card { padding: 24px 20px; }
            .feature-card h3,
            .crypto-feature-card h3 { font-size: 17px; }
            .pricing-card { padding: 24px 20px; }
            .pricing-price { font-size: 34px; }
            .pricing-card h3 { font-size: 18px; }
            .testimonial-card { padding: 28px 20px; }
            .testimonial-text { font-size: 15px; }
            .faq-question { padding: 18px 20px; font-size: 16px; }
            .faq-answer-content { padding: 0 20px 18px; font-size: 15px; }

            .cta { padding: 32px 16px; }
            .cta h2 { font-size: 28px; }
            .cta p { font-size: 16px; }
            .cta .btn-primary { padding: 14px 28px; font-size: 15px; }

            .footer { padding: 32px 16px 24px; }
            .footer-brand h3 { font-size: 20px; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
            .social-links { justify-content: center; }
        }

        /* ========== RESPONSIVE: Small mobile (max 576px) ========== */
        @media (max-width: 576px) {
            .logo { font-size: 20px; letter-spacing: 1px; }
            .hero h1 { font-size: 26px; }
            .hero-pricing-main { font-size: 24px; }
            .hero-pricing-badge { padding: 10px 16px; }
            .section-title h2 { font-size: 22px; }
            .contact-section h3 { font-size: 22px; }
            .cta h2 { font-size: 24px; }
            .btn-primary,
            .btn-secondary { padding: 12px 24px; font-size: 14px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
            .pricing-card .btn-primary { width: 100%; }
            .referral-level-number { font-size: 52px; }
            .crypto-box,
            .wordpress-box { padding: 24px 16px; }
            .crypto-box h3,
            .wordpress-box h3 { font-size: 20px; }
        }

        /* ========== RESPONSIVE: Extra small (max 480px) ========== */
        @media (max-width: 480px) {
            .hero { padding: 90px 12px 32px; }
            .hero h1 { font-size: 22px; }
            .hero-pricing-main { font-size: 22px; }
            .hero-screenshots { height: 320px; }
            .screenshot-item img { height: 180px; }
            .comparison-section,
            .gallery-section,
            .features,
            .pricing,
            .testimonials,
            .faq-section,
            .contact-section { padding: 32px 12px; }
            .section-title h2 { font-size: 20px; }
            .quote-box { padding: 16px 12px; font-size: 14px; }
            .comparison-table th,
            .comparison-table td { padding: 10px 12px; font-size: 13px; }
            .gallery-masonry { column-gap: 12px; }
            .gallery-item { margin-bottom: 12px; }
            .cta h2 { font-size: 22px; }
            .footer { padding: 24px 12px 20px; }
        }
