/* ???????????????????????????????????????????????????????
   Antamivi – Brand Design System
   ??????????????????????????????????????????????????????? */

/* Material Symbols Rounded utility */
.msr {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: inherit;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

:root {
    --primary:       #0E63B1;
    --primary-dark:  #0A4D8A;
    --accent:        #5FB611;
    --accent-dark:   #4A8F0E;
    --error:         #C71712;
    --error-dark:    #9F120E;

    --neutral-900: #0f172a;
    --neutral-800: #1e293b;
    --neutral-700: #334155;
    --neutral-500: #64748b;
    --neutral-300: #cbd5e1;
    --neutral-100: #f1f5f9;
    --neutral-50:  #f8fafc;
    --white:       #ffffff;

    --gradient-hero: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1a7fce 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-dark), var(--accent));
    --gradient-dark: linear-gradient(135deg, var(--neutral-900), var(--neutral-800));

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.15), 0 4px 12px rgba(0,0,0,.08);
    --shadow-primary: 0 8px 32px rgba(14,99,177,.35);
    --shadow-accent:  0 8px 32px rgba(95,182,17,.35);

    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--neutral-800);
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--neutral-100); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ?? NAVBAR ?????????????????????????????????????????? */
.ant-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: .75rem 0;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.ant-navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ant-brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: -.02em;
    flex-shrink: 0;
}

.ant-brand-logo {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}

.ant-nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
    margin-left: auto;
    flex-wrap: wrap;
}

.ant-nav-links a {
    text-decoration: none;
    color: var(--neutral-700);
    font-size: .88rem;
    font-weight: 500;
    padding: .4rem .75rem;
    border-radius: var(--radius-full);
    transition: color var(--transition), background var(--transition);
}

.ant-nav-links a:hover { color: var(--primary); background: rgba(14,99,177,.07); }

.ant-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: .4rem;
}

.ant-burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--neutral-700);
    border-radius: 2px;
}

.ant-main { padding-top: 64px; }

/* ?? HERO ????????????????????????????????????????????? */
.ant-hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 6rem 1.5rem 5rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ant-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(26,127,206,.4) 0%, transparent 70%);
    pointer-events: none;
}

.ant-hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.ant-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--radius-full);
    padding: .35rem .9rem;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ant-hero-badge .dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: .7; }
}

.ant-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin: 0 0 1.25rem;
}

.ant-hero h1 .highlight { color: #93c5fd; }

.ant-hero-desc {
    font-size: 1.1rem;
    opacity: .85;
    margin: 0 0 2.5rem;
    line-height: 1.7;
}

.ant-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.ant-hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.ant-stat { display: flex; flex-direction: column; }
.ant-stat-num { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.ant-stat-label { font-size: .75rem; opacity: .7; margin-top: .2rem; }

/* ?? BUTTONS ?????????????????????????????????????????? */
.ant-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    padding: .75rem 1.75rem;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    text-decoration: none;
}

.ant-btn:hover { transform: translateY(-2px); }
.ant-btn:active { transform: translateY(0); }

.ant-btn-primary { background: var(--white); color: var(--primary); box-shadow: var(--shadow-md); }
.ant-btn-primary:hover { box-shadow: var(--shadow-lg); }

.ant-btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.ant-btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.ant-btn-accent { background: var(--gradient-accent); color: var(--white); box-shadow: var(--shadow-accent); }
.ant-btn-danger { background: var(--error); color: var(--white); box-shadow: 0 6px 24px rgba(199,23,18,.3); }
.ant-btn-danger:hover { background: var(--error-dark); }

/* ?? STORE BADGES ???????????????????????????????????? */
.ant-store-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

.ant-store-badge {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform var(--transition);
}

.ant-store-badge:hover { transform: translateY(-2px); }
.ant-store-badge img { height: 53px; width: auto; display: block; }

/* ?? PHONE MOCKUP ????????????????????????????????????? */
.ant-phone-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
}

.ant-phone {
    width: 230px; height: 499px;
    background: var(--neutral-900);
    border-radius: 36px;
    border: 3px solid #1e293b;
    outline: 2px solid rgba(255,255,255,.06);
    box-shadow: 0 30px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.05);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    animation: phoneFloat 4s ease-in-out infinite;
}

