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

:root {
    --bg: #0a0a0f;
    --bg2: #111118;
    --bg3: #18181f;
    --surface: #1e1e28;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    --accent: #f5c842;
    --accent2: #ff7043;
    --accent3: #64d8a0;
    --text: #f0efe8;
    --muted: #888890;
    --muted2: #555560;
    --font-display: 'Unbounded', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -48px;
    z-index: 300;
    background: var(--accent);
    color: #0a0a0f;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: top 0.15s ease;
}

.skip-link:focus {
    top: 0.75rem;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.article-content a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 200, 66, 0.3);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.article-content a:hover {
    color: #ffd95a;
    border-bottom-color: #ffd95a;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 clamp(1rem, 5vw, 3rem);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.nav-cta {
    background: var(--accent);
    color: #0a0a0f;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    padding: 9px 20px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s, background 0.15s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #ffd95a;
    transform: translateY(-1px);
}

/* ARTICLE STYLES (NEW) */
.article-hero {
    padding: 140px clamp(1.5rem, 6vw, 4rem) 60px;
    text-align: center;
    position: relative;
}

.article-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 216, 160, 0.1) 0%, transparent 70%);
    top: 0;
    left: 50%;
    transform: translate(-50%, -20%);
    pointer-events: none;
    z-index: -1;
}

.article-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(100, 216, 160, 0.1);
    border: 1px solid rgba(100, 216, 160, 0.25);
    color: var(--accent3);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.article-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.article-hero .sub {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.article-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 6vw, 2rem) 80px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted);
}

.article-content p {
    margin-bottom: 1.75rem;
}

.article-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text);
    margin: 3.5rem 0 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.article-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text);
    margin: 2rem 0 1rem;
}

.article-content strong {
    color: var(--text);
    font-weight: 500;
}

.article-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 1rem;
}

.article-content li::marker {
    color: var(--accent);
}

.quote-box {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 0 16px 16px 0;
    padding: 2rem;
    margin: 3rem 0;
}

.quote-box p:last-child {
    margin-bottom: 0;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px clamp(1.5rem, 6vw, 4rem) 80px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(245, 200, 66, 0.1);
    border: 1px solid rgba(245, 200, 66, 0.25);
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

.hero-preview {
    margin-top: 4rem;
    width: min(980px, 100%);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(245, 200, 66, 0.08);
}

.hero-preview img {
    width: 100%;
    display: block;
    object-fit: cover;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
    max-width: 820px;
    margin: 0 auto 1.5rem;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #0a0a0f;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}

.btn-primary.is-disabled,
.btn-buy.is-disabled {
    background: rgba(245, 200, 66, 0.42);
    color: rgba(10, 10, 15, 0.7);
    cursor: not-allowed;
    box-shadow: none;
}

.btn-primary:hover {
    background: #ffd95a;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(245, 200, 66, 0.25);
}

.btn-primary.is-disabled:hover,
.btn-buy.is-disabled:hover {
    background: rgba(245, 200, 66, 0.42);
    transform: none;
    box-shadow: none;
}

.btn-primary .paw {
    font-size: 20px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
    font-size: 13px;
    color: var(--muted);
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-trust .check {
    color: var(--accent3);
    font-size: 15px;
}

/* PET ANIMATION */
.pet-showcase {
    margin-top: 5rem;
    position: relative;
    width: min(380px, 90vw);
    height: min(380px, 90vw);
    margin-left: auto;
    margin-right: auto;
}

.pet-window {
    width: 100%;
    height: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pet-window::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245, 200, 66, 0.05) 0%, transparent 70%);
}

.window-dots {
    position: absolute;
    top: 16px;
    left: 20px;
    display: flex;
    gap: 7px;
}

.window-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--border-hover);
}

.window-dots span:nth-child(1) {
    background: #ff5f57;
}

.window-dots span:nth-child(2) {
    background: #febc2e;
}

.window-dots span:nth-child(3) {
    background: #28c840;
}

.pet-avatar {
    font-size: clamp(80px, 20vw, 120px);
    animation: float 3s ease-in-out infinite;
    user-select: none;
    cursor: pointer;
    transition: transform 0.1s;
    position: relative;
    z-index: 1;
}

.pet-avatar:hover {
    transform: scale(1.1) rotate(-5deg);
}

.pet-avatar:active {
    transform: scale(0.95);
}

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

