/* ==========================================================================
   SATYAMAXIS — APPLE visionOS GLASSMORPHISM & MOBILE RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-platinum: #e2e8f0;
    --bg-surface: #f1f5f9;
    
    /* Apple visionOS Frosted Glass Tokens */
    --glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.35) 100%);
    --glass-bg-hover: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    --glass-sub-bg: rgba(255, 255, 255, 0.45);
    
    --border-apple-glass: 1px solid rgba(255, 255, 255, 0.85);
    --border-apple-sub: 1px solid rgba(255, 255, 255, 0.75);

    --shadow-apple-glass: inset 0 1px 1px rgba(255, 255, 255, 0.95), inset 0 -1px 2px rgba(15, 23, 42, 0.03), 0 25px 60px rgba(15, 23, 42, 0.08);
    --shadow-apple-hover: inset 0 1px 2px rgba(255, 255, 255, 1), 0 35px 75px rgba(15, 23, 42, 0.12);

    --accent-orange: #f97316;
    --accent-amber: #ea580c;
    
    --text-primary: #0a0a0c;
    --text-secondary: #334155;
    --text-muted: #64748b;

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-pill: 9999px;

    --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-platinum);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
}

body {
    background-color: var(--bg-platinum);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-platinum);
}
::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.2);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-primary);
}

/* --------------------------------------------------------------------------
   TOP NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(226, 232, 240, 0.85);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border-bottom: var(--border-apple-glass);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-symbol {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.symbol-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.currency-pill-badge {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: var(--border-apple-glass);
    border-radius: var(--radius-pill);
    padding: 3px 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
}

.currency-select {
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    padding: 4px 6px;
    border-radius: var(--radius-pill);
}

.currency-select option {
    background: #ffffff;
    color: #0a0a0c;
    font-weight: 700;
}

.time-pill-badge {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: var(--border-apple-glass);
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-menu-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    background: var(--text-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-menu-pill:hover {
    transform: translateY(-2px);
    background: #1e293b;
}

/* --------------------------------------------------------------------------
   MAIN WRAPPER & CARDS
   -------------------------------------------------------------------------- */
.main-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 130px 24px 60px 24px;
    position: relative;
    z-index: 10;
}

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

.section-header {
    margin-bottom: 40px;
}

.section-tag-pill {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: var(--border-apple-glass);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border: var(--border-apple-glass);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-apple-glass);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-apple-hover);
    border-color: rgba(255, 255, 255, 0.95);
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 20px 0 120px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--border-apple-glass);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.badge-sparkle {
    color: var(--accent-orange);
    font-size: 0.8rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.6vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 20px;
    hyphens: none;
    word-break: keep-all;
}

.hero-subtext {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 28px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
}