.ant-phone.back { transform: rotate(-12deg) translateX(-30px) translateY(20px); z-index: 0; opacity: .7; animation: none; }
.ant-phone.front { z-index: 1; transform: rotate(4deg); }

/* Mobile-only single phone mockup (no rotation/floating badges) */
.ant-phone-mobile { display: none; }
.ant-phone.solo { animation: none; transform: none; }

@keyframes phoneFloat {
    0%,100% { transform: rotate(4deg) translateY(0); }
    50% { transform: rotate(4deg) translateY(-12px); }
}

.ant-phone::before {
    content: none;
}

.ant-phone-screen {
    background: linear-gradient(160deg, #0E63B1 0%, #0A4D8A 40%, #1e293b 100%);
    height: 100%;
    padding: 28px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ant-phone-screen-stack {
    background: #0f172a;
    height: 100%;
    padding: 0;
    justify-content: flex-start;
    gap: 4px;
    overflow: hidden;
}

.ant-phone-stack-img {
    width: 100%;
    flex: 1 1 0;
    min-height: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: top;
    display: block;
}

.ant-phone-topbar { display: flex; justify-content: space-between; align-items: center; }
.ant-phone-topbar .greeting { color: rgba(255,255,255,.7); font-size: .6rem; }
.ant-phone-topbar .name { color: #fff; font-size: .75rem; font-weight: 700; }
.ant-phone-avatar { width: 26px; height: 26px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .65rem; color: #fff; font-weight: 700; }

.ant-phone-points-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; padding: 12px; }
.ant-phone-points-card .label { color: rgba(255,255,255,.65); font-size: .55rem; }
.ant-phone-points-card .points { color: #fff; font-size: 1.4rem; font-weight: 800; line-height: 1; }
.ant-phone-points-card .sub { color: rgba(255,255,255,.5); font-size: .5rem; margin-top: 2px; }

.ant-phone-tier { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); border-radius: 10px; padding: 8px 10px; display: flex; align-items: center; gap: 8px; }
.ant-phone-tier .tier-name { color: #fff; font-size: .65rem; font-weight: 700; }
.ant-phone-tier .tier-desc { color: rgba(255,255,255,.7); font-size: .5rem; }

.ant-phone-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ant-phone-action-btn { background: rgba(255,255,255,.1); border-radius: 8px; padding: 8px 6px; text-align: center; border: 1px solid rgba(255,255,255,.1); }
.ant-phone-action-btn .icon { font-size: .9rem; }
.ant-phone-action-btn .lbl { color: rgba(255,255,255,.8); font-size: .5rem; margin-top: 3px; display: block; }

.ant-phone-rewards-list { display: flex; flex-direction: column; gap: 5px; }
.ant-phone-reward-item { background: rgba(255,255,255,.08); border-radius: 8px; padding: 7px 8px; display: flex; align-items: center; gap: 7px; border: 1px solid rgba(255,255,255,.07); }
.ant-phone-reward-item .ri-name { color: #fff; font-size: .58rem; font-weight: 600; }
.ant-phone-reward-item .ri-pts { color: rgba(255,255,255,.55); font-size: .5rem; }
.ant-phone-reward-item .ri-badge { margin-left: auto; background: var(--accent); color: #fff; font-size: .45rem; padding: 2px 5px; border-radius: 4px; font-weight: 700; }

.ant-float-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: .6rem 1rem;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: .5rem;
    font-size: .8rem; font-weight: 600;
    color: var(--neutral-800);
    z-index: 2;
}

.ant-float-badge.fb1 { top: 8%; right: 5%; animation: floatBadge 5s ease-in-out infinite; }
.ant-float-badge.fb2 { bottom: 20%; left: 3%; animation: floatBadge 5s ease-in-out 1.5s infinite; }
.ant-float-badge.fb3 { top: 40%; right: 2%; animation: floatBadge 5s ease-in-out 3s infinite; }

@keyframes floatBadge {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ?? SECTIONS SHARED ?????????????????????????????????? */
.ant-section { padding: 5rem 1.5rem; }
.ant-section-dark { background: var(--gradient-dark); color: var(--white); }
.ant-section-light { background: var(--neutral-50); }
.ant-section-inner { max-width: 1200px; margin: 0 auto; }

.ant-section-header { text-align: center; margin-bottom: 3.5rem; }

.ant-section-tag {
    display: inline-block;
    background: rgba(14,99,177,.1);
    color: var(--primary);
    font-size: .75rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: var(--radius-full);
    margin-bottom: .75rem;
}

.ant-section-dark .ant-section-tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }

.ant-section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800; letter-spacing: -.03em;
    margin: 0 0 .75rem; line-height: 1.2;
}

.ant-section-header p { font-size: 1.05rem; color: var(--neutral-500); max-width: 600px; margin: 0 auto; }
.ant-section-dark .ant-section-header p { color: rgba(255,255,255,.65); }

/* ?? HOW IT WORKS ????????????????????????????????????? */
.ant-steps-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
    position: relative;
}

.ant-steps-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(16.666% + 16px);
    right: calc(16.666% + 16px);
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
    border-radius: 2px;
}

.ant-step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative; z-index: 1;
    transition: transform var(--transition), box-shadow var(--transition);
}

.ant-step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.ant-step-num {
    width: 60px; height: 60px;
    background: var(--gradient-hero);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 800;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-primary);
}