.pet-bubble {
    position: absolute;
    top: 28px;
    right: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px 16px 4px 16px;
    padding: 10px 14px;
    font-size: 13px;
    max-width: 160px;
    animation: bubble-appear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    z-index: 2;
}

@keyframes bubble-appear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* SECTION COMMON */
section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 4rem);
}

.section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--accent);
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

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

/* HOOK */
.hook {
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
}

.hook-text {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.4;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.hook-sub {
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    font-size: 1rem;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 4rem;
}

.feature-card {
    background: var(--bg);
    padding: 2.5rem 2rem;
    transition: background 0.2s;
}

.feature-card:hover {
    background: var(--bg3);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.feature-tag {
    display: inline-block;
    background: rgba(100, 216, 160, 0.1);
    border: 1px solid rgba(100, 216, 160, 0.2);
    color: var(--accent3);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    margin-top: 1rem;
}

/* PRIVACY */
.privacy {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.privacy-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

@media (max-width: 700px) {
    .privacy-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.privacy-visual {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.privacy-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
}

.privacy-item .icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(100, 216, 160, 0.1);
    border: 1px solid rgba(100, 216, 160, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.privacy-item strong {
    display: block;
    font-weight: 500;
    color: var(--text);
    font-size: 13px;
    margin-bottom: 1px;
}

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

/* SOCIAL PROOF */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: border-color 0.2s;
}

.review-card:hover {
    border-color: var(--border-hover);
}

.stars {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.reviewer {
    font-size: 13px;
    color: var(--muted);
    font-style: normal;
}

/* PRICING */
.pricing {
    text-align: center;
}

.pricing-card {
    max-width: 440px;
    margin: 3rem auto 0;
    background: var(--bg3);
    border: 1px solid rgba(245, 200, 66, 0.3);
    border-radius: 24px;
    padding: clamp(2rem, 5vw, 3rem);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.price-badge {
    display: inline-block;
    background: rgba(245, 200, 66, 0.12);
    border: 1px solid rgba(245, 200, 66, 0.25);
    color: var(--accent);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.price-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--text);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.price-note {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 2rem;
}

.pricing-divider {
    height: 1px;
    background: var(--border);
    margin: 2rem 0;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
}

.features-list .check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(100, 216, 160, 0.15);
    border: 1px solid rgba(100, 216, 160, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    color: var(--accent3);
}

.btn-buy {
    width: 100%;
    background: var(--accent);
    color: #0a0a0f;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 17px;
    padding: 18px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
    text-decoration: none;
    display: block;
}

.btn-buy:hover {
    background: #ffd95a;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(245, 200, 66, 0.25);
}

.guarantee {
    font-size: 13px;
    color: var(--muted);
    margin-top: 1rem;
}

.coming-soon-note {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.coming-soon-note strong {
    color: var(--text);
}

.coming-soon-rotator {
    display: block;
    margin-top: 0.35rem;
    color: var(--accent);
}

/* SECURITY SECTION */
.security {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.security-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.security-stage {
    margin-top: 3.5rem;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 720px) {
    .security-stage {
        grid-template-columns: 1fr;
    }
}

.security-screen {
    position: relative;
    background: #000;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 2.5rem 2rem;
    overflow: hidden;
}

.security-screen.off {
    background: #000;
}

.screen-scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.015) 2px,
            rgba(255, 255, 255, 0.015) 4px
    );
    pointer-events: none;
}

.screen-off-icon {
    font-size: 3rem;
    opacity: 0.15;
}

.screen-off-text {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
}

.screen-alert {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 70, 70, 0.15);
    border: 1px solid rgba(255, 70, 70, 0.35);
    color: #ff6b6b;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: blink-alert 1.5s ease-in-out infinite;
}

@keyframes blink-alert {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.alert-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff6b6b;
}

.security-steps {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.security-step {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.security-step:last-child {
    border-bottom: none;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    flex-shrink: 0;
    margin-top: 1px;
}

.step-num.red {
    background: rgba(255, 70, 70, 0.12);
    border: 1px solid rgba(255, 70, 70, 0.25);
    color: #ff6b6b;
}

.step-num.yellow {
    background: rgba(245, 200, 66, 0.12);
    border: 1px solid rgba(245, 200, 66, 0.25);
    color: var(--accent);
}

.step-num.green {
    background: rgba(100, 216, 160, 0.12);
    border: 1px solid rgba(100, 216, 160, 0.25);
    color: var(--accent3);
}

.step-content strong {
    display: block;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 3px;
}

.step-content p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.security-headline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.5rem;
}

.security-label-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 70, 70, 0.1);
    border: 1px solid rgba(255, 70, 70, 0.25);
    color: #ff6b6b;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}

/* FAQ */
.faq-list {
    max-width: 680px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.75rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    background: var(--bg3);
    transition: background 0.15s;
    gap: 1rem;
    user-select: none;
    width: 100%;
    border: 0;
    color: inherit;
    text-align: left;
    font-family: inherit;
}

.faq-q:hover {
    background: var(--surface);
}

.faq-arrow {
    font-size: 18px;
    color: var(--muted);
    flex-shrink: 0;
    transition: transform 0.25s;
}

.faq-a {
    display: none;
    padding: 0 1.75rem 1.4rem;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    background: var(--bg3);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.open .faq-a {
    display: block;
}

/* LEGAL */
.legal {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.legal-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.legal-card h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.legal-card p,
.legal-card li {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.legal-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-card strong {
    color: var(--text);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
}

.footer-links button {
    appearance: none;
    border: 0;
    padding: 0;
    background: none;
    color: var(--muted);
    text-decoration: none;
    font: inherit;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-links button:hover {
    color: var(--text);
}

.footer-contact-status {
    min-height: 1em;
}

/* CHECKOUT OVERLAY */
.checkout-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(6, 6, 10, 0.76);
    backdrop-filter: blur(16px);
}

.checkout-overlay.open {
    display: flex;
}

.checkout-dialog {
    width: min(560px, 100%);
    background: linear-gradient(180deg, rgba(30, 30, 40, 0.98) 0%, rgba(17, 17, 24, 0.98) 100%);
    border: 1px solid var(--border-hover);
    border-radius: 28px;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    position: relative;
}

.checkout-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.checkout-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.checkout-status.success {
    background: rgba(100, 216, 160, 0.12);
    border: 1px solid rgba(100, 216, 160, 0.24);
    color: var(--accent3);
}

.checkout-status.cancel {
    background: rgba(255, 112, 67, 0.12);
    border: 1px solid rgba(255, 112, 67, 0.24);
    color: var(--accent2);
}

.checkout-dialog h2 {
    margin-bottom: 0.75rem;
    max-width: 420px;
}

.checkout-copy {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.checkout-meta {
    margin-bottom: 1.5rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
}

.checkout-meta strong {
    color: var(--text);
}

.checkout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid var(--border-hover);
    color: var(--text);
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
}

/* FINAL CTA */
.final-cta {
    text-align: center;
    background: var(--bg2);
    border-top: 1px solid var(--border);
}

.final-cta h2 {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.final-cta .sub {
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* FOOTER */
footer {
    padding: 2rem clamp(1.5rem, 6vw, 4rem);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 13px;
    color: var(--muted2);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--muted);
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .hero h1 {
        letter-spacing: -0.5px;
    }

    .article-hero {
        padding: 116px 1rem 48px;
    }

    .article-hero h1 {
        letter-spacing: -0.5px;
    }

    .article-content {
        padding: 0 1rem 64px;
        font-size: 1rem;
    }

    .hero {
        min-height: auto;
        padding: 112px 1rem 64px;
    }

    .hero-sub {
        margin-bottom: 2rem;
    }

    .hero-actions,
    .checkout-actions {
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .pet-showcase {
        margin-top: 3rem;
        width: min(320px, 100%);
        height: min(320px, calc(100vw - 2rem));
    }

    .pet-bubble {
        top: 16px;
        right: 16px;
        max-width: 120px;
        font-size: 12px;
        padding: 8px 12px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .feature-card,
    .privacy-visual,
    .review-card,
    .security-steps,
    .legal-card,
    .pricing-card,
    .quote-box,
    .checkout-dialog {
        padding: 1.5rem;
    }

    .security-headline,
    .security-step,
    .footer-links {
        align-items: flex-start;
    }

    .security-headline {
        flex-direction: column;
        gap: 0.75rem;
    }

    .security-step {
        gap: 1rem;
    }

    .faq-q,
    .faq-a {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    nav .nav-logo {
        font-size: 15px;
    }

    footer {
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