.stars-group {
    color: var(--accent-orange);
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.customers-count {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.hero-pills-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-black {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--text-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

.btn-hero-black:hover {
    transform: translateY(-2px);
    background: #1e293b;
}

.circle-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

.btn-hero-silver {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border: var(--border-apple-glass);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-hero-silver:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* Hero Light-Theme Figma Canvas & Laptop Showcase */
.hero-showcase-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-light-canvas {
    width: 100%;
    max-width: 500px;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    padding: 16px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 1), 0 20px 50px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* Figma Header Bar */
.figma-canvas-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.figma-tools {
    display: flex;
    align-items: center;
    gap: 10px;
}

.figma-tool-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.figma-tool-icon {
    font-size: 0.75rem;
    color: #64748b;
    padding: 4px;
    border-radius: 4px;
}

.figma-tool-icon.active {
    color: #0f172a;
    background: #f1f5f9;
}

.figma-canvas-title {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: #334155;
}

.figma-zoom-badge {
    font-size: 0.68rem;
    font-weight: 700;
    color: #94a3b8;
    background: #f8fafc;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

/* Canvas Stage Area with Dotted Pattern */
.figma-stage {
    width: 100%;
    background-color: #f1f5f9;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 14px 14px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* Soft Product Tags Row */
.canvas-tags-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
}

.canvas-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #334155;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.canvas-tag-pill i {
    font-size: 0.7rem;
    color: #64748b;
}

/* Laptop Mockup Wrapper */
.laptop-mockup-wrapper {
    width: 100%;
    max-width: 380px;
    margin: 4px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.laptop-screen {
    width: 100%;
    background: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.laptop-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.laptop-url {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: #94a3b8;
    margin-left: 6px;
}

.laptop-portfolio-preview {
    padding: 14px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.preview-logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: #334155;
}

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

.preview-nav-links span {
    width: 24px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
}

.preview-hero-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.preview-avatar-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #cbd5e1;
}

.preview-title-bar {
    width: 70%;
    height: 8px;
    background: #1e293b;
    border-radius: 4px;
}

.preview-sub-bar {
    width: 85%;
    height: 6px;
    background: #94a3b8;
    border-radius: 3px;
    opacity: 0.5;
}

.preview-btn-pill {
    width: 48px;
    height: 14px;
    background: #334155;
    border-radius: 9999px;
    margin-top: 4px;
}

.laptop-base {
    width: 112%;
    height: 10px;
    background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    position: relative;
    display: flex;
    justify-content: center;
}

.laptop-notch {
    width: 44px;
    height: 4px;
    background: #94a3b8;
    border-radius: 0 0 4px 4px;
}

/* Figma Artboards Grid */
.figma-artboards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.figma-artboard {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.artboard-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px dotted #e2e8f0;
}

.artboard-wireframe {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wf-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wf-btn {
    width: 40px;
    height: 12px;
    border-radius: 4px;
    background: #cbd5e1;
}

.wf-toggle {
    width: 24px;
    height: 12px;
    border-radius: 9999px;
    background: #94a3b8;
    padding: 1px;
}

.wf-knob {
    width: 100%;
    max-width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
}

.wf-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wf-line {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
}

.w-90 { width: 90%; }
.w-80 { width: 80%; }
.w-70 { width: 70%; }
.w-60 { width: 60%; }
.w-40 { width: 40%; }

.wf-code-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #f8fafc;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #f1f5f9;
}

/* Subtle Minimal Creator Bar Below */
.hero-creator-bar {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 16px 6px 6px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: var(--border-apple-glass);
    border-radius: var(--radius-pill);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 24px rgba(15, 23, 42, 0.06);
    margin-top: 4px;
}

.hero-creator-bar:hover {
    background: rgba(255, 255, 255, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 24px rgba(15, 23, 42, 0.06);
}

.creator-avatar-wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
    flex-shrink: 0;
}

.creator-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.creator-info {
    display: flex;
    flex-direction: column;
}

.creator-label {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-amber);
    line-height: 1.1;
}

.creator-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

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

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(8px); }
}

/* Hero Bottom Dock Bar */
.hero-bottom-bar {
    position: relative;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.watermark-bg-text {
    position: absolute;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: rgba(15, 23, 42, 0.06);
    pointer-events: none;
    white-space: nowrap;
    text-transform: uppercase;
    z-index: 1;
}

.glass-dock-pill {
    position: relative;
    z-index: 2;
    background: var(--glass-sub-bg);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: var(--border-apple-glass);
    border-radius: var(--radius-pill);
    padding: 12px 36px;
    display: flex;
    gap: 32px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.95), 0 15px 35px rgba(15, 23, 42, 0.06);
}

/* --------------------------------------------------------------------------
   COMPACT PRODUCTS SECTION & TOP-RIGHT PRICE
   -------------------------------------------------------------------------- */
.products-section {
    padding: 60px 0 80px 0;
}

.products-container-narrow {
    max-width: 880px;
    margin: 0 auto;
}

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

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px 24px 28px;
    border-radius: var(--radius-xl);
}

.card-badge-top {
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    background: #000000;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #0c0c0c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.icon-dark {
    background: rgba(15, 23, 42, 0.08);
    color: var(--text-primary);
}

.product-price-box {
    display: flex;
    align-items: baseline;
    gap: 1px;
}

.product-price-box .currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.product-price-box .amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-primary);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 18px;
    min-height: 42px;
}

