/* ============================================================
   QRBELL UI Components — qrbell-ui.css
   Logo | Hero Phone Mockup | WA Float | Cookie Banner | WA QR | Back to Top
   ============================================================ */

/* ══════════════════════════════════════════
   BACK TO TOP BUTTON
   ══════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9995;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}
.back-to-top svg {
    stroke: white;
    stroke-width: 2.5;
}
@media (max-width: 768px) {
    .back-to-top {
        bottom: 100px;
        right: 16px;
        width: 42px;
        height: 42px;
    }
}


/* ── Logo image in navbar ── */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.qrb-logo-img {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    object-fit: contain;
    background: #1e3a8a;
    flex-shrink: 0;
    padding: 3px;
}

/* ── Logo in footer brand ── */
.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 10px;
}
.footer-brand-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    background: #1e3a8a;
    padding: 4px;
    flex-shrink: 0;
}
.footer-brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

/* ══════════════════════════════════════════
   HERO SCENE — background image + phone overlay
   ══════════════════════════════════════════ */
.qrb-hero-scene {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    max-height: 480px;
}

.qrb-scene-bg {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: brightness(0.55);
    border-radius: 20px;
}

/* Gradient left side for readability */
.qrb-scene-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(15, 23, 42, 0.6) 0%,
        transparent 55%,
        transparent 100%);
    border-radius: 20px;
    pointer-events: none;
}

/* "QR Scanned" badge — bottom-left of scene */
.qrb-scan-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: qrb-badge-pop 0.5s ease 0.8s both;
}
@keyframes qrb-badge-pop {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Notification bubble — top-left */
.qrb-notif-bubble {
    position: absolute;
    top: 22px;
    left: 22px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(79, 70, 229, 0.4);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    animation: qrb-notif-slide 0.5s ease 0.4s both;
    max-width: 200px;
}
@keyframes qrb-notif-slide {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}
.qrb-notif-icon {
    font-size: 22px;
    animation: qrb-ring-shake 1.5s ease-in-out 1s infinite;
}
@keyframes qrb-ring-shake {
    0%, 100% { transform: rotate(0deg); }
    20%       { transform: rotate(-15deg); }
    40%       { transform: rotate(15deg); }
    60%       { transform: rotate(-10deg); }
    80%       { transform: rotate(10deg); }
}
.qrb-notif-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.qrb-notif-text strong {
    font-size: 13px;
    font-weight: 700;
}
.qrb-notif-text span {
    font-size: 11px;
    color: #94a3b8;
}

/* ── Phone Mockup ── */
.qrb-phone-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}

.qrb-phone-frame {
    width: 210px;
    background: linear-gradient(160deg, #1e1e2e, #12121f);
    border-radius: 40px;
    padding: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

/* Notch */
.qrb-phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 18px;
    background: #12121f;
    border-radius: 0 0 14px 14px;
    z-index: 20;
}

.qrb-phone-screen {
    background: linear-gradient(160deg, #0f0f1a 0%, #1a1a2e 100%);
    border-radius: 30px;
    height: 370px;
    overflow: hidden;
    position: relative;
}

/* ── Caller UI Inside Phone Screen ── */
.qrb-caller-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px 14px 16px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* subtle background glow */
.qrb-caller-ui::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    pointer-events: none;
}

/* Pulse rings */
.qrb-pulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(79, 70, 229, 0.5);
    animation: qrb-ring-pulse 2.2s ease-out infinite;
}
.qrb-pr1 { width: 90px;  height: 90px;  animation-delay: 0s; }
.qrb-pr2 { width: 125px; height: 125px; animation-delay: 0.55s; }
.qrb-pr3 { width: 160px; height: 160px; animation-delay: 1.1s; }

@keyframes qrb-ring-pulse {
    0%   { opacity: 0.8; transform: scale(0.75); }
    100% { opacity: 0;   transform: scale(1.4); }
}

/* Avatar */
.qrb-caller-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #4f46e5;
    margin-bottom: 10px;
    position: relative;
    z-index: 5;
    background: #000;
    flex-shrink: 0;
}
.qrb-caller-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qrb-caller-name {
    font-weight: 700;
    font-size: 13.5px;
    margin-bottom: 2px;
    z-index: 5;
    position: relative;
    color: #f1f5f9;
}
.qrb-caller-tag {
    font-size: 10.5px;
    color: #64748b;
    margin-bottom: 7px;
    z-index: 5;
    position: relative;
}
.qrb-mode-badge {
    background: rgba(79, 70, 229, 0.25);
    border: 1px solid rgba(79, 70, 229, 0.5);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 10px;
    color: #a5b4fc;
    margin-bottom: 6px;
    z-index: 5;
    position: relative;
    animation: qrb-blink 1.6s ease-in-out infinite;
}
@keyframes qrb-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.45; }
}
.qrb-call-status {
    font-size: 9.5px;
    color: #475569;
    margin-bottom: 18px;
    z-index: 5;
    position: relative;
}

