/* ============================================
   КРМКТЛ — Pages Styles
   Styles specific to inner pages
   ============================================ */

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--section-medium);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
}

/* Page Header with Art Background */
.page-header-art {
    position: relative;
}

.page-header-art .header-bg-art {
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 120%;
    opacity: 0.4;
    pointer-events: none;
    mask-image: linear-gradient(90deg, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 30%, black 70%, transparent 100%);
}

.page-header-art .header-bg-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.2);
}

/* Wide horizontal background header (for About page) */
.page-header-wide {
    position: relative;
    padding: 160px 0 100px;
}

.page-header-wide .header-bg-wide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    pointer-events: none;
}

.page-header-wide .header-bg-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
}

.page-header-wide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(17, 17, 21, 0.3) 0%,
        rgba(17, 17, 21, 0.6) 60%,
        var(--section-medium) 100%
    );
    pointer-events: none;
}

.page-header-wide .container {
    position: relative;
    z-index: 1;
}

.page-header-wide .page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-header-wide .page-subtitle {
    max-width: 640px;
    margin: 0 auto;
}

.page-header-content {
    position: relative;
    max-width: 700px;
}

.page-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-title .accent {
    color: var(--accent);
}

.page-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
}

/* ============================================
   CATALOG PAGE
   ============================================ */

/* Filters */
.catalog-filters {
    padding: 0 0 40px;
    border-bottom: 1px solid var(--border-primary);
    margin-bottom: 40px;
}

.filters-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--border-secondary);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--accent);
}

/* ============================================
   CATALOG PAGE - REDESIGN
   ============================================ */

/* Catalog Header */
.catalog-header {
    padding-bottom: 40px;
}

/* Sticky Filters */
.sticky-filters {
    padding: 16px 0;
    background: var(--section-paper);
    border-bottom: 1px solid #D4CFC2;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.sticky-filters.is-sticky {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 100;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.filters-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.filters-scroll {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #FFFFFF;
    border: 1px solid #D4D4D4;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: #555555;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: #F5F5F5;
    border-color: #AAAAAA;
    color: #1A1A1A;
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #FFFFFF;
}

.filter-btn svg {
    flex-shrink: 0;
}

.filter-icon {
    font-size: 14px;
}

.filter-count {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 600;
}

.filter-btn.active .filter-count {
    opacity: 1;
}

.sort-dropdown select {
    padding: 10px 16px;
    background: #FFFFFF;
    border: 1px solid #D4D4D4;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    color: #555555;
    cursor: pointer;
}

/* Featured Section */
.catalog-featured {
    padding: 40px 0;
    background: var(--section-cream);
}

.featured-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    color: #1A1A1A;
}

.featured-badge {
    background: var(--accent);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.featured-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FDF9F5 100%);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(255, 107, 0, 0.15);
}

.featured-card-alt {
    background: #F7F8FA;
    border: 2px solid var(--accent);
    box-shadow: 0 8px 40px rgba(255, 107, 0, 0.15);
}

.featured-card-alt .bonus-tag {
    background: none;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0;
}

.featured-card .featured-header h3 {
    color: #1A1A1A;
}

.featured-card .featured-desc {
    color: #555555;
}

.featured-card .featured-desc strong {
    color: #1A1A1A;
}

.featured-card .stat-item {
    color: #777777;
}

.featured-card .btn-secondary {
    background: #FFFFFF;
    border: 2px solid #333333;
    color: #333333;
}

.featured-card .btn-secondary:hover {
    background: #333333;
    color: #FFFFFF;
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent);
    color: #000;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
}

.featured-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.featured-logo .logo-placeholder {
    width: 80px;
    height: 80px;
    font-size: 24px;
}

.featured-logo img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    border: 2px solid #E0E0E0;
}

.featured-product-img {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.featured-person-img {
    max-width: 200px;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.featured-logo .logo-letters {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    color: var(--accent);
}

.logo-placeholder {
    background: #F5F5F5;
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--accent);
}

.featured-info {
    flex: 1;
}

.featured-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.featured-header h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
}

.featured-category {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(52, 211, 153, 0.1);
    color: var(--green);
}

.featured-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.featured-desc strong {
    color: var(--text-primary);
}

.featured-stats {
    display: flex;
    gap: 16px;
}