.ant-step-icon { font-size: 1.6rem; margin-bottom: .75rem; display: block; }
.ant-step-card h3 { font-size: 1.1rem; font-weight: 700; margin: 0 0 .5rem; }
.ant-step-card p { font-size: .9rem; color: var(--neutral-500); margin: 0; line-height: 1.6; }

/* ?? BENEFITS ?????????????????????????????????????????? */
.ant-benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.ant-benefit-card {
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid transparent;
}

.ant-benefit-card:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

.ant-benefit-card.blue { background: linear-gradient(135deg, rgba(14,99,177,.08), rgba(14,99,177,.04)); border-color: rgba(14,99,177,.15); }
.ant-benefit-card.orange { background: linear-gradient(135deg, rgba(95,182,17,.08), rgba(95,182,17,.04)); border-color: rgba(95,182,17,.18); }

.ant-benefit-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.ant-benefit-card h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 .4rem; }
.ant-benefit-card p { font-size: .88rem; color: var(--neutral-500); margin: 0; line-height: 1.65; }

/* ?? TIERS ???????????????????????????????????????????? */
.ant-tiers-grid { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }

.ant-tier-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    min-width: 200px; flex: 1; max-width: 260px;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.ant-tier-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.ant-tier-card.featured { background: linear-gradient(135deg, rgba(14,99,177,.4), rgba(10,77,138,.4)); border-color: rgba(147,197,253,.3); }

.ant-tier-badge {
    width: 56px; height: 56px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-primary);
}

.ant-tier-name { font-size: 1.1rem; font-weight: 700; color: var(--white); margin: 0 0 .4rem; }
.ant-tier-pts { font-size: .8rem; color: rgba(255,255,255,.6); margin: 0 0 .75rem; }
.ant-tier-desc { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.55; }

.ant-skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,.06) 25%, rgba(255,255,255,.12) 50%, rgba(255,255,255,.06) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
    height: 160px; flex: 1; min-width: 180px;
}

@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ?? REWARDS ?????????????????????????????????????????? */
.ant-rewards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1.25rem; }

.ant-reward-card {
    background: var(--white);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex; flex-direction: column;
}

.ant-reward-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ant-reward-card-clickable { cursor: pointer; }

.ant-reward-image {
    aspect-ratio: 4 / 3;
    background: var(--gradient-hero);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

.ant-reward-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.ant-reward-badge-label { position: absolute; top: 8px; right: 8px; background: var(--error); color: var(--white); font-size: .65rem; font-weight: 700; padding: .2rem .5rem; border-radius: var(--radius-full); }

.ant-reward-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.ant-reward-name { font-weight: 700; font-size: .95rem; color: var(--neutral-800); line-height: 1.3; }
.ant-reward-short { font-size: .8rem; color: var(--neutral-500); line-height: 1.5; }

.ant-reward-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: .5rem; border-top: 1px solid var(--neutral-100); }
.ant-reward-pts { font-size: .85rem; font-weight: 700; color: var(--primary); }
.ant-reward-kind { font-size: .7rem; background: rgba(14,99,177,.08); color: var(--primary); padding: .2rem .5rem; border-radius: var(--radius-full); font-weight: 600; }

.ant-reward-skeleton { background: linear-gradient(90deg, var(--neutral-100) 25%, var(--neutral-50) 50%, var(--neutral-100) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-lg); height: 220px; }

