:root {
    --bg-dark: #07090e;
    --bg-card: rgba(20, 27, 42, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(0, 240, 255, 0.3);

    --primary-blue: #0066ff;
    --primary-cyan: #00f0ff;
    --accent-indigo: #4b26ff;
    --accent-red: #ff3864;
    --accent-gold: #ffbe0b;
    --text-white: #ffffff;
    --text-gray: #cbd5e1;
    --text-dark: #1a202c;

    --glow-shadow-cyan: 0 0 25px rgba(0, 240, 255, 0.45);
    --glow-shadow-blue: 0 0 35px rgba(0, 102, 255, 0.5);
    --glow-shadow-sm: 0 0 15px rgba(0, 195, 255, 0.35);

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(0, 102, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 15% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(75, 38, 255, 0.12) 0%, transparent 50%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6, .pre-text, .section-tag {
    text-wrap: balance;
}

p, li, .hero-subtitle, .lead-text {
    text-wrap: pretty;
}

.nowrap, .nowrap-desktop { white-space: nowrap; }
.mobile-break { display: none; }
@media (max-width: 768px) {
    .mobile-break { display: block; }
}

/* Ambient Glow Background & Grid */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -2;
    pointer-events: none;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 110, 255, 0.18);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
}

.glow-2 {
    width: 450px;
    height: 450px;
    background: rgba(0, 240, 255, 0.12);
    top: 15%;
    left: -10%;
}

.glow-3 {
    width: 500px;
    height: 500px;
    background: rgba(100, 30, 255, 0.15);
    bottom: 20%;
    right: -10%;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

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

/* Typography & Utility */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
}

.text-cyan { color: var(--primary-cyan) !important; }
.text-blue { color: var(--primary-blue) !important; }
.text-yellow { color: var(--accent-gold) !important; }
.text-red { color: var(--accent-red) !important; }
.text-purple { color: #b24aff !important; }
.text-green { color: #00e676 !important; }
.text-gold { color: #ffd700 !important; }

.font-bold { font-weight: 700; }
.text-center { text-align: center; }

.gradient-text {
    background: linear-gradient(90deg, #00f0ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-cyan {
    color: var(--primary-cyan);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.highlight-red {
    color: var(--accent-red);
    text-shadow: 0 0 15px rgba(255, 56, 100, 0.5);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #0072ff 0%, #00d4ff 100%);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(0, 140, 255, 0.4);
}

.glow-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.75);
}

.glow-btn-lg {
    box-shadow: 0 0 40px rgba(0, 140, 255, 0.65);
}

.glow-btn-lg:hover {
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.9);
    transform: translateY(-3px) scale(1.03);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-giant {
    padding: 22px 48px;
    font-size: 22px;
    font-weight: 800;
    border-radius: 60px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-cyan);
    box-shadow: var(--glow-shadow-sm);
}

.btn-pill-blue {
    background: linear-gradient(90deg, #005fff 0%, #00d4ff 100%);
    color: white;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.5);
}

.btn-pill-blue:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
    transform: scale(1.04);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 9, 14, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 0;
    transition: all 0.3s;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #005fff, #00f0ff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: var(--glow-shadow-sm);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: white;
    letter-spacing: 0.5px;
}

.cyan-text { color: var(--primary-cyan); }

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

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

/* Hero Section */
.hero-section {
    padding-top: 130px;
    padding-bottom: 80px;
    position: relative;
    text-align: center;
}

.pre-title {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pre-title .line {
    width: 35px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00f0ff);
}

.pre-title .line:last-child {
    background: linear-gradient(90deg, #00f0ff, transparent);
}

.pre-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-cyan);
    text-transform: uppercase;
}

.hero-title {
    font-size: 54px;
    line-height: 1.25;
    max-width: 960px;
    margin: 0 auto 24px;
    letter-spacing: -0.5px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 760px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--text-white);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 60px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: var(--accent-gold);
    display: flex;
    gap: 3px;
}

.divider-dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

/* Mockup Wrapper */
.hero-mockup-wrapper {
    position: relative;
    margin: 0 auto 70px;
    max-width: 1050px;
}

.mockup-container {
    position: relative;
}

.mockup-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glow);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 160, 255, 0.25);
    background: #000;
}