.stat-item {
    font-size: 13px;
    color: var(--text-muted);
}

.featured-bonus {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.bonus-glow {
    background: var(--accent-glow);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
    50% { box-shadow: 0 0 40px var(--accent-glow); }
}

.bonus-tag {
    display: block;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.bonus-text {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.bonus-save {
    font-size: 12px;
    font-weight: 600;
    color: #059669;
}

/* Catalog Grid */
.catalog {
    padding: 40px 0 var(--section-padding);
    background: var(--section-cream);
    position: relative;
}

.catalog::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, var(--section-paper) 100%);
    pointer-events: none;
}

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

/* Vendor Cards - Light Theme */
.vendor-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: var(--card-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.vendor-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 0 20px var(--accent-glow);
}

.vendor-card .vendor-name {
    color: #1A1A1A;
}

.vendor-card .vendor-desc {
    color: #555555;
}

.vendor-card .vendor-desc strong {
    color: #1A1A1A;
}

.vendor-card .meta-item {
    color: #777777;
}

.vendor-card .vendor-category {
    color: #888888;
}

/* Category Color Bars */
.card-category-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}

.card-growth .card-category-bar { background: linear-gradient(90deg, var(--green) 0%, var(--green) 50%, transparent 100%); }
.card-analytics .card-category-bar { background: linear-gradient(90deg, var(--blue) 0%, var(--blue) 50%, transparent 100%); }
.card-content .card-category-bar { background: linear-gradient(90deg, var(--purple) 0%, var(--purple) 50%, transparent 100%); }
.card-pr .card-category-bar { background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 50%, transparent 100%); }

.vendor-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.vendor-logo {
    width: 56px;
    height: 56px;
    background: #F8F8F8;
    border: 2px solid #E0E0E0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--accent);
}

.logo-fd { color: var(--blue); border-color: rgba(96, 165, 250, 0.3); }
.logo-cm { color: var(--accent); border-color: rgba(255, 107, 0, 0.3); }
.logo-cf { color: var(--purple); border-color: rgba(167, 139, 250, 0.3); }
.logo-ka { color: var(--green); border-color: rgba(52, 211, 153, 0.3); }
.logo-cm2 { color: var(--blue); border-color: rgba(96, 165, 250, 0.3); }
.logo-np { color: var(--green); border-color: rgba(52, 211, 153, 0.3); }

.logo-pr-img {
    padding: 6px;
    background: #fff;
}
.logo-pr-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.vendor-badges {
    display: flex;
    gap: 6px;
}

.vendor-badge {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 6px;
}

.badge-verified {
    background: rgba(52, 211, 153, 0.1);
    color: var(--green);
}

.badge-new {
    background: rgba(167, 139, 250, 0.15);
    color: var(--purple);
    font-weight: 600;
}

.vendor-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
}

.vendor-category {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}

.vendor-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

.vendor-desc strong {
    color: var(--text-primary);
}

.vendor-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.meta-item {
    font-size: 12px;
    color: var(--text-muted);
}

.vendor-bonus {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 107, 0, 0.04) 100%);
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
}

.bonus-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.bonus-label {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    background: var(--accent);
    color: #000;
    padding: 2px 6px;
    border-radius: 4px;
}

.bonus-value {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: #1A1A1A;
}

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

.vendor-cta {
    flex: 1;
}

.vendor-link {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
    transition: color 0.2s ease;
}

.vendor-link:hover {
    color: var(--accent);
}

/* Suggest Card */
.card-suggest {
    border-style: dashed;
    border-color: #CCCCCC;
    background: rgba(255, 255, 255, 0.5);
    text-align: center;
    justify-content: center;
    align-items: center;
}

.card-suggest:hover {
    border-color: var(--accent);
    background: rgba(255, 107, 0, 0.03);
}

.card-suggest .btn-secondary {
    background: #FFFFFF;
    border: 2px solid #333333;
    color: #333333;
}

.card-suggest .btn-secondary:hover {
    background: #333333;
    color: #FFFFFF;
}

.suggest-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

/* Catalog CTA */
.catalog-cta {
    padding: 0 0 var(--section-padding);
}

/* Modal Redesign */
.modal-lead {
    max-width: 420px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

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

.modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-primary);
}

