@font-face {
    font-family: 'IRANSansXFaNum';
    src: url('font/Iran-Sans/IRANSansXFaNum-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANSansXFaNum';
    src: url('font/Iran-Sans/IRANSansXFaNum-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-primary: #0a0b10;
    --bg-secondary: #12141c;
    --bg-tertiary: #1a1d29;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --accent-blue: #2b66ff;
    --accent-blue-rgb: 43, 102, 255;
    --accent-cyan: #00f2fe;
    --accent-gold: #e2b13c;
    --accent-gold-rgb: 226, 177, 60;

    --glass-bg: rgba(18, 20, 28, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(43, 102, 255, 0.4);

    --header-bg: rgba(10, 11, 16, 0.8);
    --footer-bg: #06070a;

    --font-fa: 'IRANSansXFaNum', sans-serif;
    --font-en: 'IRANSansXFaNum', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Light Mode Variables Override */
[data-theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;

    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(15, 23, 42, 0.08);
    --glass-border-hover: rgba(43, 102, 255, 0.3);

    --header-bg: rgba(255, 255, 255, 0.8);
    --footer-bg: #f1f5f9;
}

[data-theme="light"] body {
    background: radial-gradient(circle at 50% -20%, rgba(43, 102, 255, 0.06) 0%, rgba(248, 250, 252, 0) 60%),
        radial-gradient(circle at 10% 80%, rgba(0, 242, 254, 0.03) 0%, rgba(248, 250, 252, 0) 40%),
        var(--bg-primary);
}

[data-theme="light"] .spec-row {
    background: rgba(15, 23, 42, 0.02);
    border-color: rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .spec-row.header {
    background: rgba(43, 102, 255, 0.08);
    border-color: rgba(43, 102, 255, 0.15);
}

[data-theme="light"] .showcase-feature {
    background: rgba(15, 23, 42, 0.02);
    border-color: rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .showcase-feature:hover {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(43, 102, 255, 0.15);
}

[data-theme="light"] .check-icon {
    fill: var(--accent-blue);
}

[data-theme="light"] .price-card.popular {
    background: linear-gradient(180deg, rgba(43, 102, 255, 0.03) 0%, rgba(255, 255, 255, 0.9) 100%);
}

[data-theme="light"] .price-card.vip {
    background: linear-gradient(180deg, rgba(226, 177, 60, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
}

[data-theme="light"] .floating-icon {
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

/* Base & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-fa);
    background: radial-gradient(circle at 50% -20%, rgba(43, 102, 255, 0.15) 0%, rgba(10, 11, 16, 0) 60%),
        radial-gradient(circle at 10% 80%, rgba(0, 242, 254, 0.05) 0%, rgba(10, 11, 16, 0) 40%),
        var(--bg-primary);
    line-height: 1.8;
    position: relative;
    overflow-x: hidden;
    transition: background-color 0.4s ease, background 0.4s ease, color 0.4s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* Typography & General Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient-blue {
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #ffe066 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(43, 102, 255, 0.1);
    border: 1px solid rgba(43, 102, 255, 0.2);
    border-radius: 100px;
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

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

.section-header p {
    font-size: 1.1rem;
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 12px 40px 0 rgba(43, 102, 255, 0.15);
}

#plan-no-shop {
    border-color: #19532f;
    box-shadow: 0 12px 40px 0 rgba(12, 255, 57, 0.15);
}

/* Premium Header / Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

header.scrolled {
    padding: 1rem 0;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Theme Toggle Button & Controls Styles */
.header-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.theme-toggle-btn:hover {
    transform: translateY(-2px);
    border-color: var(--accent-blue);
    box-shadow: 0 5px 15px rgba(43, 102, 255, 0.2);
}

.theme-toggle-btn svg {
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.sun-icon {
    transform: translateY(0) rotate(0);
    opacity: 1;
    fill: #f59e0b;
}

.moon-icon {
    transform: translateY(-40px) rotate(-45deg);
    opacity: 0;
    fill: var(--accent-blue);
}

/* Light Mode active transitions */
[data-theme="light"] .sun-icon {
    transform: translateY(40px) rotate(45deg);
    opacity: 0;
}

[data-theme="light"] .moon-icon {
    transform: translateY(0) rotate(0);
    opacity: 1;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(43, 102, 255, 0.5);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav ul a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

nav ul a:hover {
    color: var(--text-primary);
}

nav ul a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    transition: var(--transition-smooth);
}

nav ul a:hover::after {
    width: 100%;
}

.header-cta {
    position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1e40af 100%);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(43, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(43, 102, 255, 0.5);
    background: linear-gradient(135deg, #3b82f6 0%, var(--accent-blue) 100%);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--accent-blue);
    background: rgba(43, 102, 255, 0.05);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #9a6a00 100%);
    color: #000;
    color: var(--bg-primary);
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(226, 177, 60, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(226, 177, 60, 0.5);
    background: linear-gradient(135deg, #f59e0b 0%, var(--accent-gold) 100%);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 10rem;
    padding-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 750px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Premium Interactive Gallery Styles */
.hero-visual-new {
    margin-top: 4rem;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 1rem 0;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(43, 102, 255, 0.15);
    border: 1px solid var(--glass-border);
    background: var(--bg-secondary);
}

.gallery-slides-container {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    pointer-events: auto;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(10, 11, 16, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .gallery-caption {
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-primary);
}

/* Glassmorphism Gallery Nav Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-bounce);
}

.gallery-nav:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(43, 102, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav svg {
    width: 24px;
    height: 24px;
    fill: var(--text-primary);
    transition: var(--transition-smooth);
}

.gallery-nav:hover svg {
    fill: white;
}

.gallery-nav.prev {
    right: 1.5rem;
}

.gallery-nav.next {
    left: 1.5rem;
}

/* Indicator Dots */
.gallery-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.gallery-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-dots .dot.active {
    background: var(--accent-cyan);
    width: 24px;
    border-radius: 100px;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

[data-theme="light"] .gallery-dots .dot.active {
    background: var(--accent-blue);
    box-shadow: 0 0 10px rgba(43, 102, 255, 0.5);
}

/* Custom logo-img rule */
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Styled Select-option control centered bottom options */
select.form-control {
    text-align: center;
    color: var(--text-primary);
    text-align-last: center;
}

select.form-control option {
    background-color: var(--bg-secondary);
    text-align: center;
}

/* Infinite Marquee Loop for Customers */
.customers-marquee-section {
    padding: 4rem 0 2rem;
    text-align: center;
    width: 100%;
}

.marquee-title {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.marquee-container {
    overflow: hidden;
    width: 100%;
    display: flex;
    position: relative;
    padding: 2.2rem 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    direction: ltr;
}

.marquee-content {
    display: flex;
    gap: 5rem;
    animation: marquee 35s linear infinite;
    white-space: nowrap;
}

.marquee-content img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(0.8) opacity(0.5);
    transition: var(--transition-smooth);
}

[data-theme="light"] .marquee-content img {
    filter: grayscale(1) brightness(0.25) opacity(0.4);
}

.marquee-content img:hover {
    filter: grayscale(0) brightness(1) opacity(1);
    transform: scale(1.12);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustment for mockups */
@media (max-width: 1024px) {
    .gallery-slides-container {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .gallery-slides-container {
        height: 280px;
    }

    .gallery-caption {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-nav.prev {
        right: 0.5rem;
    }

    .gallery-nav.next {
        left: 0.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-slides-container {
        height: 200px;
    }
}

/* Value Badges Section */
.badges-section {
    padding: 6rem 0;
    position: relative;
}

.badges-grid {
    display: grid;
    grid-template-cols: repeat(4, 1fr);
    gap: 2rem;
    grid-auto-flow: column;
}

.badge-card {
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-icon {
    width: 65px;
    height: 65px;
    background: rgba(43, 102, 255, 0.1);
    border: 1px solid rgba(43, 102, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-cyan);
    box-shadow: 0 5px 15px rgba(43, 102, 255, 0.1);
    transition: var(--transition-bounce);
}

.badge-card:hover .badge-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 10px 25px rgba(43, 102, 255, 0.4);
}

.badge-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.badge-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Core Showcase Section */
.showcase {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.showcase-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.showcase-info {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.showcase-features {
    display: grid;
    grid-template-cols: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    text-align: right;
}

@media (max-width: 900px) {
    .showcase-features {
        grid-template-cols: 1fr;
    }
}

.showcase-feature {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.showcase-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(43, 102, 255, 0.2);
    transform: translateX(-5px);
}

.feature-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-blue);
    font-family: var(--font-en);
    line-height: 1;
}

.feature-text h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.9rem;
}

.showcase-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: brightness(0.95);
    transition: var(--transition-smooth);
}

.showcase-visual:hover .showcase-img {
    transform: scale(1.03);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 11, 16, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
}

.showcase-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.showcase-overlay p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    position: relative;
}

.currency-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.currency-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.currency-label.active {
    color: var(--text-primary);
}

.switch-btn {
    position: relative;
    width: 60px;
    height: 32px;
    background: var(--bg-tertiary);
    border: 2px solid var(--glass-border);
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.switch-knob {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px rgba(43, 102, 255, 0.4);
}

.switch-btn.usd-active .switch-knob {
    transform: translateX(-28px);
}

.pricing-grid {
    display: grid;
    grid-template-cols: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
    grid-auto-flow: column;
}

.price-card {
    padding: 3.5rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.price-card.popular {
    border-color: rgba(43, 102, 255, 0.25);
    background: linear-gradient(180deg, rgba(43, 102, 255, 0.02) 0%, rgba(18, 20, 28, 0.8) 100%);
}

.price-card.vip {
    border-color: rgba(226, 177, 60, 0.6);
    background: linear-gradient(180deg, rgba(226, 177, 60, 0.06) 0%, rgba(18, 20, 28, 0.85) 100%);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(226, 177, 60, 0.15), 0 0 25px rgba(226, 177, 60, 0.1);
}

.price-card.vip:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(226, 177, 60, 0.25), 0 0 35px rgba(226, 177, 60, 0.2);
}

.price-card.vip .price-features-list li {
    font-weight: 700;
    color: var(--text-primary);
}

.price-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
}

.price-badge-popular {
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 0 10px rgba(43, 102, 255, 0.3);
}

.price-badge-vip {
    background: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: 0 0 10px rgba(226, 177, 60, 0.3);
}

.price-card-header {
    margin-bottom: 2rem;
}

.price-card-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.price-card-header .desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin: 1.5rem 0 0.5rem;
    direction: ltr;
    justify-content: flex-end;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-en);
    line-height: 1;
    transition: var(--transition-smooth);
}

.price-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-card-body {
    flex-grow: 1;
    margin-bottom: 2.5rem;
}

.price-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.price-features-list li {
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
}

.price-features-list li.inactive {
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-features-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.check-icon {
    fill: var(--accent-cyan);
}

.check-icon-gold {
    fill: var(--accent-gold);
}

.x-icon {
    fill: #ef4444;
}

.price-card-footer .btn {
    width: 100%;
}

/* Interactive Simulator Section */
.simulator {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.simulator-grid {
    display: grid;
    grid-template-cols: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.calc-box {
    padding: 3rem;
}

.calc-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.calc-group {
    margin-bottom: 2rem;
}

.calc-label-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.calc-label {
    font-weight: 700;
    font-size: 0.95rem;
}

.calc-value {
    font-family: var(--font-en);
    font-weight: 800;
    color: var(--accent-cyan);
}

.calc-value-gold {
    color: var(--accent-gold);
}

/* Sleek Sliders */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: var(--bg-primary);
    border-radius: 100px;
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(43, 102, 255, 0.5);
    transition: var(--transition-bounce);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Styled Selector for installment months */
.calc-selector {
    display: grid;
    grid-template-cols: repeat(4, 1fr);
    gap: 0.8rem;
}

.selector-option {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.8rem;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-en);
    transition: var(--transition-smooth);
}

.selector-option.active {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    box-shadow: 0 5px 15px rgba(43, 102, 255, 0.3);
}

.calc-result-box {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(43, 102, 255, 0.05);
    border: 1px dashed rgba(43, 102, 255, 0.25);
    border-radius: 16px;
    text-align: center;
}

.result-item {
    margin-bottom: 1.5rem;
}

.result-item:last-child {
    margin-bottom: 0;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.result-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-primary);
}

.result-value span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 0.2rem;
}

/* Compare Matrix */
.spec-compare {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-row {
    display: grid;
    grid-template-cols: 1fr 1.2fr 1.2fr;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    align-items: center;
}

.spec-row.header {
    background: rgba(43, 102, 255, 0.1);
    border-color: rgba(43, 102, 255, 0.2);
    font-weight: 800;
}

.spec-title {
    font-weight: 700;
    color: var(--text-primary);
}

.spec-val-1,
.spec-val-2 {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.spec-val-2 {
    color: var(--accent-cyan);
    font-weight: 700;
}

/* FAQ Accordion Section */
.faq {
    padding: 8rem 0;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    user-select: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
}

.faq-icon svg {
    fill: var(--text-secondary);
    width: 14px;
    height: 14px;
}

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

.faq-item.active .faq-icon svg {
    fill: var(--accent-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.01);
}

.faq-answer-inner {
    padding: 0 2rem 2.2rem;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.8;
}

/* Contact & Order Form */
.contact-section {
    padding: 8rem 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-cols: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}



.contact-info h2 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(43, 102, 255, 0.1);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.info-content h4 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.info-content p {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
}

.form-box {
    padding: 3.5rem 3rem;
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background: rgba(10, 11, 16, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-fa);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(43, 102, 255, 0.2);
    background: rgba(10, 11, 16, 0.8);
}

[data-theme="light"] .form-control {
    background: #d7daea99;
    color: var(--text-primary);
}

[data-theme="light"] .form-control:focus {
    background: #cdd2e6aa;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='%2394a3b8' d='M12 15a1 1 0 0 1-.707-.293l-4-4a1 1 0 1 1 1.414-1.414L12 12.586l3.293-3.293a1 1 0 1 1 1.414 1.414l-4 4A1 1 0 0 1 12 15z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1.2rem center;
    background-size: 18px;
    padding-left: 2.5rem;
}

textarea.form-control {
    resize: none;
    height: 120px;
}

.form-box .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Custom Success / Booking Modal popup */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 11, 16, 0.8);
    backdrop-filter: blur(15px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    max-width: 500px;
    width: 100%;
    padding: 3.5rem 3rem;
    text-align: center;
    transform: translateY(30px);
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 242, 254, 0.1);
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--accent-cyan);
    animation: success-pulse 2s infinite;
}

@keyframes success-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(0, 242, 254, 0.1);
    }
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modal-content p {
    font-size: 1rem;
    margin-bottom: 2.2rem;
    line-height: 1.7;
}

.modal-content .btn {
    width: 100%;
}

/* Footer Section */
footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 3rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-cols: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    justify-content: space-between;
    grid-auto-flow: column;
}

.footer-about h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.footer-about p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-bounce);
    font-size: 1.2rem;
}

.social-btn:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-3px);
    border-color: var(--accent-blue);
    box-shadow: 0 5px 15px rgba(43, 102, 255, 0.3);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-blue);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links ul a {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.footer-links ul a:hover {
    color: var(--accent-cyan);
    padding-right: 5px;
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.footer-contact li svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    margin-top: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Floating Contact Widget for Telegram / WhatsApp */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.floating-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition-bounce);
    cursor: pointer;
}

.floating-icon.whatsapp {
    background: #25d366;
}

.floating-icon.telegram {
    background: #0088cc;
}

.floating-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.floating-icon:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

    .hero-grid {
        grid-template-cols: 1fr;
        gap: 5rem;
        text-align: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        height: 420px;
    }

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

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

    .badges-grid {
        grid-template-cols: repeat(2, 1fr);
    }

    .showcase-grid,
    .simulator-grid,
    .contact-grid {
        grid-template-cols: 1fr;
        gap: 4rem;
    }

    .pricing-grid {
        grid-template-cols: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .price-card.popular,
    .price-card.vip {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    header {
        background: rgba(10, 11, 16, 0.95);
        border-bottom: 1px solid var(--glass-border);
    }

    nav {
        display: none;
        /* Can build toggle hamburger menu in html if needed, or keep clean single page links */
    }

    .badges-grid {
        grid-template-cols: 1fr;
    }

    .calc-box,
    .form-box {
        padding: 2rem 1.5rem;
    }

    .footer-grid {
        display: grid;
        grid-template-cols: 1.2fr 0.8fr 1fr;
        gap: 1.5rem;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        flex: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* ==========================================================================
   Premium Responsive System (Desktop, Tablet, Mobile, Mini Mobile)
   ========================================================================== */

/* 1. Mobile Bottom Navigation Bar Base Styles */
.mobile-bottom-nav {
    display: none;
}

/* 2. Scroll wrapper for specification comparison table */
.spec-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.8rem;
    border-radius: 12px;
}

/* 3. Laptop & Medium Screens (Under 1200px) */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .pricing-grid {
        gap: 1.5rem;
    }
}

/* 4. Tablet & Small Screens (Under 1024px) */
@media (max-width: 1024px) {
    .hero {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .badges-grid {
        grid-template-cols: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .showcase-features {
        grid-template-cols: repeat(3, 1fr) !important;
        gap: 1rem;
    }

    .pricing-grid {
        grid-template-cols: 1fr;
        max-width: 550px;
        margin: 0 auto;
        gap: 2.5rem;
    }

    .price-card.vip {
        transform: scale(1);
    }
}

/* 5. Mobile Landscape & Portrait (Under 768px) */
@media (max-width: 768px) {

    /* Hide top nav & show premium bottom bar */
    nav {
        display: none !important;
    }

    .header-cta {
        display: none !important;
        /* Hide CTA in header on mobile to keep it ultra clean */
    }

    body {
        padding-bottom: 70px;
        /* Leave space for bottom nav bar */
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: var(--header-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 999;
        justify-content: space-around;
        align-items: center;
        padding-bottom: env(safe-area-inset-bottom);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    }

    .mobile-nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
        color: var(--text-secondary);
        font-size: 0.72rem;
        font-weight: 600;
        flex: 1;
        height: 100%;
        transition: var(--transition-smooth);
        text-decoration: none;
    }

    .mobile-nav-link .nav-icon {
        font-size: 1.2rem;
        transition: var(--transition-bounce);
    }

    .mobile-nav-link.active {
        color: var(--accent-cyan);
    }

    .mobile-nav-link.active .nav-icon {
        transform: translateY(-4px);
    }

    .floating-contact {
        bottom: 6rem;
        /* Move contact widget higher so it doesn't overlap bottom bar */
        left: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

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

    .badges-grid {
        grid-template-cols: 1fr;
    }

    .showcase-features {
        grid-template-cols: 1fr !important;
        gap: 1.5rem;
        text-align: right;
    }

    .spec-compare {
        min-width: 550px;
        /* Forces table scroll-x inside scroll-wrapper */
    }
}

/* 6. Mini Mobile (Under 480px / 320px+) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding-top: 6rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-btns .btn {
        width: 100%;
        padding: 1rem;
    }

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

    .badge-card {
        padding: 2rem 1.2rem;
    }

    .price-card {
        padding: 2.5rem 1.2rem 2rem;
    }

    .price-card-header h3 {
        font-size: 1.4rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .calc-box {
        padding: 1.5rem 1rem !important;
    }

    .calc-title span {
        font-size: 1.1rem;
    }

    .calc-selector {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .selector-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        flex-grow: 1;
        text-align: center;
    }

    .result-value {
        font-size: 1.6rem;
    }

    .form-box {
        padding: 1.8rem 1rem !important;
    }

    .floating-contact {
        bottom: 5.8rem;
        left: 1rem;
    }

    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        grid-auto-flow: column;
        justify-content: space-between;
    }
}

/* Custom Premium Select Dropdown Component */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    background: rgba(10, 11, 16, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.custom-select-trigger:hover,
.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(43, 102, 255, 0.2);
    background: rgba(10, 11, 16, 0.8);
}

.custom-select-trigger svg {
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.custom-select-wrapper.open .custom-select-trigger svg {
    transform: rotate(180deg);
}

.custom-options-container {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: rgba(18, 20, 28, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(43, 102, 255, 0.1);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
}

.custom-select-wrapper.open .custom-options-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    padding: 0.9rem 1.2rem;
    color: var(--text-secondary);
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.custom-option:hover {
    background: rgba(43, 102, 255, 0.15);
    color: var(--text-primary);
}

.custom-option.selected {
    background: linear-gradient(90deg, rgba(43, 102, 255, 0.2), rgba(0, 242, 254, 0.1));
    color: var(--accent-cyan);
    font-weight: 700;
}

[data-theme="light"] .custom-select-trigger {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
}

[data-theme="light"] .custom-select-trigger:hover,
[data-theme="light"] .custom-select-wrapper.open .custom-select-trigger {
    background: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .custom-options-container {
    background: rgba(255, 255, 255, 0.98);
}

/* Trust Badge Emblems */
.footer-trust-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    flex-wrap: wrap;
    align-items: center;
}

.trust-badge {
    width: 95px;
    height: 95px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 0 15px rgba(255, 255, 255, 0.05);
    transition: var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 15px 35px rgba(43, 102, 255, 0.3);
    border-color: var(--accent-blue);
    background: #ffffff;
}

.trust-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

[data-theme="light"] .trust-badge {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .trust-badge:hover {
    box-shadow: 0 15px 35px rgba(43, 102, 255, 0.2);
}

/* Browser Mockup Card Showcase styling */
.browser-mockup-card {
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(43, 102, 255, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition-smooth);
}

[data-theme="light"] .browser-mockup-card {
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.browser-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    padding: 0 1.2rem;
    gap: 0.5rem;
    position: relative;
    direction: ltr;
    /* Ensure browser window controls align standard left-to-right */
}

[data-theme="light"] .browser-header {
    background: rgba(15, 23, 42, 0.02);
}

.browser-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.browser-header .dot.red {
    background: #ff5f56;
}

.browser-header .dot.yellow {
    background: #ffbd2e;
}

.browser-header .dot.green {
    background: #27c93f;
}

.browser-address {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: var(--font-en);
    font-weight: 500;
    background: rgba(10, 11, 16, 0.3);
    padding: 0.2rem 1.5rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .browser-address {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(15, 23, 42, 0.05);
}

.browser-body {
    flex: 1;
    width: 100%;
    height: calc(100% - 40px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 11, 16, 0.2);
}

.browser-body img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* This shows the entire image fully! */
    display: block;
}