/* ?? MOBILE APP SECTION ??????????????????????????????? */
.ant-app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ant-app-phones { display: flex; justify-content: center; gap: 1.5rem; }

.ant-feature-list { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.ant-feature-item { display: flex; align-items: flex-start; gap: .85rem; }
.ant-feature-check { width: 28px; height: 28px; background: var(--gradient-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; color: var(--white); flex-shrink: 0; margin-top: .1rem; }
.ant-feature-item h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin: 0 0 .2rem; }
.ant-feature-item p { font-size: .82rem; color: rgba(255,255,255,.55); margin: 0; }

/* ?? FAQ ?????????????????????????????????????????????? */
.ant-faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }

.ant-faq-item {
    background: var(--white);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.ant-faq-btn {
    width: 100%; background: none; border: none;
    padding: 1.1rem 1.25rem;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: .95rem; font-weight: 600;
    color: var(--neutral-800); text-align: left; gap: 1rem;
}

.ant-faq-chevron {
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: rgba(14,99,177,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .65rem; color: var(--primary);
    transition: transform var(--transition), background var(--transition);
}

.ant-faq-item.open .ant-faq-chevron { transform: rotate(180deg); background: var(--primary); color: var(--white); }

.ant-faq-answer { display: none; padding: 0 1.25rem 1.1rem; font-size: .88rem; color: var(--neutral-500); line-height: 1.7; }
.ant-faq-item.open .ant-faq-answer { display: block; }
.ant-link { color: var(--accent); text-decoration: underline; }
.ant-link:hover { opacity: .8; }

/* ?? FOOTER ??????????????????????????????????????????? */
.ant-footer { background: var(--neutral-900); color: rgba(255,255,255,.65); padding: 4rem 1.5rem 2rem; }

.ant-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.ant-footer-brand .ant-brand { color: var(--white); margin-bottom: .75rem; }
.ant-footer-brand p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.5); }
.ant-footer-links h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin: 0 0 1rem; }
.ant-footer-links a, .ant-store-badge-link { display: block; color: rgba(255,255,255,.6); text-decoration: none; font-size: .88rem; padding: .2rem 0; transition: color var(--transition); }
.ant-footer-links a:hover, .ant-store-badge-link:hover { color: var(--white); }
.ant-footer-store-badge { display: inline-block; margin: 0 0 .75rem; transition: transform var(--transition), opacity var(--transition); opacity: .9; }
.ant-footer-store-badge:hover { transform: translateY(-2px); opacity: 1; }
.ant-footer-store-badge img { height: 40px; width: auto; display: block; }
.ant-footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem; font-size: .8rem; text-align: center; color: rgba(255,255,255,.3); }

/* ?? TERMS / DELETE PAGES ????????????????????????????? */
.ant-page-hero { background: var(--gradient-hero); color: var(--white); padding: 5rem 1.5rem 4rem; text-align: center; }
.ant-page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -.03em; margin: 0 0 .75rem; }
.ant-page-hero p { font-size: 1rem; opacity: .8; max-width: 600px; margin: 0 auto; }

.ant-content-page { max-width: 860px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }

.ant-collapse-item { border: 1px solid var(--neutral-300); border-radius: var(--radius-md); margin-bottom: .75rem; overflow: hidden; }

.ant-collapse-btn {
    width: 100%; background: none; border: none;
    padding: 1.1rem 1.25rem;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: .95rem; font-weight: 700;
    color: var(--neutral-800); text-align: left; gap: 1rem;
}

.ant-collapse-chevron { flex-shrink: 0; color: var(--primary); font-size: 1rem; transition: transform var(--transition); }
.ant-collapse-item.open .ant-collapse-chevron { transform: rotate(180deg); }
.ant-collapse-body { display: none; padding: .25rem 1.25rem 1.25rem; font-size: .9rem; color: var(--neutral-500); line-height: 1.75; }
.ant-collapse-item.open .ant-collapse-body { display: block; }
.ant-collapse-body p { margin: 0 0 .75rem; }
.ant-collapse-body p:last-child { margin-bottom: 0; }
.ant-collapse-body ul { margin: .5rem 0; padding-left: 1.25rem; }
.ant-collapse-body li { margin-bottom: .35rem; }