.modal-vendor-logo {
    width: 56px;
    height: 56px;
    background: #FFF5EB;
    border: 2px solid var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--accent);
}

.modal-vendor-info h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 4px;
}

.modal-bonus {
    font-size: 14px;
    color: #059669;
    font-weight: 500;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .featured-card {
        flex-direction: column;
        align-items: stretch;
    }

    .featured-bonus {
        align-items: stretch;
    }

    .filters-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .filters-row {
        overflow-x: auto;
        padding-bottom: 8px;
    }
}

@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .featured-content {
        flex-direction: column;
        text-align: center;
    }

    .featured-header {
        flex-direction: column;
    }

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

    .filter-btn {
        flex-shrink: 0;
    }
}

/* ============================================
   JOIN PAGE
   ============================================ */

.join-options {
    padding: 40px 0 var(--section-padding);
    background: var(--section-light);
}

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

.option-card {
    background: linear-gradient(180deg, #1a1a20 0%, #141418 100%);
    border: 1px solid var(--border-secondary);
    border-radius: var(--card-radius);
    padding: 36px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.option-primary {
    border-color: var(--green);
    box-shadow: 0 0 40px var(--green-glow);
}

/* Light theme option cards */
.section-light-theme .option-card {
    background: white;
    border-color: #D4CFC2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-light-theme .option-primary {
    border-color: var(--green);
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.2);
}

.section-light-theme .option-title {
    color: var(--text-dark);
}

.section-light-theme .option-desc {
    color: var(--text-dark-secondary);
}

.section-light-theme .option-features li {
    color: var(--text-dark-secondary);
}

.section-light-theme .price-amount {
    color: var(--text-dark);
}

.section-light-theme .price-note {
    color: #888;
}

.option-badge {
    position: absolute;
    top: -10px;
    left: 24px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--green);
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.option-card-disabled {
    opacity: 0.55;
    pointer-events: none;
    filter: grayscale(0.3);
}

.option-badge-coming {
    background: #94A3B8;
    color: #fff;
}

.option-icon {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 16px;
}

.option-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 8px;
}

.option-price {
    margin-bottom: 16px;
}

.price-amount {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 32px;
}

.price-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 4px;
}

.option-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.option-features {
    list-style: none;
    margin-bottom: 24px;
}

.option-features li {
    font-size: 13px;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid #E5E5E5;
}

.option-features li:last-child {
    border-bottom: none;
}

.option-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.option-features li.muted {
    color: var(--text-muted);
}

.option-features li.muted::before {
    content: '—';
    color: var(--text-muted);
}

.option-requirements {
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 24px;
}

.section-light-theme .option-requirements {
    background: #F8F8F8;
    border-color: #E5E5E5;
}

.section-light-theme .option-requirements h4 {
    color: #555555;
}

.section-light-theme .option-requirements li {
    color: #333333;
}

.option-requirements h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.option-requirements ul {
    list-style: none;
}

.option-requirements li {
    font-size: 12px;
    color: var(--text-secondary);
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
}

.option-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.option-note {
    font-size: 12px;
    color: #555555;
    margin-bottom: 20px;
    padding: 12px;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    line-height: 1.5;
}

.option-note strong {
    color: #1A1A1A;
}

.option-time {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Application Form */
.application-section {
    padding: var(--section-padding) 0;
    background: var(--section-cream);
    position: relative;
}

.application-section .form-title,
.application-section .form-desc {
    color: #1A1A1A;
}

.application-section .form-desc {
    color: #555555;
}

.application-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-secondary) 50%, transparent 100%);
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
}

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

.form-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 12px;
}

.form-desc {
    font-size: 15px;
    color: var(--text-secondary);
}