.mockup-frame img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.mockup-overlay-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    background: rgba(10, 15, 25, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    animation: float 4s ease-in-out infinite;
}

.badge-left {
    bottom: 20%;
    left: 4%;
    animation-delay: 0s;
}

.badge-right {
    top: 20%;
    right: 4%;
    animation-delay: 2s;
}

.floating-badge i {
    font-size: 26px;
}

.badge-title {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: white;
}

.badge-sub {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.trusted-strip {
    margin-top: 35px;
}

.trusted-strip p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-wrap: balance;
    text-align: center;
}

.tech-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.tech-tag:hover {
    border-color: var(--primary-cyan);
    background: rgba(0, 240, 255, 0.05);
    color: white;
    transform: translateY(-2px);
}

/* Floating 4 Glassmorphism Feature Cards */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 32px 24px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-cyan);
    box-shadow: 0 15px 35px rgba(0, 150, 255, 0.2);
}

.active-card {
    background: linear-gradient(180deg, rgba(0, 114, 255, 0.18) 0%, rgba(15, 23, 42, 0.6) 100%);
    border-color: #0072ff;
    box-shadow: 0 10px 40px rgba(0, 114, 255, 0.35);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #00f0ff, #0066ff);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: var(--glow-shadow-sm);
}

.card-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
}

.cyan-bg {
    background: rgba(0, 240, 255, 0.12);
    color: var(--primary-cyan);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.gradient-bg {
    background: linear-gradient(135deg, #0066ff, #00f0ff);
    box-shadow: var(--glow-shadow-sm);
}

.glass-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 700;
}

.glass-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.5;
}

.card-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.card-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.card-dots span.active {
    width: 20px;
    border-radius: 10px;
    background: var(--primary-cyan);
    box-shadow: 0 0 10px var(--primary-cyan);
}