/* Action buttons row */
.qrb-call-btns {
    display: flex;
    gap: 24px;
    z-index: 5;
    position: relative;
}
.qrb-btn-decline,
.qrb-btn-answer {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.qrb-btn-decline:hover,
.qrb-btn-answer:hover {
    transform: scale(1.1);
}
.qrb-btn-decline {
    background: #ef4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
}
.qrb-btn-answer {
    background: #22c55e;
    animation: qrb-answer-pulse 1.2s ease-in-out infinite;
}
@keyframes qrb-answer-pulse {
    0%, 100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.55); }
    50%       { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}

/* ── Mobile: stack phone below image ── */
@media (max-width: 860px) {
    .qrb-hero-scene {
        max-height: none;
        min-height: 420px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
        margin-right: 10px;
    }
    .qrb-scene-bg {
        position: absolute;
        height: 100%;
    }
    .qrb-phone-wrap {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        animation: none;
        margin: 0;
        display: flex;
        justify-content: center;
    }
    .qrb-phone-frame {
        width: 220px;
    }
    .qrb-phone-screen {
        height: 380px;
    }
    .qrb-notif-bubble {
        display: none;
    }
    .qrb-scan-badge {
        bottom: 16px;
        left: 16px;
        font-size: 11px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .qrb-hero-scene {
        min-height: 380px;
    }
    .qrb-phone-frame {
        width: 200px;
    }
    .qrb-phone-screen {
        height: 340px;
    }
}

/* ══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ══════════════════════════════════════════ */
.qrb-wa-float {
    position: fixed;
    bottom: 26px;
    right: 30px;
    z-index: 9990;
    width: 58px;
    height: 58px;
}
.qrb-wa-btn {
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: box-shadow 0.25s ease;
}
.qrb-wa-btn:hover {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}
.qrb-wa-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: #128C7E;
    color: white;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.qrb-wa-float:hover .qrb-wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ══════════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════════ */
.qrb-cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.35);
    z-index: 9980;
    animation: qrb-slide-up 0.4s ease;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
@keyframes qrb-slide-up {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);   opacity: 1; }
}
.qrb-cookie-bar p {
    margin: 0;
    font-size: 13px;
    color: #94a3b8;
    flex: 1;
    min-width: 220px;
    line-height: 1.5;
}
.qrb-cookie-bar p a {
    color: #818cf8;
    text-decoration: underline;
}
.qrb-cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.qrb-btn-accept,
.qrb-btn-necessary {
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: inherit;
}
.qrb-btn-accept {
    background: #4f46e5;
    color: white;
}
.qrb-btn-accept:hover {
    background: #4338ca;
}
.qrb-btn-necessary {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.qrb-btn-necessary:hover {
    background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 600px) {
    .qrb-cookie-bar {
        flex-direction: column;
        text-align: center;
        padding: 14px 16px;
    }
    .qrb-cookie-actions {
        width: 100%;
        justify-content: center;
    }
    .qrb-wa-float {
        bottom: 16px;
        right: 16px;
    }
}

/* ══════════════════════════════════════════
   WHATSAPP QR SECTION — contact.html
   ══════════════════════════════════════════ */
.qrb-wa-qr-section {
    margin-top: 48px;
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    color: white;
}
.qrb-wa-qr-text {
    flex: 1;
    min-width: 220px;
}
.qrb-wa-qr-text h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.qrb-wa-qr-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.qrb-wa-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #075E54;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.qrb-wa-open-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    color: #075E54;
}
.qrb-wa-qr-img-wrap {
    flex-shrink: 0;
    text-align: center;
}
.qrb-wa-qr-img {
    width: 190px;
    border-radius: 18px;
    display: block;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}
.qrb-wa-qr-caption {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 8px;
    text-align: center;
}
@media (max-width: 640px) {
    .qrb-wa-qr-section {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }
    .qrb-wa-qr-text {
        order: 2;
    }
    .qrb-wa-qr-img-wrap {
        order: 1;
        width: 100%;
    }
}

/* ══════════════════════════════════════════
   FOOTER — 5-column grid + address + bottom
   ══════════════════════════════════════════ */
.footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}