.application-form {
    background: #FFFFFF;
    border: 1px solid #D4CFC2;
    border-radius: var(--card-radius);
    padding: 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.application-form .form-group label {
    color: #1A1A1A;
    font-weight: 600;
}

/* Next Steps Section */
.next-steps {
    padding: var(--section-padding) 0;
    background: var(--section-paper);
}

.next-steps .section-title {
    color: #1A1A1A;
}

.steps-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-simple {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: var(--card-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.step-simple .step-info h3 {
    color: #1A1A1A;
}

.step-simple .step-info p {
    color: #555555;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: #000;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-info h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
}

.step-info p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .steps-simple {
        grid-template-columns: 1fr;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: #FAFAFA;
    border: 1px solid #D4D4D4;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #1A1A1A;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    background: #FFFFFF;
    border-color: #AAAAAA;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.form-hint {
    display: block;
    font-size: 11px;
    color: #777777;
    margin-top: 6px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.5;
}

/* FAQ */
.faq {
    padding: var(--section-padding) 0;
    background: var(--section-cream);
}

.faq .section-title {
    color: #1A1A1A;
}

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

.faq-item {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: var(--card-radius);
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item h4 {
    color: #1A1A1A;
}

.faq-item p {
    color: #555555;
}

.faq-item h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   VENDORS PAGE
   ============================================ */

/* Vendor Proof Stats */
.vendor-proof {
    padding: 50px 0;
    background: var(--section-medium);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.proof-stat {
    text-align: center;
    padding: 20px;
}

.proof-stat-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 4px;
}

.proof-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Current Partners */
.current-partners {
    padding: 40px 0;
    background: linear-gradient(135deg, #2A1F1A 0%, #1E1612 100%);
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.current-partners .container {
    max-width: 800px;
    background: rgba(45, 32, 24, 0.6);
    border: 2px dashed var(--accent);
    border-radius: 16px;
    padding: 32px 40px;
}

.partners-label {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.partner-logo {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    opacity: 0.9;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 40px;
    background: var(--bg-tertiary);
    padding: 4px;
    border-radius: 10px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-btn.active {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.toggle-badge {
    background: var(--green);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}

/* Pricing Value */
.pricing-value {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.value-calc {
    font-size: 13px;
    color: #666666;
}

.value-save {
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    background: var(--green-glow);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Feature Check/X Icons */
.feature-check {
    color: var(--green);
    flex-shrink: 0;
    margin-right: 8px;
}

.feature-x {
    color: var(--text-muted);
    flex-shrink: 0;
    margin-right: 8px;
}

.pricing-features li {
    display: flex;
    align-items: center;
}

/* Pricing Guarantee */
.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid var(--green);
    border-radius: var(--card-radius);
    box-shadow: 0 2px 12px rgba(52, 211, 153, 0.1);
}

.guarantee-text strong {
    color: #1A1A1A;
}

.guarantee-text span {
    color: #555555;
}

.pricing-guarantee svg {
    color: var(--green);
    flex-shrink: 0;
}

.guarantee-text strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.guarantee-text span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Steps Timeline */
.steps-timeline {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.step-arrow {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--accent);
    padding: 0 16px;
}

.step-card {
    flex: 1;
    position: relative;
}

.step-card .step-number {
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: #000;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step-card .step-content h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}

.step-card .step-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.step-time {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 4px 8px;
    border-radius: 4px;
}

.step-card-highlight {
    border-color: var(--accent);
}

.step-card-highlight .step-number {
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Bonus Examples */
.bonus-examples {
    padding: var(--section-padding) 0;
}

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

.bonus-example {
    background: white;
    border: 1px solid #D4CFC2;
    border-radius: var(--card-radius);
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.bonus-example:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.bonus-type {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
}

.bonus-example .bonus-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 12px;
}

.bonus-example p {
    color: #555;
}

.bonus-example .bonus-conv {
    color: #2a9d5c;
}

.section-light-theme .bonus-example p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.bonus-conv {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--green);
}

/* Vendor Testimonial */
.vendor-testimonial {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 100px;
    color: var(--accent);
    opacity: 0.2;
    line-height: 0.5;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent-glow);
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    color: var(--accent);
}

.author-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
}

.author-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Vendor Contact Form */
.vendor-contact {
    padding: var(--section-padding) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 16px;
    margin-bottom: 32px;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-benefit svg {
    color: var(--green);
    flex-shrink: 0;
}

.contact-form {
    background: #FFFFFF;
    border: 1px solid #D4CFC2;
    border-radius: var(--card-radius);
    padding: 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group label {
    color: #1A1A1A;
    font-weight: 600;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Vendor CTA Section */
.vendor-cta-section {
    padding: var(--section-padding) 0;
}

.vendor-cta-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.cta-buttons-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-buttons-center .btn {
    min-width: 200px;
}

.cta-contact {
    font-size: 14px;
    color: var(--text-dark-secondary);
}

.cta-contact a {
    color: var(--accent);
    font-weight: 500;
}

.cta-contact a:hover {
    text-decoration: underline;
}

/* Vendor Contact Form */
.vendor-contact-section {
    padding: var(--section-padding) 0;
}

.vendor-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.vendor-form-container .form-header {
    text-align: center;
    margin-bottom: 32px;
}

.vendor-form-container .form-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.vendor-form-container .form-desc {
    font-size: 15px;
    color: var(--text-dark-secondary);
}

.vendor-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vendor-form .form-group {
    margin-bottom: 20px;
}

.vendor-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.vendor-form input,
.vendor-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--font-body);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    background: #FAFAFA;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.vendor-form input:focus,
.vendor-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.vendor-form input::placeholder,
.vendor-form textarea::placeholder {
    color: #999;
}

.vendor-form textarea {
    resize: vertical;
    min-height: 100px;
}

.vendor-form .btn-full {
    width: 100%;
    margin-top: 8px;
}

.vendor-form .form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-dark-secondary);
    margin-top: 16px;
}

.vendor-form .form-note a {
    color: var(--accent);
    font-weight: 500;
}

@media (max-width: 600px) {
    .vendor-form-container {
        padding: 32px 24px;
    }

    .vendor-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Vendor FAQ — Light (Cream) Theme */
.vendor-faq {
    padding: var(--section-padding) 0;
    background: var(--section-cream);
}

.vendor-faq .section-title {
    color: #1A1A1A;
}

.vendor-faq .section-desc {
    color: #555555;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-list .faq-item {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: var(--card-radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease;
}

.faq-list .faq-item:hover {
    border-color: var(--accent);
}

.faq-list .faq-item summary {
    padding: 20px 24px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1A1A1A;
}

.faq-list .faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-list .faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: var(--accent);
    transition: transform 0.2s ease;
}

.faq-list .faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-list .faq-item p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
}

.vendor-value {
    padding: 0 0 60px;
    border-bottom: 1px solid var(--border-primary);
}

.value-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--card-radius);
    padding: 24px;
}

.value-stat .stat-icon {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 12px;
    border-radius: 10px;
}

.value-stat .stat-text strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
}

.value-stat .stat-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Pricing — Light (Cream) Theme */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--section-cream);
    position: relative;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, var(--section-cream) 100%);
    pointer-events: none;
}

.pricing .section-label {
    color: var(--accent);
}

.pricing .section-title {
    color: #1A1A1A;
}

.pricing .section-desc {
    color: #555555;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: flex-start;
}

.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.pricing-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: var(--card-radius);
    padding: 32px;
    position: relative;
}

.pricing-recommended {
    border-color: var(--green);
    box-shadow: 0 4px 24px rgba(52, 211, 153, 0.15);
}

.pricing-sponsor {
    border-color: var(--accent);
    box-shadow: 0 4px 24px rgba(255, 107, 0, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--green);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
}

.sponsor-badge {
    background: var(--accent);
}

.pricing-name {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 8px;
}

.pricing-price {
    margin-bottom: 8px;
}

.pricing-price .price-amount {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 36px;
    color: #1A1A1A;
}

.pricing-price .price-period {
    font-size: 14px;
    color: #666666;
}

.pricing-leads {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 24px;
    padding: 12px;
    background: #F5F5F5;
    border-radius: 8px;
}

.pricing-leads .leads-count {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--accent);
}

