/* ── Hero ── */
.hero {
    padding: 100px 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 560px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid var(--border-glow);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--accent-cyan);
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-content {
    flex: 1;
    max-width: 560px;
    text-align: left;
}

.hero-content h1,
.hero-content h2 {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.hero-content h1 span,
.hero-content h2 span {
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

.hero-stat {
    text-align: left;
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--accent-cyan);
    margin-bottom: 4px;
}

.hero-stat span {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stat--gift strong {
    color: #fbbf24;
}

.welcome-promo--hero {
    margin: 20px 0 24px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* ── Hero web console (replaces phone mockup) ── */
.hero-console {
    flex: 1;
    max-width: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-browser {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glow);
    background: rgba(8, 14, 28, 0.92);
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(0, 212, 255, 0.08);
    overflow: hidden;
}

.hero-browser-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.35);
}

.hero-browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.35);
}

.hero-browser-dot:first-child {
    background: #f87171;
}

.hero-browser-dot:nth-child(2) {
    background: #fbbf24;
}

.hero-browser-dot:nth-child(3) {
    background: #4ade80;
}

.hero-browser-url {
    flex: 1;
    margin-left: 8px;
    padding: 5px 12px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-browser-body {
    padding: 16px;
}

.hero-console-mock {
    margin-bottom: 12px;
}

.hero-console-task {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    background: rgba(0, 212, 255, 0.04);
    font-size: 12px;
}

.hero-console-task-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.hero-console-task-label i {
    margin-right: 6px;
    color: var(--accent-cyan);
}

.hero-console-task-status {
    color: #4ade80;
    font-size: 11px;
    white-space: nowrap;
}

.hero-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a2332 0%, #0d1520 100%);
    border-radius: 36px;
    padding: 12px;
    position: relative;
    border: 1px solid var(--border-glow);
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.1),
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 212, 255, 0.1);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: #0a0f1a;
    border-radius: 0 0 12px 12px;
    z-index: 10;
}

.screen {
    width: 100%;
    height: 100%;
    background: #0a1020;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.web-preview {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(0, 212, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, #0a1625 0%, #0d1a30 100%);
    background-size: 20px 20px, 20px 20px, 100% 100%;
    animation: scan 4s linear infinite;
}

.hero-app-preview {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    background: #fff;
    border-radius: 28px;
}

.web-preview::after {
    content: 'LOADING APP...';
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--accent-cyan);
    opacity: 0.7;
}

@keyframes scan {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 20px 20px, 20px 20px, 0 0; }
}

/* ── Features ── */
.features {
    background: transparent;
    padding: 0;
}

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

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

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

.feature-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    padding: 32px 28px;
    border-radius: var(--radius-md);
    transition: all 0.3s;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-tech);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 22px;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.feature-card h3,
.feature-card h4 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--text-primary);
}

.feature-card h3::after,
.feature-card h4::after {
    display: none;
}

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

/* ── Convert ── */
.convert-section {
    background: transparent;
}

.convert-form {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    text-align: left;
}

/* ── Templates ── */
.templates-section {
    background: transparent;
    padding: 0;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.template-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    padding: 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    position: relative;
}

.template-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}

.template-card .template-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 128, 255, 0.12);
    border-radius: var(--radius-sm);
    font-size: 26px;
    margin-bottom: 16px;
}

.template-card h3,
.template-card h4 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--text-primary);
}

.template-card h3::after,
.template-card h4::after {
    display: none;
}

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

.template-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border-subtle);
    color: var(--accent-cyan);
    font-size: 12px;
    font-weight: 600;
}

/* ── About ── */
.about-section {
    padding: 0;
}

.about-content {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    text-align: left;
}

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

.about-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
        gap: 48px;
    }

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

    .hero-content h2 {
        font-size: 32px;
    }

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

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

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

    .hero-console {
        max-width: 100%;
    }
}

/* ── Section head row ── */
.home-block-section {
    padding: 80px 40px;
    text-align: left;
    max-width: none;
}

.home-block-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.home-block-inner--narrow {
    max-width: 800px;
}

.section-head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 28px;
}

.section-head-row--solo {
    justify-content: flex-start;
}