/* Address block below brand tagline */
.footer-addr {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 14px 0 16px;
    font-size: 13px;
}
.footer-addr span,
.footer-addr a {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: var(--text-gray);
    text-decoration: none;
    line-height: 1.55;
    transition: color 0.2s;
}
.footer-addr a:hover {
    color: var(--primary);
}
.footer-addr svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* "More coming soon" placeholder in Our Products */
.footer-more-soon {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 6px;
    opacity: 0.75;
}

/* Footer bottom: side-by-side layout */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
    text-align: left;
}
.footer-bottom p {
    margin: 0;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ══════════════════════════════════════════
   ABOUT PAGE STYLES
   ══════════════════════════════════════════ */

/* ── Hero ── */
.ab-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.ab-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.ab-hero-eyebrow svg {
    color: #22c55e;
}
.ab-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.ab-hero h1 span {
    color: #4f46e5;
}
.ab-hero p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Trust badges ── */
.ab-trust {
    padding: 0 0 60px;
}
.ab-trust-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.ab-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.ab-trust-icon {
    width: 44px;
    height: 44px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ab-trust-icon svg {
    width: 22px;
    height: 22px;
    color: #4f46e5;
}
.ab-trust-text {
    display: flex;
    flex-direction: column;
}
.ab-trust-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}
.ab-trust-text span {
    font-size: 12px;
    color: #64748b;
}

@media (max-width: 800px) {
    .ab-trust-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .ab-trust-inner {
        grid-template-columns: 1fr;
    }
}

/* ── Mission section ── */
.ab-mission {
    padding: 80px 0;
}
.ab-mission-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.ab-mission-text {
    max-width: 500px;
}
.ab-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4f46e5;
    background: #eef2ff;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.ab-mission h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 16px;
}
.ab-mission p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}
.ab-mission-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ab-stat-card {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    color: white;
}
.ab-stat-card:nth-child(2) {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
}
.ab-stat-card:nth-child(3) {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}
.ab-stat-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}
.ab-stat-label {
    font-size: 12px;
    opacity: 0.85;
    font-weight: 500;
}

@media (max-width: 800px) {
    .ab-mission-inner {
        grid-template-columns: 1fr;
    }
    .ab-mission-visual {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 500px) {
    .ab-mission-visual {
        grid-template-columns: 1fr;
    }
}

/* ── Company info ── */
.ab-company {
    padding: 80px 0;
    background: #f8fafc;
}
.ab-company-header {
    text-align: center;
    margin-bottom: 48px;
}
.ab-company-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}
.ab-company-header p {
    font-size: 15px;
    color: #64748b;
}
.ab-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ab-info-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
}
.ab-info-card-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.ab-info-card-icon svg {
    width: 22px;
    height: 22px;
    color: #4f46e5;
}
.ab-info-card strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.ab-info-card p {
    font-size: 14px;
    color: #0f172a;
    line-height: 1.5;
}
.ab-info-card a {
    color: #4f46e5;
    text-decoration: none;
}
.ab-info-card a:hover {
    text-decoration: underline;
}

@media (max-width: 800px) {
    .ab-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .ab-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Warranty ── */
.ab-warranty {
    padding: 80px 0;
}
.ab-warranty-header {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 48px;
}
.ab-warranty-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}
.ab-warranty-header p {
    font-size: 15px;
    color: #64748b;
}
.ab-warranty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.ab-claim-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
}
.ab-claim-card h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}
.ab-claim-badge {
    font-size: 11px;
    font-weight: 600;
    background: #fef3c7;
    color: #b45309;
    padding: 4px 10px;
    border-radius: 50px;
}
.ab-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ab-step {
    display: flex;
    gap: 14px;
}
.ab-step-num {
    width: 28px;
    height: 28px;
    background: #4f46e5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.ab-step-body strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 3px;
}
.ab-step-body span {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}
.ab-disclaimer-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 16px;
    padding: 28px;
}
.ab-disclaimer-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 16px;
}
.ab-disclaimer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ab-disclaimer-list li {
    font-size: 13px;
    color: #7f1d1d;
    padding: 8px 0;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}
.ab-disclaimer-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
    font-size: 16px;
}

@media (max-width: 700px) {
    .ab-warranty-grid {
        grid-template-columns: 1fr;
    }
}

/* ── CTA ── */
.ab-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    text-align: center;
}
.ab-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}
.ab-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}
.ab-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
}
.ab-cta .btn-primary {
    background: #4f46e5;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.ab-cta .btn-primary:hover {
    background: #4338ca;
}
.ab-cta .btn-ghost {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
}
.ab-cta .btn-ghost:hover {
    background: rgba(255,255,255,0.15);
}

@media (max-width: 500px) {
    .ab-cta-btns {
        flex-direction: column;
        align-items: center;
    }