.pricing-leads .leads-label {
    font-size: 12px;
    color: #888888;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    font-size: 13px;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #555555;
}

.pricing-features li.included::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.pricing-features li.excluded {
    color: #AAAAAA;
}

.pricing-features li.excluded::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #AAAAAA;
}

.pricing-promo {
    margin-top: 16px;
    padding: 12px;
    background: var(--accent-glow);
    border: 1px dashed var(--accent);
    border-radius: 8px;
    text-align: center;
}

.promo-code {
    display: block;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 2px;
}

.promo-text {
    font-size: 11px;
    color: #555555;
}

/* Pricing card buttons — light theme overrides */
.pricing-card .btn-secondary {
    background: #FFFFFF;
    border: 2px solid #333333;
    color: #333333;
}

.pricing-card .btn-secondary:hover {
    background: #333333;
    color: #FFFFFF;
}

.pricing-card .btn-primary {
    color: #FFFFFF;
}

/* How it Works */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--section-medium);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    padding: 28px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.step-number {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 16px;
}

.step-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Bonus Info */
.bonus-info {
    padding: 60px 0;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--accent);
    border-radius: var(--card-radius);
    padding: 32px;
    box-shadow: 0 0 40px var(--accent-glow);
}

.info-icon {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 16px;
    border-radius: 12px;
    flex-shrink: 0;
}