/* Capsule Banner */
.capsule-banner {
    background: rgba(14, 20, 34, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 60px;
    padding: 16px 36px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 160, 255, 0.2);
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.stat-group {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.capsule-divider {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
}

/* Section Header Styles */
.section-header {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.tag-cyan {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-cyan);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.tag-warning {
    background: rgba(255, 56, 100, 0.12);
    color: var(--accent-red);
    border: 1px solid rgba(255, 56, 100, 0.3);
}

.section-title {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.3;
}

.section-desc {
    font-size: 17px;
    color: var(--text-gray);
}

/* Pain Points Section */
.pain-section {
    padding: 90px 0;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(255, 30, 80, 0.05) 0%, transparent 70%);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.pain-card {
    background: rgba(18, 24, 38, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 4px solid var(--accent-red);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.pain-card:hover {
    transform: translateX(5px);
    background: rgba(25, 33, 52, 0.7);
    border-color: rgba(255, 56, 100, 0.4);
    box-shadow: 0 10px 30px rgba(255, 56, 100, 0.12);
}

.pain-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pain-icon-wrapper i {
    font-size: 30px;
    color: var(--accent-red);
    filter: drop-shadow(0 0 8px rgba(255, 56, 100, 0.5));
}

.pain-num {
    font-size: 28px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    font-family: var(--font-heading);
}

.pain-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.pain-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 90px 0;
}

.solution-box {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.6) 0%, rgba(10, 15, 28, 0.8) 100%);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 28px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(0, 160, 255, 0.1);
}

.solution-content h2 {
    font-size: 36px;
    margin: 15px 0;
    line-height: 1.25;
}

.lead-text {
    font-size: 17px;
    color: #e2e8f0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.35);
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 25px 0 35px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #cbd5e1;
}

.step-icon.highlight-icon {
    background: linear-gradient(135deg, #0066ff, #00f0ff);
    color: white;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.step-arrow {
    color: #475569;
    font-size: 14px;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feat-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feat-item i {
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feat-item h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.feat-item p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Dashboard Preview Card in Solution */
.dashboard-preview-card {
    background: #090e17;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.card-top-bar {
    background: #111827;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.bar-title {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    margin-left: 15px;
}

.dashboard-body {
    display: flex;
    min-height: 340px;
}

.sidebar {
    width: 170px;
    background: rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 10px;
}

.nav-item {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    cursor: pointer;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item.active {
    background: rgba(0, 240, 255, 0.12);
    color: var(--primary-cyan);
    font-weight: 700;
    border-left: 3px solid var(--primary-cyan);
}

.content-area {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-bar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #94a3b8;
}

.search-bar i { margin-right: 8px; color: #64748b; }
.mini-btn {
    background: #0066ff;
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
}

.prompt-item-preview {
    background: rgba(20, 28, 44, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
}

.prompt-tag {
    display: inline-block;
    font-size: 11px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-cyan);
    padding: 3px 8px;
    border-radius: 6px;
    margin-bottom: 8px;
    font-weight: 600;
}

.prompt-item-preview h5 {
    font-size: 14px;
    margin-bottom: 12px;
    color: white;
}

.prompt-code-box {
    background: #05080f;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    color: #38bdf8;
    font-family: monospace;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    transition: 0.2s;
}

.copy-btn:hover { background: var(--primary-cyan); color: #000; font-weight: 700; }

/* Modules / Benefits Section */
.modules-section {
    padding: 90px 0;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.module-card {
    background: rgba(16, 22, 36, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    backdrop-filter: blur(12px);
    transition: all 0.3s;
    overflow: hidden;
}

.module-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.feat-module {
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.15) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(0, 160, 255, 0.5);
    box-shadow: 0 0 35px rgba(0, 140, 255, 0.2);
}

.card-badge-top {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg, #ff3864, #ff8e00);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.module-num {
    font-size: 50px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-heading);
}

.module-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary-cyan);
    margin-bottom: 24px;
}

.module-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-list li {
    display: block;
    position: relative;
    padding-left: 32px;
    font-size: 15px;
    color: #e2e8f0;
    line-height: 1.6;
}

.check-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-cyan);
    font-size: 14px;
    background: rgba(0, 240, 255, 0.15);
    padding: 5px;
    border-radius: 50%;
}

/* Bonus Section */
.bonus-banner {
    background: linear-gradient(135deg, rgba(75, 38, 255, 0.25) 0%, rgba(10, 15, 30, 0.9) 100%);
    border: 1px dashed rgba(0, 240, 255, 0.5);
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 0 50px rgba(75, 38, 255, 0.2);
}

.bonus-header {
    text-align: center;
    margin-bottom: 40px;
}

.gift-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: #000;
    font-weight: 800;
    font-size: 13px;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 12px;
    box-shadow: 0 0 15px rgba(255, 190, 11, 0.5);
}

.bonus-header h3 { font-size: 32px; }

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.bonus-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bonus-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 190, 11, 0.15);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.bonus-text h5 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #fff;
}

.bonus-text p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Social Proof Section */
.social-section {
    padding: 90px 0;
    background: rgba(5, 8, 14, 0.5);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testi-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 32px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    backdrop-filter: blur(12px);
}

.feat-testi {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 35px rgba(0, 160, 255, 0.15);
    background: linear-gradient(180deg, rgba(0, 114, 255, 0.12) 0%, rgba(15, 23, 42, 0.5) 100%);
}

.quote-icon {
    font-size: 28px;
    color: rgba(0, 240, 255, 0.3);
    margin-bottom: 15px;
}

.testi-content {
    font-size: 15px;
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.bg-pink { background: linear-gradient(135deg, #ff3864, #ff708f); }
.bg-cyan { background: linear-gradient(135deg, #0072ff, #00f0ff); }
.bg-purple { background: linear-gradient(135deg, #7928ca, #b833ff); }

.user-info h4 { font-size: 16px; margin-bottom: 2px; }
.user-info span { font-size: 13px; color: var(--text-gray); display: block; margin-bottom: 5px;}
.user-info .stars { font-size: 12px; }

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    position: relative;
}

.pricing-card-container {
    max-width: 820px;
    margin: 0 auto;
}

.glowing-box {
    background: linear-gradient(180deg, rgba(16, 24, 42, 0.85) 0%, rgba(8, 12, 22, 0.95) 100%);
    border: 2px solid var(--primary-cyan);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.25), 0 30px 60px rgba(0, 0, 0, 0.7);
    position: relative;
}

.price-header {
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.3) 0%, rgba(0, 240, 255, 0.15) 100%);
    padding: 45px 30px 35px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-tag {
    display: inline-block;
    background: var(--primary-cyan);
    color: #000;
    font-weight: 800;
    font-size: 13px;
    padding: 6px 18px;
    border-radius: 20px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
}

.price-header h3 {
    font-size: 34px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.price-figures {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 24px;
    color: #64748b;
    text-decoration: line-through;
    font-weight: 600;
}

.new-price {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
    text-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

.discount-badge {
    background: var(--accent-red);
    color: white;
    font-weight: 800;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); box-shadow: 0 0 15px var(--accent-red); }
    100% { transform: scale(1); }
}

.price-body {
    padding: 45px 50px 30px;
}

.summary-label {
    font-size: 16px;
    font-weight: 700;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.value-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 35px;
}

.value-table td {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 16px;
    color: #e2e8f0;
}

.value-table i { margin-right: 12px; }

.val-price {
    text-align: right;
    color: #94a3b8;
    font-weight: 600;
}

.total-row td {
    border-bottom: none;
    padding-top: 20px;
    font-size: 18px;
}

.val-total {
    color: var(--accent-red) !important;
    font-weight: 800;
}

.timer-warning {
    margin-top: 18px;
    font-size: 15px;
    color: #e2e8f0;
}

.payment-trust {
    margin-top: 25px;
    font-size: 14px;
    color: #94a3b8;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.guarantee-box {
    background: rgba(255, 190, 11, 0.08);
    border-top: 1px solid rgba(255, 190, 11, 0.25);
    padding: 30px 45px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.guarantee-icon i {
    font-size: 45px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.guarantee-text h4 {
    font-size: 18px;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.guarantee-text p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0 120px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(20, 27, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    backdrop-filter: blur(12px);
}

.faq-item.active, .faq-item:hover {
    border-color: rgba(0, 240, 255, 0.4);
}

.faq-question {
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: var(--primary-cyan);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    padding: 0 24px 22px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

/* Footer */
.footer {
    background: #04060a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 70px 0 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 60px;
    flex-wrap: wrap;
}

.footer-left {
    max-width: 400px;
}

.footer-desc {
    color: #64748b;
    font-size: 14px;
    margin: 20px 0;
    line-height: 1.7;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-cyan);
    color: #000;
    box-shadow: var(--glow-shadow-sm);
    transform: translateY(-3px);
}

.footer-right {
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 17px;
    margin-bottom: 22px;
    color: white;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    background: #020306;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    text-align: center;
    font-size: 13px;
    color: #475569;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .feature-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .solution-box { grid-template-columns: 1fr; padding: 35px; }
    .modules-grid { grid-template-columns: 1fr; }
    .bonus-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .capsule-banner { flex-direction: column; gap: 20px; border-radius: 30px; padding: 20px; }
    .capsule-divider { width: 80%; height: 1px; }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .container {
        padding: 0 16px;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .nowrap-desktop {
        white-space: normal !important;
    }

    /* Navbar Mobile */
    .navbar {
        padding: 10px 0;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta .btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .pre-text {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 21px;
        line-height: 1.35;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-large {
        padding: 14px 20px;
        font-size: 15px;
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .trust-badges {
        flex-direction: column;
        gap: 10px;
        font-size: 13px;
    }

    .divider-dot {
        display: none;
    }

    .floating-badge {
        display: none;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .glass-card {
        padding: 24px 18px;
    }

    /* Pain Points Mobile */
    .pain-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 22px;
        line-height: 1.35;
    }

    .pain-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pain-card {
        padding: 20px;
    }

    /* Solution Box Mobile */
    .solution-section {
        padding: 50px 0;
    }

    .solution-box {
        padding: 24px 16px;
        border-radius: 20px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-content h2 {
        font-size: 22px;
        line-height: 1.35;
    }

    .lead-text {
        font-size: 15px;
    }

    /* Workflow Steps vertical stack on mobile */
    .workflow-steps {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        margin: 20px 0;
    }

    .step {
        flex-direction: row;
        gap: 12px;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: -4px 0 -4px 14px;
    }

    /* Dashboard preview card mobile */
    .dashboard-preview-card {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        box-sizing: border-box;
    }

    .dashboard-body {
        flex-direction: column;
        min-height: auto;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        padding: 10px;
    }

    .nav-item {
        margin-bottom: 0;
        padding: 6px 10px;
        font-size: 11px;
        border-left: none;
        border-radius: 6px;
    }

    .nav-item.active {
        border-left: none;
        background: rgba(0, 240, 255, 0.2);
    }

    .content-area {
        padding: 14px;
        gap: 10px;
    }

    .prompt-code-box {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        word-break: break-all;
    }

    /* Modules Section Mobile */
    .modules-section {
        padding: 50px 0;
    }

    .module-card {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .module-num {
        font-size: 36px;
        top: 15px;
        right: 20px;
    }

    .module-card h3 {
        font-size: 19px;
    }

    .check-list li {
        font-size: 14px;
        gap: 10px;
    }

    .check-list li span, .check-list li strong {
        display: inline;
    }

    /* Bonus Banner Mobile */
    .bonus-banner {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .bonus-header h3 {
        font-size: 22px;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Pricing Section Mobile */
    .pricing-section {
        padding: 50px 0;
    }

    .glowing-box {
        border-radius: 20px;
    }

    .price-header {
        padding: 25px 15px 20px;
    }

    .price-header h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .new-price {
        font-size: 38px;
    }

    .old-price {
        font-size: 18px;
    }

    .price-body {
        padding: 20px 15px;
    }

    .value-table {
        display: block;
        margin-bottom: 25px;
    }

    .value-table tr {
        display: flex;
        flex-direction: column;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .value-table td {
        padding: 2px 0;
        border-bottom: none;
        font-size: 14px;
        text-align: left;
    }

    .val-price {
        text-align: left;
        color: var(--primary-cyan);
        font-size: 13px;
        font-weight: 700;
        margin-top: 2px;
        padding-left: 28px;
    }

    .val-total {
        padding-left: 0;
    }

    /* Giant CTA button fix on mobile */
    .btn-giant {
        font-size: 15px;
        padding: 16px 15px;
        width: 100%;
        white-space: normal;
        text-align: center;
        border-radius: 40px;
        line-height: 1.4;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .btn-giant span {
        white-space: normal;
        text-align: center;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        border-radius: 0 0 20px 20px;
    }

    .guarantee-icon i {
        font-size: 36px;
    }

    .guarantee-text h4 {
        font-size: 16px;
    }

    .guarantee-text p {
        font-size: 13px;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 50px 0 80px;
    }

    .faq-question {
        padding: 16px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }

    /* Footer Mobile */
    .footer {
        padding-top: 40px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-right {
        flex-direction: column;
        gap: 30px;
    }
}

/* Floating Zalo Button */
.zalo-floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0068FF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 104, 255, 0.4);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.zalo-floating-btn:hover {
    transform: scale(1.1);
}

.zalo-text {
    color: white;
    font-weight: 800;
    font-size: 16px;
    font-family: 'Inter', Arial, sans-serif;
    letter-spacing: 0.5px;
    z-index: 2;
}

.zalo-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0068FF;
    border-radius: 50%;
    z-index: 1;
    animation: zaloPulse 1.5s infinite;
}

@keyframes zaloPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Checkout Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    width: 90%;
    max-width: 480px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--text-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transition: all 0.3s;
}

.close-modal:hover {
    background: var(--primary-cyan);
    color: var(--bg-dark);
}

.modal-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-light);
    text-align: center;
}

.modal-desc {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-light);
    font-size: 15px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.qr-payment-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.qr-image-wrapper {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.payment-info {
    width: 100%;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row span {
    color: var(--text-muted);
}

.info-row strong {
    color: var(--text-light);
    font-weight: 600;
    word-break: break-all;
    text-align: right;
    padding-left: 10px;
}

.btn-copy {
    background: rgba(0, 240, 255, 0.1);
    border: none;
    color: var(--primary-cyan);
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    margin-left: 10px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-copy:hover {
    background: var(--primary-cyan);
    color: var(--bg-dark);
}

.payment-note {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 15px;
    background: rgba(255, 193, 7, 0.1);
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid #ffc107;
}

@media (max-width: 480px) {
    .modal-box {
        padding: 20px 15px;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .qr-image-wrapper {
        width: 160px;
        height: 160px;
    }
}}