.section-head-copy {
    text-align: left;
}

.section-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.25;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-tech);
    margin: 14px 0 0;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
}

.section-more-link {
    font-size: 14px;
    color: var(--accent-cyan);
    text-decoration: none;
    white-space: nowrap;
    padding-bottom: 4px;
}

.section-more-link:hover {
    text-decoration: underline;
}

/* ── Page hero (inner pages) ── */
.page-hero--compact {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    text-align: center;
}

.page-hero--compact h1 {
    font-family: var(--font-display);
    font-size: 36px;
    margin: 12px 0 16px;
}

.page-hero-desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

/* ── Articles ── */
.articles-section {
    padding: 0;
}

.articles-section.home-block-section {
    padding-top: 80px;
    padding-bottom: 48px;
}

.articles-section--list {
    padding-top: 0;
    padding-bottom: 80px;
}

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

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

.article-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: left;
    transition: border-color 0.2s, transform 0.2s;
}

.article-card:hover {
    border-color: rgba(0, 212, 255, 0.35);
    transform: translateY(-2px);
}

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

.article-card-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 10px;
}

.article-card-title::after {
    display: none;
}

.article-card-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.article-card-title a:hover {
    color: var(--accent-cyan);
}

.article-card-summary {
    flex: 1;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-read-more {
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-cyan);
    text-decoration: none;
}

.article-read-more i {
    font-size: 11px;
    margin-left: 4px;
}

/* ── Article detail ── */
.article-detail {
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    text-align: left;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 20px;
}

.article-back:hover {
    color: var(--accent-cyan);
}

.article-detail-head h1 {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1.35;
    margin: 12px 0 16px;
}

.article-lead {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.article-body.prose {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.85;
}

.article-body.prose h2 {
    font-size: 20px;
    color: var(--text-primary);
    margin: 28px 0 12px;
}

.article-body.prose p {
    margin-bottom: 16px;
}

.article-body.prose ul {
    margin: 0 0 16px 20px;
}

.article-body.prose li {
    margin-bottom: 8px;
}

.article-body.prose h3 {
    font-size: 17px;
    color: var(--text-primary);
    margin: 22px 0 10px;
}

.article-body.prose ol {
    margin: 0 0 16px 20px;
}

.article-body.prose pre {
    margin: 12px 0 16px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.35);
    overflow-x: auto;
}

.article-body.prose pre code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-primary);
    white-space: pre-wrap;
    word-break: break-word;
}

.article-body.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 16px;
    font-size: 14px;
}

.article-body.prose th,
.article-body.prose td {
    padding: 10px 12px;
    border: 1px solid var(--border-subtle);
    text-align: left;
    vertical-align: top;
}

.article-body.prose th {
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
}

.article-body.prose code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.92em;
}

.article-detail-foot {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    font-size: 14px;
    color: var(--text-muted);
}

.article-detail-foot a {
    color: var(--accent-cyan);
}

.legal-document {
    padding-top: 0;
}

.legal-prose h2 {
    font-size: 18px;
    color: var(--text-primary);
    margin: 24px 0 10px;
}

.legal-prose h2:first-child {
    margin-top: 0;
}

.legal-prose ul {
    margin: 0 0 16px 20px;
}

.legal-prose li {
    margin-bottom: 8px;
}

/* ── FAQ ── */
.faq-section {
    padding: 0;
}

.faq-section.home-block-section {
    padding-top: 48px;
    padding-bottom: 80px;
}

.faq-section--page {
    padding-top: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-chevron {
    flex-shrink: 0;
    font-size: 12px;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 18px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

/* ── Footer nav ── */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-bottom: 16px;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
}

.footer-nav a:hover {
    color: var(--accent-cyan);
}

/* ── Pricing ── */
.pricing-section-desc {
    margin: 12px 0 0;
    max-width: 640px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.pricing-banner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

@media (max-width: 960px) {
    .pricing-banner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .pricing-banner {
        grid-template-columns: 1fr;
    }
}

.pricing-banner-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-banner-item--accent {
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.08);
}

.pricing-banner-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-banner-item strong {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-primary);
}