.product-divider {
    height: 1px;
    background: rgba(15, 23, 42, 0.08);
    margin-bottom: 18px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-primary);
    font-weight: 600;
}

.check-icon {
    color: var(--text-primary);
    font-size: 0.75rem;
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--text-primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.btn-buy:hover {
    transform: translateY(-2px);
    background: #1e293b;
}

.btn-outline-silver {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border: var(--border-apple-glass);
    color: var(--text-primary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-outline-silver:hover {
    background: #ffffff;
}

.btn-full { width: 100%; }

/* --------------------------------------------------------------------------
   HORIZONTAL 4-COLUMN INLINE TRUST BAR
   -------------------------------------------------------------------------- */
.horizontal-trust-bar {
    margin-top: 36px;
    background: var(--glass-bg);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border: var(--border-apple-glass);
    border-radius: 20px;
    padding: 18px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    box-shadow: var(--shadow-apple-glass);
}

.trust-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-col-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.trust-col-text h4 {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.trust-col-text p {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.trust-col-divider {
    width: 1px;
    height: 36px;
    background: rgba(15, 23, 42, 0.08);
}

/* --------------------------------------------------------------------------
   SECTION 4: PRODUCT DELIVERY SPOTLIGHT CARD
   -------------------------------------------------------------------------- */
.about-section {
    padding: 40px 0 80px 0;
}

.delivery-spotlight-card {
    max-width: 880px;
    margin: 0 auto;
    padding: 48px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border: var(--border-apple-glass);
    box-shadow: var(--shadow-apple-glass);
    border-radius: var(--radius-xl);
}

.delivery-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.delivery-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 36px auto;
    line-height: 1.7;
}

.delivery-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.d-metric-card {
    background: var(--glass-sub-bg);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: var(--border-apple-sub);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 25px rgba(15, 23, 42, 0.04);
}

.d-metric-card:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 1), 0 15px 35px rgba(15, 23, 42, 0.08);
}

.d-num {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.d-lbl {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 600;
}

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

.social-links-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border: var(--border-apple-glass);
    border-radius: var(--radius-pill);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.social-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.instagram-btn {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.12) 0%, rgba(247, 119, 55, 0.12) 100%) !important;
    border: 1px solid rgba(225, 48, 108, 0.35) !important;
    color: #e1306c !important;
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #e1306c 0%, #f77737 100%) !important;
    color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-section {
    padding: 40px 0 100px 0;
}

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

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border: var(--border-apple-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-apple-glass);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-icon {
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.25s ease;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 28px;
    padding-right: 28px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0;
    visibility: hidden;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 0;
    padding-bottom: 24px;
    padding-left: 28px;
    padding-right: 28px;
    opacity: 1;
    visibility: visible;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
    border-top: 1px solid var(--border-glass);
    background: #0a0a0c;
    color: #ffffff;
    padding: 60px 0 40px 0;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer .brand-name { color: #ffffff; }
.footer-tagline { font-size: 0.85rem; color: #94a3b8; margin-top: 8px; }

.footer-links-col {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: #ffffff;
}

.footer-social-col {
    display: flex;
    gap: 16px;
}

.footer-social-col a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-col a:hover {
    background: #ffffff;
    color: #000000;
}

.footer-bottom {
    font-size: 0.8rem;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

/* --------------------------------------------------------------------------
   MODALS & OVERLAYS
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, 0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

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

.modal-card {
    background: #ffffff;
    border: var(--border-apple-glass);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.state-card { display: none; }
.state-card.active { display: block; }

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(15, 23, 42, 0.1);
    border-top-color: var(--text-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 24px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.status-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.icon-success { color: #10b981; }
.icon-error { color: #ef4444; }

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-sub {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.receipt-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.receipt-label { color: var(--text-muted); }
.receipt-value { color: var(--text-primary); font-weight: 700; }
.receipt-value.mono { font-family: var(--font-mono); font-size: 0.8rem; color: var(--accent-orange); }

.btn-close-modal {
    margin-top: 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
}

.btn-close-modal:hover { color: var(--text-primary); }

.policy-card {
    max-width: 600px;
    text-align: left;
}

.policy-body-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 20px 0 28px 0;
    max-height: 300px;
    overflow-y: auto;
}

/* --------------------------------------------------------------------------
   TELEGRAM INTEGRATION STYLES
   -------------------------------------------------------------------------- */

/* Header Telegram Pill */
.telegram-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 136, 204, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 136, 204, 0.35);
    border-radius: var(--radius-pill);
    padding: 7px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0088cc;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.telegram-nav-pill:hover {
    background: #0088cc;
    color: #ffffff;
    border-color: #0088cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.nav-telegram-link {
    color: #0088cc !important;
}
.nav-telegram-link:hover {
    color: #006699 !important;
}

.nav-youtube-link {
    color: #ff0000 !important;
}
.nav-youtube-link:hover {
    color: #cc0000 !important;
}

/* Section 4 Social Buttons: YouTube & Telegram */
.telegram-btn {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.12) 0%, rgba(0, 102, 153, 0.12) 100%) !important;
    border: 1px solid rgba(0, 136, 204, 0.35) !important;
    color: #0088cc !important;
}
.telegram-btn:hover {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%) !important;
    color: #ffffff !important;
}

.youtube-btn {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.12) 0%, rgba(204, 0, 0, 0.12) 100%) !important;
    border: 1px solid rgba(255, 0, 0, 0.35) !important;
    color: #ff0000 !important;
}
.youtube-btn:hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%) !important;
    color: #ffffff !important;
}

