/* QR Order System - product landing page (page scoped) */
.qr-page {
    --qr-navy: #0f2741;
    --qr-navy-2: #133a5e;
    --qr-navy-3: #1e4d73;
    --qr-teal: #14b8a6;
    --qr-teal-2: #0ea5a4;
    --qr-teal-deep: #0f766e;
    --qr-ink: #0f2236;
    --qr-text: #334a60;
    --qr-muted: #64788c;
    --qr-line: rgba(15, 39, 65, 0.12);
    --qr-line-soft: rgba(148, 163, 184, 0.32);
    --qr-card: #ffffff;
    --qr-soft: #f1f6fb;
    --qr-soft-2: #e8f1f8;
    --qr-radius: 26px;
    --qr-radius-sm: 16px;
    --qr-shadow: 0 24px 60px rgba(15, 39, 65, 0.14);
    --qr-shadow-soft: 0 14px 34px rgba(15, 39, 65, 0.09);
    color: var(--qr-text);
    background:
        radial-gradient(900px 520px at 8% 0%, rgba(20, 184, 166, 0.12), transparent 70%),
        radial-gradient(720px 520px at 96% 2%, rgba(19, 58, 94, 0.14), transparent 66%),
        linear-gradient(180deg, #f7fbff 0%, #f4f8fc 44%, #eef5fb 100%);
    padding-bottom: 64px;
}

.qr-page, .qr-page * { box-sizing: border-box; }
.qr-page img { max-width: 100%; height: auto; display: block; }
.qr-page a { color: var(--qr-teal-deep); }
.qr-shell { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

/* ===== Hero ===== */
.qr-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 64px;
    background:
        radial-gradient(620px 360px at 84% 12%, rgba(20, 184, 166, 0.28), transparent 70%),
        linear-gradient(135deg, var(--qr-navy) 0%, var(--qr-navy-2) 52%, var(--qr-navy-3) 100%);
    color: #eaf3fb;
}
.qr-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}
.qr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #7ff0e3;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.qr-eyebrow:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--qr-teal), var(--qr-teal-2));
    box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.18);
}
.qr-hero h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.9rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}
.qr-hero h1 .qr-accent {
    background: linear-gradient(135deg, #5eead4, #2dd4bf 60%, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.qr-hero-sub {
    margin: 0 0 18px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #bfe6f5;
}
.qr-hero-lead {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.95;
    color: #d6e6f2;
    max-width: 620px;
}
.qr-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.qr-btn, .qr-btn-secondary, .qr-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 0.97rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.qr-btn {
    color: #06312c !important;
    background: linear-gradient(135deg, #5eead4, #14b8a6);
    box-shadow: 0 18px 36px rgba(20, 184, 166, 0.34);
}
.qr-btn-secondary {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.qr-btn-ghost {
    color: #eaf3fb !important;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.32);
}
.qr-btn:hover, .qr-btn-secondary:hover, .qr-btn-ghost:hover { transform: translateY(-2px); }

.qr-hero-visual {
    position: relative;
    padding: 16px;
    border-radius: var(--qr-radius);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 70px rgba(8, 22, 38, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.qr-hero-visual img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}
.qr-hero-em {
    color: #7ff0e3;
    font-weight: 900;
}
.qr-hero-visual { position: relative; }
.qr-hero-badge {
    position: absolute;
    top: 26px;
    left: 26px;
    z-index: 2;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #06312c;
    background: linear-gradient(135deg, #5eead4, #14b8a6);
    box-shadow: 0 12px 26px rgba(20, 184, 166, 0.4);
}

/* ===== Section base ===== */
.qr-section { padding: 56px 0; scroll-margin-top: 110px; }
.qr-section-head { max-width: 820px; margin: 0 auto 36px; text-align: center; }
.qr-section-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.12);
    color: var(--qr-teal-deep);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.qr-section-head h2 {
    margin: 0 0 12px;
    color: var(--qr-ink);
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
}
.qr-section-head p { margin: 0; color: var(--qr-text); font-size: 1rem; line-height: 1.9; }

/* ===== Features ===== */
.qr-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.qr-feature-card {
    padding: 28px;
    border-radius: var(--qr-radius-sm);
    background: var(--qr-card);
    border: 1px solid var(--qr-line-soft);
    box-shadow: var(--qr-shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.qr-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--qr-shadow);
    border-color: rgba(20, 184, 166, 0.4);
}
.qr-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--qr-navy-2), var(--qr-teal-deep));
    color: #fff;
}
.qr-feature-card h3 { margin: 0 0 8px; color: var(--qr-ink); font-size: 1.18rem; }
.qr-feature-card p { margin: 0; color: var(--qr-muted); line-height: 1.8; font-size: 0.95rem; }
.qr-feature-card.is-new {
    position: relative;
    border-color: rgba(20, 184, 166, 0.5);
    background: linear-gradient(180deg, #ffffff 0%, #f0fbf8 100%);
}
.qr-feature-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 4px 11px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #06312c;
    background: linear-gradient(135deg, #5eead4, #14b8a6);
}

/* ===== Avatar Order ===== */
.qr-avatar-card {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 40px;
    align-items: center;
    padding: 36px;
    border-radius: var(--qr-radius);
    background: linear-gradient(135deg, var(--qr-navy) 0%, var(--qr-navy-2) 52%, var(--qr-navy-3) 100%);
    color: #eaf3fb;
    box-shadow: var(--qr-shadow);
}
.qr-avatar-media {
    position: relative;
    padding: 14px;
    border-radius: var(--qr-radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 56px rgba(8, 22, 38, 0.45);
}
.qr-avatar-media img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}
.qr-avatar-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    padding: 6px 13px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #06312c;
    background: linear-gradient(135deg, #5eead4, #14b8a6);
    box-shadow: 0 12px 26px rgba(20, 184, 166, 0.4);
}
.qr-avatar-copy .qr-section-label {
    background: rgba(20, 184, 166, 0.22);
    color: #7ff0e3;
}
.qr-avatar-copy h2 {
    margin: 14px 0 14px;
    color: #fff;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    line-height: 1.22;
    letter-spacing: -0.03em;
}
.qr-avatar-lead {
    margin: 0 0 22px;
    color: #d6e6f2;
    font-size: 1.02rem;
    line-height: 1.9;
}
.qr-avatar-list {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: grid;
    gap: 14px;
}
.qr-avatar-list li {
    position: relative;
    padding-left: 30px;
}
.qr-avatar-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5eead4, #14b8a6);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.18);
}
.qr-avatar-list strong {
    display: block;
    color: #fff;
    font-size: 1.02rem;
    margin-bottom: 3px;
}
.qr-avatar-list span {
    display: block;
    color: #bcd4e6;
    font-size: 0.92rem;
    line-height: 1.75;
}
.qr-avatar-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ===== Gallery ===== */
.qr-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.qr-shot {
    background: var(--qr-card);
    border: 1px solid var(--qr-line-soft);
    border-radius: var(--qr-radius-sm);
    overflow: hidden;
    box-shadow: var(--qr-shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.qr-shot:hover { transform: translateY(-4px); box-shadow: var(--qr-shadow); }
.qr-shot-frame {
    margin: 0;
    background: linear-gradient(180deg, var(--qr-soft), var(--qr-soft-2));
    padding: 14px;
}
.qr-shot-frame img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--qr-line);
    background: #f3f7fa;
    padding: 12px;
}
.qr-shot figcaption {
    padding: 14px 18px 18px;
}
.qr-shot figcaption strong {
    display: block;
    color: var(--qr-ink);
    font-size: 1rem;
    margin-bottom: 4px;
}
.qr-shot figcaption span {
    display: block;
    color: var(--qr-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ===== Pricing ===== */
.qr-pricing-free {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: center;
    padding: 28px 32px;
    margin-bottom: 28px;
    border-radius: var(--qr-radius);
    background: linear-gradient(135deg, var(--qr-navy) 0%, var(--qr-teal-deep) 100%);
    color: #eafff9;
    box-shadow: var(--qr-shadow);
}
.qr-pricing-free .qr-free-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
}
.qr-pricing-free .qr-free-badge b { font-size: 1.5rem; color: #fff; }
.qr-pricing-free .qr-free-badge span { font-size: 0.82rem; color: #c7f7ee; }
.qr-pricing-free h3 { margin: 0 0 6px; color: #fff; font-size: 1.3rem; }
.qr-pricing-free p { margin: 0; color: #d8f5ee; line-height: 1.85; }

.qr-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.qr-plan {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: var(--qr-radius-sm);
    background: var(--qr-card);
    border: 1px solid var(--qr-line-soft);
    box-shadow: var(--qr-shadow-soft);
}
.qr-plan.is-featured {
    border-color: var(--qr-teal);
    box-shadow: 0 22px 50px rgba(20, 184, 166, 0.22);
}
.qr-plan-tag {
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    background: rgba(20, 184, 166, 0.14);
    color: var(--qr-teal-deep);
}
.qr-plan h3 { margin: 0 0 10px; color: var(--qr-ink); font-size: 1.22rem; }
.qr-plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--qr-line);
}
.qr-plan-price b { color: var(--qr-navy-2); font-size: 1.9rem; letter-spacing: -0.02em; }
.qr-plan-price span { color: var(--qr-muted); font-size: 0.92rem; font-weight: 700; }
.qr-plan p { margin: 0; color: var(--qr-text); line-height: 1.85; font-size: 0.95rem; }
.qr-pricing-note {
    margin-top: 22px;
    padding: 16px 20px;
    border-radius: var(--qr-radius-sm);
    background: var(--qr-soft);
    border: 1px solid var(--qr-line-soft);
    color: var(--qr-muted);
    font-size: 0.88rem;
    line-height: 1.8;
}

/* ===== Demo ===== */
.qr-demo-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    padding: 36px;
    border-radius: var(--qr-radius);
    background: linear-gradient(135deg, var(--qr-navy) 0%, var(--qr-navy-2) 56%, var(--qr-navy-3) 100%);
    color: #eaf3fb;
    box-shadow: var(--qr-shadow);
}
.qr-demo-card h2 { margin: 0 0 12px; color: #fff; font-size: clamp(1.6rem, 2.6vw, 2.4rem); }
.qr-demo-card p { margin: 0 0 14px; color: #d6e6f2; line-height: 1.9; }
.qr-demo-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.qr-cred {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--qr-radius-sm);
    padding: 22px 24px;
}
.qr-cred h3 {
    margin: 0 0 14px;
    color: #7ff0e3;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.qr-cred-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.qr-cred-row:last-of-type { border-bottom: none; }
.qr-cred-row span { color: #bcd4e6; font-size: 0.86rem; }
.qr-cred-row code {
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
    font-family: "Consolas", "SFMono-Regular", monospace;
}
.qr-cred-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.22);
    color: #7ff0e3;
    font-size: 0.74rem;
    font-weight: 900;
}
.qr-cred-note { margin: 14px 0 0; color: #aac4d8; font-size: 0.82rem; line-height: 1.7; }

/* ===== Contact CTA ===== */
.qr-contact {
    text-align: center;
    padding: 48px 36px;
    border-radius: var(--qr-radius);
    background: var(--qr-card);
    border: 1px solid var(--qr-line-soft);
    box-shadow: var(--qr-shadow-soft);
}
.qr-contact h2 { margin: 0 0 12px; color: var(--qr-ink); font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
.qr-contact p { margin: 0 auto 24px; color: var(--qr-text); line-height: 1.9; max-width: 640px; }
.qr-contact .qr-btn { color: #06312c !important; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .qr-hero-grid { grid-template-columns: 1fr; }
    .qr-hero-visual { order: -1; }
    .qr-feature-grid, .qr-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .qr-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .qr-demo-card { grid-template-columns: 1fr; }
    .qr-avatar-card { grid-template-columns: 1fr; }
    .qr-avatar-media { order: -1; }
}
@media (max-width: 720px) {
    .qr-hero { padding: 60px 0 44px; }
    .qr-shell { width: min(94%, 1140px); }
    .qr-section { padding: 40px 0; }
    .qr-feature-grid, .qr-plan-grid, .qr-gallery-grid { grid-template-columns: 1fr; }
    .qr-actions, .qr-demo-actions { flex-direction: column; }
    .qr-btn, .qr-btn-secondary, .qr-btn-ghost { width: 100%; }
    .qr-pricing-free { grid-template-columns: 1fr; text-align: center; }
    .qr-pricing-free .qr-free-badge { justify-self: center; }
    .qr-demo-card, .qr-contact { padding: 26px; }
    .qr-avatar-card { padding: 24px; }
    .qr-avatar-actions .qr-btn { width: 100%; }
}