.pricing-banner-item small {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.45;
}

.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.pricing-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.pricing-tab:hover {
    border-color: var(--border-glow);
    color: var(--text-primary);
}

.pricing-tab.is-active {
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.45);
    color: var(--accent-cyan);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
}

.pricing-panel {
    display: none;
}

.pricing-panel.is-active {
    display: block;
}

.pricing-panel-head {
    margin-bottom: 24px;
}

.pricing-panel-head h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-panel-head h3::after {
    display: none;
}

.pricing-panel-head p {
    margin: 0 0 12px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    max-width: 720px;
}

.pricing-panel-base {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-panel-base strong {
    color: var(--accent-cyan);
    font-weight: 600;
}

.pricing-panel-base-sep {
    opacity: 0.5;
}

.pricing-panel-base-note {
    font-size: 13px;
    color: var(--text-muted);
}

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

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

.pricing-type-card,
.pricing-tier-card {
    position: relative;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: left;
}

.pricing-tier-card--featured {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 28px rgba(168, 85, 247, 0.12);
    padding-top: 44px;
}

.pricing-tier-head h4 {
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-tier-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    right: auto;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(168, 85, 247, 0.2);
    color: #c4b5fd;
    border: 1px solid rgba(168, 85, 247, 0.35);
}

.pricing-type-head,
.pricing-tier-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pricing-type-head i,
.pricing-tier-head i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
    font-size: 16px;
}

.pricing-tier-card--featured .pricing-tier-head i {
    background: rgba(168, 85, 247, 0.15);
    color: #c4b5fd;
}

.pricing-type-head h4 {
    margin: 0;
    flex: 1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-type-head h4::after,
.pricing-tier-head h4::after {
    display: none;
}

.pricing-type-range {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-cyan);
    white-space: nowrap;
}

.pricing-type-desc,
.pricing-tier-desc {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-secondary);
}

.pricing-tier-price {
    margin-bottom: 14px;
}