/* Footer Social Badges Container */
.footer-social-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
}

.footer-telegram-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 136, 204, 0.12);
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: var(--radius-pill);
    color: #38bdf8;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-telegram-badge:hover {
    background: #0088cc;
    color: #ffffff;
    border-color: #0088cc;
}

.footer-youtube-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: var(--radius-pill);
    color: #f87171;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-youtube-badge:hover {
    background: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
}

.footer-tg-link {
    color: #38bdf8 !important;
}
.footer-tg-link:hover {
    color: #ffffff !important;
}

.footer-yt-link {
    color: #f87171 !important;
}
.footer-yt-link:hover {
    color: #ffffff !important;
}
.telegram-promo-section {
    padding: 30px 0 80px 0;
}

.telegram-promo-container {
    max-width: 880px;
    margin: 0 auto;
}

.telegram-promo-card {
    background: var(--glass-bg);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border: var(--border-apple-glass);
    border-radius: var(--radius-xl);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-apple-glass);
}

.telegram-promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.18) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.telegram-promo-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.telegram-promo-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto 28px auto;
    line-height: 1.6;
}

.telegram-btn-wrap {
    display: flex;
    justify-content: center;
}

.btn-telegram-action {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.35) !important;
}

.btn-telegram-action:hover {
    background: linear-gradient(135deg, #0099e6 0%, #0077b3 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 136, 204, 0.45) !important;
}

.btn-telegram-action .circle-arrow {
    color: #0088cc;
}

/* Footer Telegram Elements */
.footer-telegram-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 8px 16px;
    background: rgba(0, 136, 204, 0.12);
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: var(--radius-pill);
    color: #38bdf8;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-telegram-badge:hover {
    background: #0088cc;
    color: #ffffff;
    border-color: #0088cc;
}

.footer-tg-link {
    color: #38bdf8 !important;
}
.footer-tg-link:hover {
    color: #ffffff !important;
}