.info-content h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Comparison Table */
.comparison {
    padding: var(--section-padding) 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-secondary);
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--border-primary);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    border-bottom: 1px solid var(--border-primary);
}

.comparison-table thead th {
    background: var(--bg-tertiary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 12px;
}

.comparison-table thead th:first-child {
    width: 40%;
}

.comparison-table thead th:not(:first-child) {
    text-align: center;
}

.comparison-table tbody td:not(:first-child) {
    text-align: center;
}

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

.comparison-table .check {
    color: var(--green);
    font-weight: 600;
}

.comparison-table .no {
    color: var(--text-muted);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.page-header-about::before {
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 50%);
}

/* Story */
.story {
    padding: var(--section-padding) 0;
}

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

.story-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.story-stat {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--card-radius);
    padding: 28px;
    text-align: center;
}

.story-stat .stat-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 4px;
}

.story-stat .stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Mission */
.mission {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.mission-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.mission-quote {
    font-family: var(--font-display);
    font-size: 120px;
    color: var(--accent);
    opacity: 0.2;
    line-height: 0.5;
    margin-bottom: 20px;
}

.mission-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.5;
    margin-bottom: 32px;
}

.mission-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.author-name {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.author-title {
    font-size: 12px;
    color: var(--text-muted);
}

/* Values */
.values {
    padding: var(--section-padding) 0;
}

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

.value-item {
    background: var(--section-cream);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--card-radius);
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.value-number {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 16px;
}

.value-item h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-item p {
    font-size: 14px;
    color: var(--text-dark-secondary);
    line-height: 1.7;
}

/* Who is Here */
.who-is-here {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.role-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--card-radius);
    padding: 28px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.role-highlight {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.15);
}

.role-icon {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
    background: var(--accent);
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 16px;
}

.role-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.role-card p {
    font-size: 12px;
    color: var(--text-dark-secondary);
    line-height: 1.5;
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: var(--card-radius);
    padding: 36px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-content .modal-title,
.modal-content h3 {
    color: #1A1A1A;
}

.modal-content .modal-desc,
.modal-content p {
    color: #555555;
}

.modal-content .form-group label {
    color: #1A1A1A;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #EEEEEE;
    color: #1A1A1A;
    border-color: #CCCCCC;
}

.modal-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
}

.modal-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.lead-form .form-group {
    margin-bottom: 16px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.btn-full {
    width: 100%;
}

.btn-small {
    padding: 10px 16px;
    font-size: 12px;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid,
    .pricing-grid-4 {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-stats {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-timeline {
        flex-wrap: wrap;
    }

    .step-arrow {
        display: none;
    }

    .step-card {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 20px;
    }

    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .proof-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .proof-stat {
        padding: 16px;
    }

    .proof-stat-number {
        font-size: 24px;
    }

    .pricing-toggle {
        width: 100%;
    }

    .toggle-btn {
        flex: 1;
        padding: 10px 12px;
        font-size: 13px;
    }

    .step-card {
        flex: 0 0 100%;
    }

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

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .info-box {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   DECORATIVE ART ELEMENTS
   ============================================ */

/* Floating Art Element */
.art-float {
    position: absolute;
    pointer-events: none;
    opacity: 0.35;
    filter: grayscale(100%) contrast(1.1);
    z-index: 0;
}

.art-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.art-float-right {
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
}

.art-float-left {
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;
}

.art-float-corner {
    width: 200px;
    height: 200px;
}

.art-float-corner.top-right {
    top: 0;
    right: 0;
}

.art-float-corner.bottom-left {
    bottom: 0;
    left: 0;
}

/* Section with Art Background */
.section-art-bg {
    position: relative;
    overflow: hidden;
}

.section-art-bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.1;
    filter: grayscale(100%);
    pointer-events: none;
}

/* Decorative Divider with Art */
.art-divider {
    position: relative;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.art-divider-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.art-divider-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
}

.art-divider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 20%, transparent 80%, var(--bg-primary) 100%);
}

.art-divider-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.art-divider-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--bg-primary);
    padding: 8px 24px;
    border: 1px solid var(--border-secondary);
    border-radius: 4px;
}