.pricing-tier-price-main {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.pricing-tier-price-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.pricing-type-highlights,
.pricing-tier-highlights {
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.pricing-type-highlights li,
.pricing-tier-highlights li {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pricing-type-highlights i,
.pricing-tier-highlights i {
    color: var(--accent-cyan);
    font-size: 11px;
    margin-top: 3px;
}

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

@media (max-width: 640px) {
    .pricing-tier-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-feature-block {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
}

.pricing-feature-block-title {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pricing-feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.pricing-feature-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

.pricing-feature-list li span {
    flex: 1;
}

.pricing-feature-list li em {
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-cyan);
    white-space: nowrap;
}

.pricing-feature-list--compact li {
    justify-content: flex-start;
}

.pricing-feature-list--compact li::before {
    content: '·';
    color: var(--accent-cyan);
    margin-right: 6px;
}

.pricing-cta {
    margin-top: 36px;
    text-align: center;
}

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

.pricing-cta-note {
    margin: 14px 0 0;
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .home-block-section {
        padding: 60px 20px;
    }

    .section-head-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .section-title {
        font-size: 26px;
    }

    .page-hero--compact,
    .article-detail {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ── Home blocks: override global section h2/h3 (style.css) ── */
.home-block-section h2.section-title,
.home-block-section h3.section-title {
    margin-bottom: 0;
}

.home-block-section h2.section-title::after,
.home-block-section h3.section-title::after {
    margin: 14px 0 0;
}

.page-hero--compact h1 {
    margin-bottom: 0;
}

.page-hero--compact h1::after {
    display: none;
}

.product-demo-contact h2 {
    margin-bottom: 12px;
}

.product-demo-contact h2::after {
    display: none;
}

/* ── Product demo (service intro) ── */
.page-hero--compact.product-demo-hero {
    padding-top: 72px;
    padding-bottom: 28px;
}

.product-demo-hero .page-hero-desc {
    max-width: 680px;
    margin: 0 auto;
}

.product-demo-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.product-demo-section {
    padding-top: 56px;
    padding-bottom: 56px;
}

.product-demo-hero + .product-demo-section {
    padding-top: 40px;
}

.product-demo-section--alt {
    background: rgba(0, 212, 255, 0.03);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.section-head-row .section-title::after {
    margin-top: 12px;
}

.section-head-copy .section-label {
    display: block;
}

.product-demo-section-desc {
    margin: 8px 0 0;
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 640px;
}

.product-demo-flow {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
    counter-reset: demo-flow;
}

.product-demo-flow li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.product-demo-flow-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.12);
    color: var(--accent-cyan);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
}

.product-demo-flow li > div {
    flex: 1;
    min-width: 0;
}

.product-demo-flow strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.product-demo-flow p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
}

.product-demo-screens {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.product-demo-screen {
    margin: 0;
    min-width: 0;
}

.product-demo-screen figcaption {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.45;
}

.product-demo-mock {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(8, 14, 28, 0.85);
    box-shadow: var(--shadow-card);
}

.product-demo-mock-bar {
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-cyan);
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(0, 212, 255, 0.06);
}

.product-demo-mock-bar i {
    margin-right: 6px;
}

.product-demo-mock-body {
    padding: 14px;
}

.product-demo-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    font-size: 12px;
}

.product-demo-field:last-child {
    border-bottom: none;
}

.product-demo-field label {
    color: var(--text-muted);
    font-size: 11px;
}

.product-demo-field span {
    color: var(--text-primary);
    word-break: break-all;
}

.product-demo-field--badge span {
    color: var(--accent-cyan);
}

.product-demo-task {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    font-size: 12px;
}

.product-demo-task:last-child {
    border-bottom: none;
}

.product-demo-task-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
}

.product-demo-task > div {
    flex: 1;
    min-width: 0;
}

.product-demo-task strong {
    display: block;
    color: var(--text-primary);
}

.product-demo-task small {
    color: var(--text-muted);
}

.product-demo-task-dl {
    flex-shrink: 0;
    margin-left: auto;
    color: var(--accent-cyan);
    font-size: 11px;
    white-space: nowrap;
}

.product-demo-task--muted {
    opacity: 0.7;
}

.product-demo-pay-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: var(--radius-sm);
    background: rgba(0, 212, 255, 0.08);
    font-size: 13px;
}

.product-demo-pay-card strong {
    font-size: 18px;
    color: var(--accent-cyan);
}

.product-demo-pay-methods {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.product-demo-pay-methods span {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    font-size: 11px;
    color: var(--text-muted);
}

.product-demo-pay-methods span.is-active {
    border-color: var(--border-glow);
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.08);
}

.product-demo-pay-note {
    margin: 0;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
}

.product-demo-pay-info dl {
    margin: 0;
    display: grid;
    gap: 14px;
}

.product-demo-pay-info dt {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 4px;
}

.product-demo-pay-info dd {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.product-demo-contact h2 {
    margin: 0 0 12px;
    font-size: 18px;
    color: var(--text-primary);
}

.product-demo-contact p {
    margin: 0 0 10px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
}

.product-demo-contact a {
    color: var(--accent-cyan);
}

/* ── Homepage Try It CTA ── */
.product-demo-cta {
    padding-top: 48px;
    padding-bottom: 48px;
}

.product-demo-cta-card {
    text-align: center;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glow);
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.08) 0%, rgba(12, 20, 38, 0.6) 100%);
}

.product-demo-cta-card .section-label {
    display: inline-block;
}

.product-demo-cta-card h2.section-title {
    margin-bottom: 12px;
}

.product-demo-cta-card h2.section-title::after {
    margin: 12px auto 0;
}

.product-demo-cta-card > p {
    max-width: 560px;
    margin: 0 auto 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.product-demo-cta-card .product-demo-hero-actions {
    justify-content: center;
}

@media (max-width: 640px) {
    .product-demo-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .product-demo-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .product-demo-cta-card {
        padding: 28px 20px;
    }

    .product-demo-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

/* ── Homepage service flow ── */
.home-service-flow-desc {
    margin: 12px 0 0;
    max-width: 680px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.home-service-flow-list {
    margin-top: 28px;
}

.home-service-flow-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

@media (max-width: 640px) {
    .home-service-flow-actions {
        flex-direction: column;
    }

    .home-service-flow-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