/* Post-Purchase Success Modal Telegram Card */
.success-telegram-card {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(0, 136, 204, 0.25);
    border-radius: var(--radius-lg);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.st-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0088cc;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.st-text-wrap {
    flex: 1;
}

.st-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.st-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.btn-telegram-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: #0088cc;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-telegram-success:hover {
    background: #0077b3;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 136, 204, 0.4);
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE SYSTEM (320px - 1024px)
   ========================================================================== */

/* Tablet & Mobile Landscape (<992px) */
@media (max-width: 992px) {
    .nav-container { padding: 0 20px; }
    .nav-links { display: none; }
    .main-wrapper { padding: 110px 20px 40px 20px; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .rating-row, .hero-pills-row { justify-content: center; }
    .products-grid { grid-template-columns: 1fr; gap: 24px; }
    .delivery-metrics-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

/* Smartphone & Tablet Portrait (<768px) */
@media (max-width: 768px) {
    /* Navbar Mobile Adaptation */
    .navbar { padding: 12px 0; }
    .nav-container { padding: 0 14px; gap: 8px; }
    .brand-name { font-size: 1.1rem; }
    .brand-symbol { width: 22px; height: 22px; }
    .time-pill-badge { display: none !important; }

    .nav-actions { gap: 6px; }
    
    .telegram-nav-pill {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    .telegram-nav-pill span {
        display: none;
    }

    .currency-pill-badge { padding: 2px 4px; }
    .currency-select { font-size: 0.75rem; padding: 2px 4px; }
    .btn-menu-pill { padding: 6px 12px; font-size: 0.75rem; }

    /* Main Container Padding */
    .main-wrapper { padding: 90px 14px 40px 14px; width: 100%; overflow-x: hidden; }

    /* Hero Section */
    .hero-section { padding: 0 0 40px 0; }
    .hero-title { font-size: clamp(2.2rem, 7vw, 3.2rem); line-height: 1.1; margin-bottom: 16px; }
    .hero-tagline { font-size: 0.78rem; margin-bottom: 12px; }
    .rating-row { margin-bottom: 24px; }
    .stars-group { font-size: 1rem; }
    .customers-count { font-size: 0.8rem; }
    
    .hero-portrait-showcase { max-width: 100%; }
    .hero-portrait-frame { height: 380px; border-radius: 24px; }

    .badge-top-left { top: 12px; left: 8px; font-size: 0.72rem; padding: 6px 10px; }
    .badge-bottom-right { bottom: 14px; right: 8px; font-size: 0.72rem; padding: 6px 10px; }
    .badge-bottom-left { bottom: 14px; left: 8px; font-size: 0.72rem; padding: 6px 10px; }

    .hero-bottom-bar { margin-top: 30px; }
    .watermark-bg-text { font-size: clamp(2.8rem, 12vw, 4.5rem); }
    .glass-dock-pill {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 12px 18px;
        border-radius: 16px;
        font-size: 0.78rem;
    }
    .dock-center { display: none; }

    /* Products Section */
    .products-section { padding: 30px 0 50px 0; }
    .section-title { font-size: clamp(1.7rem, 5.5vw, 2.4rem); }
    .section-desc { font-size: 0.88rem; padding: 0 10px; }
    .product-card { padding: 22px 16px; }
    .product-title { font-size: 1.2rem; }
    .product-price-box .amount { font-size: 1.9rem; }

    /* Horizontal Trust Bar */
    .horizontal-trust-bar {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px 14px;
        border-radius: 16px;
    }
    .trust-col-divider { display: none; }
    .trust-col { justify-content: flex-start; }
    .trust-col-text h4 { font-size: 0.8rem; }
    .trust-col-text p { font-size: 0.7rem; }

    /* Section 4 Quality Spotlight */
    .about-section { padding: 20px 0 50px 0; }
    .delivery-spotlight-card { padding: 24px 16px; border-radius: 20px; }
    .delivery-headline { font-size: clamp(1.6rem, 5.5vw, 2.3rem); line-height: 1.2; margin-bottom: 14px; }
    .delivery-text { font-size: 0.9rem; margin-bottom: 24px; }
    .delivery-metrics-grid { grid-template-columns: 1fr; gap: 10px; margin-bottom: 28px; }
    .d-metric-card { padding: 16px 12px; border-radius: 12px; }
    .d-num { font-size: 1.5rem; }
    .d-lbl { font-size: 0.78rem; }

    /* Social Buttons */
    .social-links-group { gap: 8px; justify-content: center; }
    .social-btn { padding: 8px 14px; font-size: 0.78rem; }

    /* FAQ Section */
    .faq-section { padding: 20px 0 50px 0; }
    .faq-accordion { width: 100%; }
    .faq-question { padding: 16px 14px; font-size: 0.92rem; line-height: 1.4; word-break: break-word; }
    .faq-answer {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 14px;
        padding-right: 14px;
        font-size: 0.85rem;
        opacity: 0;
        visibility: hidden;
    }
    .faq-item.active .faq-answer {
        padding-bottom: 16px;
        opacity: 1;
        visibility: visible;
    }

    /* Telegram Promo Section */
    .telegram-promo-section { padding: 15px 0 40px 0; }
    .telegram-promo-card { padding: 28px 16px; border-radius: 20px; text-align: center; }
    .telegram-promo-title { font-size: clamp(1.4rem, 5.5vw, 2.1rem); line-height: 1.25; margin-bottom: 10px; word-break: break-word; }
    .telegram-promo-desc { font-size: 0.88rem; margin-bottom: 20px; padding: 0 8px; }
    .btn-telegram-action { width: 100%; max-width: 280px; margin: 0 auto; justify-content: center; font-size: 0.85rem; padding: 12px 18px; }

    /* Footer Mobile */
    .footer { padding: 40px 0 30px 0; }
    .footer-container { flex-direction: column; text-align: center; gap: 24px; padding: 0 16px; }
    .footer-brand-col { display: flex; flex-direction: column; align-items: center; }
    .footer-social-badges { align-items: center; }
    .footer-links-col { justify-content: center; gap: 10px 16px; font-size: 0.82rem; }
    .footer-social-col { justify-content: center; gap: 12px; }
}

/* Narrow Smartphones (<480px) */
@media (max-width: 480px) {
    .nav-container { padding: 0 10px; }
    .brand-name { font-size: 0.95rem; }

    .hero-portrait-frame { height: 320px; border-radius: 20px; }
    .hero-pills-row { width: 100%; flex-direction: column; gap: 8px; }
    .btn-hero-black, .btn-hero-silver { width: 100%; justify-content: center; padding: 12px 20px; font-size: 0.85rem; }

    .badge-top-left, .badge-bottom-right, .badge-bottom-left {
        font-size: 0.68rem;
        padding: 5px 8px;
    }

    .product-price-box .amount { font-size: 1.7rem; }
    .product-title { font-size: 1.15rem; }
    .product-desc { font-size: 0.82rem; min-height: auto; }
    .features-list li { font-size: 0.78rem; }
    .btn-buy { padding: 11px 16px; font-size: 0.8rem; }

    .modal-card { padding: 20px 14px; border-radius: 18px; }
    .modal-title { font-size: 1.4rem; }
    .modal-sub { font-size: 0.82rem; }
    .receipt-box { padding: 14px 12px; }
    .receipt-row { font-size: 0.78rem; }
    .success-telegram-card { padding: 12px 10px; }
    .st-title { font-size: 0.85rem; }
    .st-desc { font-size: 0.75rem; }
    .btn-telegram-success { padding: 9px 14px; font-size: 0.8rem; }
}

/* Micro Smartphones (<360px) */
@media (max-width: 360px) {
    .brand-name { display: none; }
    .nav-container { justify-content: space-between; }
    .hero-title { font-size: 1.9rem; }
    .section-title { font-size: 1.5rem; }
    .telegram-promo-title { font-size: 1.3rem; }
}