.ant-gdpr-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(95,182,17,.1); color: var(--accent-dark);
    border: 1px solid rgba(95,182,17,.25);
    border-radius: var(--radius-full);
    padding: .3rem .85rem; font-size: .78rem; font-weight: 600;
    margin-bottom: 2rem;
}

.ant-delete-card { background: var(--white); border: 1px solid var(--neutral-300); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-md); max-width: 600px; margin: 0 auto; }

.ant-delete-warn { background: rgba(199,23,18,.06); border: 1px solid rgba(199,23,18,.2); border-radius: var(--radius-md); padding: 1rem 1.25rem; display: flex; gap: .75rem; align-items: flex-start; margin-bottom: 1.5rem; }
.ant-delete-warn-icon { font-size: 1.3rem; flex-shrink: 0; }
.ant-delete-warn p { margin: 0; font-size: .88rem; color: var(--error-dark); line-height: 1.6; }

.ant-delete-steps { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }
.ant-delete-step { display: flex; align-items: flex-start; gap: .85rem; }
.ant-delete-step-num { width: 28px; height: 28px; background: var(--gradient-hero); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; }
.ant-delete-step p { font-size: .88rem; color: var(--neutral-500); margin: 0; padding-top: .2rem; line-height: 1.6; }
.ant-delete-step strong { color: var(--neutral-800); }

/* ?? RESPONSIVE ??????????????????????????????????????? */
@media (max-width: 992px) {
    .ant-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .ant-hero-actions, .ant-hero-stats, .ant-store-badges { justify-content: center; }
    .ant-phone-wrap { display: none; }
    .ant-phone-mobile { display: flex; justify-content: center; margin-top: 2.5rem; }
    .ant-phone-mobile .ant-phone { width: 200px; height: 434px; }
    .ant-steps-grid { grid-template-columns: 1fr; }
    .ant-steps-grid::before { display: none; }
    .ant-benefits-grid { grid-template-columns: 1fr 1fr; }
    .ant-app-grid { grid-template-columns: 1fr; }
    .ant-app-phones { display: none; }
    .ant-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .ant-burger { display: flex; }
    .ant-nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1rem 1.5rem; box-shadow: var(--shadow-lg); border-top: 1px solid var(--neutral-100); }
    .ant-nav-links.open { display: flex; }
    .ant-navbar-inner { position: relative; }
    .ant-benefits-grid { grid-template-columns: 1fr; }
    .ant-footer-grid { grid-template-columns: 1fr; }
    .ant-tiers-grid { flex-direction: column; align-items: center; }
    .ant-tier-card { max-width: 100%; width: 100%; }
}

/* ?? BLAZOR ERROR UI ?????????????????????????????????? */
#blazor-error-ui {
    background: var(--error);
    bottom: 0; left: 0; right: 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,.1);
    color: var(--white);
    display: none;
    padding: .75rem 1.5rem;
    position: fixed;
    z-index: 9999;
}

#blazor-error-ui .reload { color: rgba(255,255,255,.9); font-weight: 700; }
#blazor-error-ui .dismiss { cursor: pointer; float: right; font-weight: 700; }

/* ?? DOWNLOAD PROMPT MODAL ???????????????????????????????? */
.ant-download-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.72);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    z-index: 10000;
    animation: antFadeIn .2s ease;
}

@keyframes antFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes antModalPop { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

.ant-download-modal {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 2.75rem 2.25rem 2.25rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,.45);
    animation: antModalPop .32s cubic-bezier(.34,1.56,.64,1);
}

.ant-download-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: var(--neutral-100);
    color: var(--neutral-500);
    font-size: .9rem;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.ant-download-close:hover { background: var(--neutral-300); color: var(--neutral-900); }

.ant-download-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 22px;
    background: var(--gradient-hero);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    box-shadow: 0 16px 32px rgba(26,127,206,.35);
}

.ant-download-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(26,127,206,.1);
    padding: .3rem .8rem;
    border-radius: var(--radius-full);
    margin-bottom: .75rem;
}

.ant-download-modal h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: .6rem; }
.ant-download-modal p { color: var(--neutral-500); font-size: .92rem; line-height: 1.6; margin-bottom: 1.75rem; }
.ant-download-modal p strong { color: var(--neutral-900); }

.ant-download-badges { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.ant-download-badges img { height: 44px; width: auto; display: block; }