/* Mini Art Thumbnails */
.art-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-secondary);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.art-thumb:hover {
    opacity: 1;
    border-color: var(--accent);
    transform: scale(1.05);
}

.art-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
}

/* Inline Art Decoration */
.inline-art {
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin: 0 8px;
    opacity: 0.4;
}

.inline-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
}

/* Section Accent Lines */
.section-accent {
    position: relative;
}

.section-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Improved Step Numbers */
.step-number-art {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: #000;
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* Icon Boxes with Glow */
.icon-box-glow {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-box-glow:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.icon-box-glow svg {
    color: var(--accent);
}

/* Highlight Badge */
.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--accent-glow);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
}

/* Price Highlight */
.price-highlight {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 32px;
    color: var(--text-primary);
    text-shadow: 0 0 30px var(--accent-glow);
}

.price-free {
    color: var(--green);
    text-shadow: 0 0 30px var(--green-glow);
}

/* Better Form Fields */
.form-field-icon {
    position: relative;
}

.form-field-icon input {
    padding-left: 44px;
}

.form-field-icon .field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* Social Links Styled */
.social-link-styled {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.2s ease;
}

.social-link-styled:hover {
    border-color: var(--accent);
    background: var(--bg-secondary);
}

.social-link-styled svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   FOUNDER SECTION
   ============================================ */

.founder {
    padding: var(--section-padding) 0;
    background: var(--section-light);
}

.founder-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.founder-photo {
    position: relative;
}

.founder-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--border-secondary);
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.founder-img:hover {
    filter: grayscale(0%);
    border-color: var(--accent);
}

.founder-social {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.founder-content {
    padding-top: 20px;
}

.founder-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 36px;
    margin: 8px 0 4px;
}

.founder-title {
    font-size: 15px;
    color: var(--accent);
    margin-bottom: 24px;
}

.founder-message {
    margin-bottom: 24px;
}

.founder-message p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.founder-message strong {
    color: var(--text-primary);
}

.founder-signature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.signature-line {
    font-size: 24px;
    color: var(--accent);
}

.signature-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    font-style: italic;
}

@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .founder-photo {
        max-width: 250px;
        margin: 0 auto;
    }

    .founder-name {
        font-size: 28px;
    }

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

/* ============================================
   LIGHT (BLUEPRINT) SECTIONS
   ============================================ */

.section-light-theme {
    background: var(--section-cream);
    color: var(--text-dark);
}

.section-light-theme .section-label {
    color: var(--accent);
}

.section-light-theme .section-title {
    color: var(--text-dark);
}

.section-light-theme .section-desc,
.section-light-theme p {
    color: var(--text-dark-secondary);
}

.section-light-theme .accent {
    color: var(--accent);
}

/* Light section with blueprint pattern */
.section-blueprint {
    background: var(--section-paper);
    position: relative;
}

.section-blueprint::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Light cards */
.card-light {
    background: white;
    border: 1px solid #D4CFC2;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-light:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Light buttons */
.section-light-theme .btn-primary {
    background: var(--accent);
    color: white;
}

.section-light-theme .btn-secondary {
    background: #FFFFFF;
    border: 2px solid #333333;
    color: #333333;
}

.section-light-theme .btn-secondary:hover {
    background: #333333;
    color: #FFFFFF;
}

/* Light form fields */
.section-light-theme input,
.section-light-theme select,
.section-light-theme textarea {
    background: white;
    border-color: #D4CFC2;
    color: var(--text-dark);
}

.section-light-theme input::placeholder {
    color: #999;
}

/* Art overlay for light sections */
.section-light-art {
    position: relative;
    overflow: hidden;
}

.section-light-art .art-bg {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    height: 80%;
    opacity: 0.15;
    pointer-events: none;
}

.section-light-art .art-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) contrast(1.5);
}
