/* =============================================
   BRAZILIAN REWARDS — Landing Page
   Inspired by Lively Menu design
   ============================================= */

:root {
    --br-bg: #f7f8fa;
    --br-bg-alt: #f0f2f5;
    --br-dark: #0f2d4f;
    --br-text: #3a3a4a;
    --br-text-light: #6b7280;
    --br-accent: #164272;
    --br-accent-hover: #0f2d4f;
    --br-accent-light: rgba(22, 66, 114, 0.1);
    --br-green: #95c11f;
    --br-green-light: rgba(149, 193, 31, 0.1);
    --br-yellow: #ffde14;
    --br-white: #ffffff;
    --font-heading: 'Montserrat', 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(15, 45, 79, 0.06);
    --shadow-md: 0 8px 32px rgba(15, 45, 79, 0.08);
    --shadow-lg: 0 16px 48px rgba(15, 45, 79, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body) !important;
    color: var(--br-text) !important;
    background-color: var(--br-bg) !important;
    line-height: 1.7;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--br-dark);
    line-height: 1.2;
}

h1, h2, h3, h4, h5, h6, p, div, span { outline: none; }
button:focus-visible, a:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--br-accent);
    outline-offset: 2px;
}

/* =============================================
   NAVBAR (used by MainLayout.razor — DO NOT REMOVE)
   ============================================= */
.navbar-fixed {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(247, 248, 250, 0.96);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(22, 66, 114, 0.06);
    box-shadow: var(--shadow-sm);
}
.navbar-container { max-width: 1200px; margin: 0 auto; padding: 0.75rem 1.25rem; display: flex; justify-content: space-between; align-items: center; }
.navbar-logo { display: flex; align-items: center; gap: 1rem; }
.navbar-logo a { text-decoration: none; display: flex; align-items: center; }
.logo-image { width: 160px; display: flex; align-items: center; justify-content: center; }
.logo-image img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { font-size: 1.5rem; font-weight: 700; color: var(--br-accent); }
.logo-accent { color: var(--br-yellow); }
.navbar-actions { display: flex; align-items: center; gap: 10px; }
.navbar-contact-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border: 1.5px solid var(--br-accent); border-radius: var(--radius-sm); background: transparent; color: var(--br-accent); font-size: 13px; font-weight: 600; font-family: inherit; cursor: pointer; white-space: nowrap; transition: var(--transition); text-decoration: none; }
.navbar-contact-btn:hover { background: var(--br-accent); color: #fff; }
.navbar-contact-btn i { font-size: 15px; }
.navbar-install-btn { display: none; align-items: center; gap: 6px; padding: 7px 14px; border: 1.5px solid var(--br-accent); border-radius: var(--radius-sm); background: transparent; color: var(--br-accent); font-size: 13px; font-weight: 600; font-family: inherit; cursor: pointer; white-space: nowrap; transition: var(--transition); }
.navbar-install-btn i { font-size: 15px; }
.navbar-install-btn:hover { background: var(--br-accent); color: #fff; }
.pwa-installable .navbar-install-btn { display: inline-flex; }
.pwa-standalone .navbar-install-btn { display: none !important; }
.navbar-login { position: relative; }
.navbar-login-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border: none; border-radius: var(--radius-sm); background: var(--br-accent); color: #fff; font-size: 13px; font-weight: 700; font-family: inherit; cursor: pointer; white-space: nowrap; transition: var(--transition); list-style: none; user-select: none; }
.navbar-login-btn::-webkit-details-marker { display: none; }
.navbar-login-btn:hover { background: var(--br-accent-hover); }
.navbar-login-btn i { font-size: 16px; }
.navbar-dropdown { position: absolute; top: calc(100% + 8px); right: 0; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; box-shadow: var(--shadow-md); min-width: 220px; padding: 6px; z-index: 1001; animation: dropFade 0.15s ease; }
@keyframes dropFade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.navbar-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); color: #374151; text-decoration: none; font-size: 14px; font-weight: 600; transition: background 0.15s ease; }
.navbar-dropdown a:hover { background: #f3f4f6; color: var(--br-accent); }
.navbar-dropdown a i { font-size: 18px; width: 22px; text-align: center; color: var(--br-accent); }
.navbar-mobile { display: none; position: relative; }
.navbar-mobile-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: none; border-radius: 10px; background: var(--br-accent); color: #fff; font-size: 22px; cursor: pointer; list-style: none; user-select: none; }
.navbar-mobile-btn::-webkit-details-marker { display: none; }
.navbar-mobile-menu { position: absolute; top: calc(100% + 10px); right: 0; background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; box-shadow: var(--shadow-md); min-width: 240px; padding: 8px; z-index: 1001; animation: dropFade 0.15s ease; }
.navbar-mobile-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px; color: #374151; text-decoration: none; font-size: 15px; font-weight: 600; background: none; border: none; width: 100%; cursor: pointer; font-family: inherit; transition: background 0.15s ease; }
.navbar-mobile-item:hover { background: #f3f4f6; color: var(--br-accent); }
.navbar-mobile-item i { font-size: 18px; width: 22px; text-align: center; color: var(--br-accent); }
.navbar-mobile-install { display: none; }
.pwa-installable .navbar-mobile-install { display: flex; }
.pwa-standalone .navbar-mobile-install { display: none; }
.navbar-mobile-divider { height: 1px; background: #e5e7eb; margin: 4px 8px; }
.navbar-mobile-label { display: block; padding: 8px 14px 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #9ca3af; }
@media (max-width: 640px) {
    .navbar-actions { display: none !important; }
    .navbar-mobile { display: block; }
    .navbar-install-btn span { display: none; }
}

/* =============================================
   HERO
   ============================================= */
.br-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    background: var(--br-bg);
}

.br-hero::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(22, 66, 114, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.br-hero::after {
    content: '';
    position: absolute;
    bottom: -10%; left: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(149, 193, 31, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--br-green-light);
    color: #5a7a12;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(149, 193, 31, 0.25);
}

.pulse-dot {
    width: 8px; height: 8px;
    background: #4caf50;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}
.pulse-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.3);
    animation: pulseAnim 2s ease-out infinite;
}
@keyframes pulseAnim {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.4); opacity: 0; }
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    color: var(--br-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(135deg, var(--br-accent), #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--br-text-light);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    background: var(--br-accent);
    color: var(--br-white) !important;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
}
.btn-hero-primary:hover {
    background: var(--br-accent-hover);
    color: var(--br-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 66, 114, 0.3);
}
.btn-hero-primary.btn-business { background: #b38f00; }
.btn-hero-primary.btn-business:hover { background: #997a00; box-shadow: 0 8px 24px rgba(179, 143, 0, 0.3); }
.btn-hero-primary.btn-partner { background: var(--br-accent); }

.btn-hero-secondary {
    background: transparent;
    color: var(--br-dark);
    border: 2px solid var(--br-dark);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.btn-hero-secondary:hover {
    background: var(--br-dark);
    color: var(--br-white);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.hero-trust-avatars { display: flex; gap: 4px; }
.trust-dot { width: 10px; height: 10px; border-radius: 50%; }
.trust-green { background: var(--br-green); }
.trust-yellow { background: var(--br-yellow); }
.trust-blue { background: var(--br-accent); }
.hero-trust-text { font-size: 0.85rem; color: var(--br-text-light); font-weight: 500; }

/* Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.hero-phone-mockup {
    width: 290px; height: 560px;
    background: var(--br-dark);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}
.hero-phone-screen {
    width: 100%; height: 100%;
    background: linear-gradient(180deg, #1a3a5c 0%, #0f2d4f 100%);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.phone-header {
    padding: 2rem 1.2rem 0.8rem;
    text-align: center;
}
.phone-app-name {
    color: var(--br-yellow);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}
.phone-label {
    color: rgba(255,255,255,0.4);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.phone-items {
    flex: 1;
    padding: 0 0.8rem 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    overflow: hidden;
}
.phone-coupon-card {
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 0.6rem;
    display: flex;
    gap: 0.6rem;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.04);
}
.phone-coupon-img {
    width: 50px; height: 50px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.coupon-1 { background: linear-gradient(135deg, #c8956c, #e8b898); }
.coupon-2 { background: linear-gradient(135deg, #7d8a6e, #a3b090); }
.coupon-3 { background: linear-gradient(135deg, #8b6f5c, #b8a090); }
.coupon-4 { background: linear-gradient(135deg, #6e7d8a, #90a3b0); }
.phone-coupon-info { flex: 1; min-width: 0; }
.coupon-name { color: rgba(255,255,255,0.9); font-size: 0.7rem; font-weight: 600; }
.coupon-desc { color: rgba(255,255,255,0.4); font-size: 0.55rem; line-height: 1.3; }
.coupon-tag { display: inline-block; margin-top: 3px; background: rgba(149,193,31,0.2); color: #95c11f; font-size: 0.45rem; padding: 1px 6px; border-radius: 4px; font-weight: 700; letter-spacing: 0.5px; }

/* Floating Cards */
.hero-float-card {
    position: absolute;
    background: var(--br-white);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.float-card-coupon { top: 12%; left: -30px; animation: floatGentle 6s ease-in-out infinite; }
.float-card-rewards { bottom: 18%; right: -20px; animation: floatGentle 6s ease-in-out infinite 3s; }
.float-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; background: var(--br-accent-light); color: var(--br-accent); }
.float-icon-green { background: var(--br-green-light); color: #6a8a15; }
.float-title { font-size: 0.78rem; font-weight: 600; color: var(--br-dark); }
.float-sub { font-size: 0.62rem; color: var(--br-text-light); }

@keyframes floatGentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =============================================
   COMING SOON BANNER
   ============================================= */
.br-coming-banner {
    padding: 2.5rem 0;
    background: var(--br-white);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    text-align: center;
}
.coming-label {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--br-text-light); margin-bottom: 1rem;
}
.coming-label i { color: var(--br-accent); }
.coming-card {
    background: var(--br-bg);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-md);
    padding: 1rem 0.5rem;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    transition: var(--transition);
    position: relative;
}
.coming-card::after {
    content: 'SOON'; position: absolute; top: 6px; right: 6px;
    font-size: 0.5rem; font-weight: 800; color: #bbb;
}
.coming-card:hover { border-color: var(--br-accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.coming-card i { font-size: 20px; color: var(--br-accent); opacity: .6; }
.coming-card strong { font-size: 0.78rem; color: var(--br-dark); }
.coming-card small { font-size: 0.62rem; color: #999; }

/* =============================================
   SECTIONS COMMON
   ============================================= */
.br-section { padding: 5rem 0; }
.br-section-alt { background: var(--br-bg-alt); }

.section-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--br-accent); margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--br-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--br-text-light);
    max-width: 600px;
    line-height: 1.8;
}

/* =============================================
   STEP CARDS
   ============================================= */
.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--br-white);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    position: relative;
    height: 100%;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-number {
    position: absolute; top: 1.2rem; right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3rem; font-weight: 700;
    color: rgba(22, 66, 114, 0.06);
    line-height: 1;
}
.step-icon {
    width: 68px; height: 68px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 1.5rem;
    transition: var(--transition);
}
.step-card:hover .step-icon { transform: scale(1.08); }
.step-icon-1 { background: var(--br-accent-light); color: var(--br-accent); }
.step-icon-2 { background: var(--br-green-light); color: #6a8a15; }
.step-icon-3 { background: rgba(255, 222, 20, 0.15); color: #b38f00; }
.step-title { font-size: 1.2rem; font-weight: 600; color: var(--br-dark); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.92rem; color: var(--br-text-light); line-height: 1.7; }

/* =============================================
   FEATURE CARDS
   ============================================= */
.feature-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--br-white);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(22, 66, 114, 0.12);
}
.feature-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; margin-bottom: 1.2rem;
    background: var(--br-accent-light); color: var(--br-accent);
}
.feature-icon-green { background: var(--br-green-light); color: #6a8a15; }
.feature-icon-dark { background: rgba(15, 45, 79, 0.08); color: var(--br-dark); }
.feature-title { font-size: 1.1rem; font-weight: 600; color: var(--br-dark); margin-bottom: 0.5rem; }
.feature-text { font-size: 0.9rem; color: var(--br-text-light); line-height: 1.7; }

/* =============================================
   SHOWCASE / ABOUT
   ============================================= */
.showcase-visual { position: relative; }
.showcase-img-main {
    width: 100%; aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a3a5c, #0f2d4f);
    border-radius: var(--radius-xl);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.showcase-img-main::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(149, 193, 31, 0.15), transparent 60%);
}
.showcase-logo { width: 140px; z-index: 1; filter: brightness(0) invert(1); opacity: 0.9; }
.showcase-stat {
    position: absolute;
    background: var(--br-white);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.3rem;
    box-shadow: var(--shadow-md);
    animation: floatGentle 5s ease-in-out infinite;
}
.stat-bottom-left { bottom: -20px; left: -20px; animation-delay: 0s; }
.stat-top-right { top: -20px; right: -20px; animation-delay: 2.5s; }
.stat-number { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--br-accent); }
.stat-label { font-size: 0.72rem; color: var(--br-text-light); font-weight: 500; }
.about-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.about-list li { display: flex; align-items: flex-start; gap: 0.8rem; padding: 0.6rem 0; font-size: 0.95rem; color: var(--br-text); }
.check-icon { width: 24px; height: 24px; background: var(--br-green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #6a8a15; font-size: 0.65rem; flex-shrink: 0; margin-top: 2px; }

/* =============================================
   AUDIENCE SECTIONS
   ============================================= */
.audience-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.2rem; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
}
.badge-consumer { background: rgba(149,193,31,.12); color: #5a7a12; border: 1px solid rgba(149,193,31,.25); }
.badge-business { background: rgba(255,222,20,.15); color: #997a00; border: 1px solid rgba(255,222,20,.35); }
.badge-partner  { background: rgba(22,66,114,.1); color: var(--br-accent); border: 1px solid rgba(22,66,114,.2); }

.benefit-card {
    display: flex; align-items: flex-start; gap: 0.85rem;
    padding: 1.1rem 1.3rem; background: var(--br-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.benefit-card p { margin: 0; font-size: 0.9rem; line-height: 1.6; color: var(--br-text-light); }
.benefit-free { background: linear-gradient(135deg, rgba(149,193,31,.06), rgba(255,222,20,.06)); border: 1px solid rgba(149,193,31,.15); }
.benefit-icon {
    flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.benefit-icon-consumer { background: var(--br-green-light); color: #6a8a15; }
.benefit-icon-business { background: rgba(255,222,20,.15); color: #997a00; }
.benefit-icon-partner  { background: var(--br-accent-light); color: var(--br-accent); }

/* =============================================
   PARTNERS
   ============================================= */
.partner-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 16px 8px; border-radius: var(--radius-md);
    text-decoration: none; color: var(--br-text);
    transition: var(--transition); border: 1px solid transparent;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,0,0,0.06); color: var(--br-text); }
.partner-img { width: 68px; height: 68px; border-radius: var(--radius-md); object-fit: cover; border: 2px solid rgba(0,0,0,0.06); box-shadow: var(--shadow-sm); transition: var(--transition); }
.partner-card:hover .partner-img { transform: scale(1.05); }
.partner-placeholder { width: 68px; height: 68px; border-radius: var(--radius-md); background: #f3f4f6; border: 2px solid rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: center; font-size: 26px; color: #9ca3af; }
.partner-name { font-size: 11px; font-weight: 700; text-align: center; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

/* =============================================
   INSTAGRAM
   ============================================= */
.ig-bar {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 540px; background: var(--br-white);
    border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-md);
    padding: 1rem 1.3rem;
}
.ig-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--br-green); }
.btn-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    color: #fff !important; border: none !important;
    font-weight: 600; border-radius: 10px; transition: var(--transition); white-space: nowrap;
    padding: 0.5rem 1.2rem; text-decoration: none; font-size: 0.88rem;
}
.btn-ig:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(225,48,108,.35); color: #fff !important; }

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 800px; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--br-white); border: 1px solid rgba(0,0,0,0.04); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    padding: 1.2rem 1.5rem; background: transparent; border: none; cursor: pointer;
    font-size: 1rem; font-weight: 600; color: var(--br-dark); text-align: left;
    transition: color .2s ease; font-family: var(--font-body);
}
.faq-question:hover, .faq-question.open { color: var(--br-accent); }
.faq-question i { font-size: 1rem; color: var(--br-accent); flex-shrink: 0; }
.faq-answer { padding: 0 1.5rem 1.2rem; animation: faqSlide .3s ease-out; }
.faq-answer p { line-height: 1.7; color: var(--br-text-light); margin-bottom: 0.5rem; }
@keyframes faqSlide { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* =============================================
   CTA SECTION
   ============================================= */
.br-cta-section {
    background: var(--br-dark);
    color: var(--br-white);
    padding: 5rem 0;
    position: relative; overflow: hidden;
}
.br-cta-section::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(149,193,31,.1) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.br-cta-section::after {
    content: ''; position: absolute; bottom: -30%; left: -5%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(22,66,114,.15) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.cta-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: var(--br-white); margin-bottom: 1rem; }
.cta-highlight { color: var(--br-yellow); -webkit-text-fill-color: var(--br-yellow); }
.cta-subtitle { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2.5rem; }
.btn-cta-white {
    background: var(--br-white); color: var(--br-dark) !important;
    border: none; padding: 0.9rem 2.5rem; border-radius: 50px;
    font-weight: 600; font-size: 1rem; text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.6rem;
    transition: var(--transition);
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,.2); color: var(--br-dark) !important; }

/* =============================================
   FOOTER
   ============================================= */
.br-footer-section {
    background: var(--br-dark);
    color: rgba(255,255,255,0.5);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 700; color: var(--br-white);
    display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem;
}
.footer-logo-icon { width: 32px; height: 32px; border-radius: 8px; }
.footer-accent { color: var(--br-yellow); }
.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 300px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: var(--transition); font-size: 1.1rem;
}
.footer-social a:hover { background: var(--br-accent); color: #fff; transform: translateY(-2px); }
.footer-heading { font-weight: 700; color: var(--br-white); font-size: 0.88rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--br-yellow); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
    padding-top: 2rem; margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.8rem;
}

/* =============================================
   MODAL
   ============================================= */
.br-modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(15, 45, 79, 0.4);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    z-index: 2000; padding: 1rem;
    animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.br-modal-dialog {
    max-width: 420px; width: 100%; max-height: 88vh;
    overflow-y: auto; background: #fff;
    border: 1px solid #e5e7eb; border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 2rem 1.5rem 1.75rem; position: relative;
    animation: modalIn .25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.br-modal-close { position: absolute; top: 12px; right: 12px; z-index: 10; }
.btn-modal-submit {
    background: var(--br-accent) !important; color: #fff !important;
    border: none !important; border-radius: 12px; font-weight: 600; padding: 12px;
    transition: var(--transition);
}
.btn-modal-submit:hover { background: var(--br-accent-hover) !important; }
.btn-modal-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.modal-success-icon {
    width: 56px; height: 56px; margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--br-accent), var(--br-dark));
    color: #fff; font-size: 1.5rem; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(22,66,114,.2);
    animation: modalBounce .5s ease-in-out;
}
@keyframes modalBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* =============================================
   TEXT UTILITIES
   ============================================= */
.text-warning { color: var(--br-yellow) !important; }
.text-info { color: var(--br-accent) !important; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .br-hero { padding-top: 5rem; min-height: auto; padding-bottom: 3rem; }
    .showcase-stat { display: none; }
}
@media (max-width: 768px) {
    .hero-cta-group { flex-direction: column; align-items: flex-start; }
    .ig-bar { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .br-modal-backdrop { align-items: flex-end; padding: 0; }
    .br-modal-dialog {
        max-width: 100%; max-height: 90vh;
        border-radius: 18px 18px 0 0;
        animation: slideUpMobile .25s ease;
    }
    .br-modal-dialog::before {
        content: ''; display: block; width: 36px; height: 4px;
        background: #d1d5db; border-radius: 2px; margin: 0 auto 12px;
    }
}
@keyframes slideUpMobile { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } }

/* =============================================
   LEGACY — DeleteAccount page
   ============================================= */
.page-wrapper { position: relative; min-height: 100vh; }
.blob { position: fixed; border-radius: 50%; filter: blur(100px); opacity: 0.12; z-index: 0; pointer-events: none; }
.blob-green { width: 350px; height: 350px; background: var(--br-green); bottom: 10%; left: -100px; animation: blobFloat 20s ease-in-out infinite; }
.blob-yellow { width: 400px; height: 400px; background: var(--br-yellow); top: 20%; right: -100px; animation: blobFloat 25s ease-in-out infinite reverse; }
.blob-blue { width: 450px; height: 450px; background: var(--br-accent); top: -100px; left: 50%; animation: blobFloat 22s ease-in-out infinite; }
@keyframes blobFloat { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-30px) scale(1.1); } 66% { transform: translate(-20px,20px) scale(0.9); } }
.glass-card { background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border: 1px solid rgba(22,66,114,0.12); border-radius: 20px; padding: 2rem; transition: var(--transition); box-shadow: var(--shadow-md); }
.delete-account-page { background: var(--br-bg); }
.delete-account-section { position: relative; min-height: 100vh; padding: 8rem 2rem 4rem; z-index: 1; }
.container-content { max-width: 900px; margin: 0 auto; }
.content-card { background: white; padding: 3rem; margin-bottom: 2rem; }
.page-header { text-align: center; margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 2px solid var(--br-bg); }
.page-title { font-size: clamp(2rem,5vw,3rem); font-weight: 700; color: var(--br-accent); margin-bottom: 0.5rem; }
.page-subtitle { font-size: clamp(1.5rem,4vw,2rem); font-weight: 600; color: var(--br-yellow); margin-bottom: 2rem; }
.page-intro { font-size: 1.1rem; line-height: 1.6; color: var(--br-text-light); margin-bottom: 0.5rem; }
.page-intro-pt { font-size: 1rem; line-height: 1.6; color: var(--br-text-light); font-style: italic; opacity: 0.9; }
.info-section { margin-bottom: 3rem; }
.section-heading { font-size: 1.8rem; font-weight: 600; color: var(--br-accent); margin-bottom: 0.5rem; }
.section-heading-pt { font-size: 1.4rem; font-weight: 500; color: var(--br-green); margin-bottom: 1.5rem; font-style: italic; }
.method-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 2rem; margin-top: 2rem; }
.method-card { background: var(--br-bg); padding: 2rem; border-radius: 15px; border: 2px solid transparent; transition: var(--transition); }
.method-card:hover { border-color: var(--br-accent); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.method-icon { width: 50px; height: 50px; margin: 0 auto 1rem; }
.method-icon svg { width: 100%; height: 100%; stroke: var(--br-accent); stroke-width: 2; }
.method-title { font-size: 1.3rem; font-weight: 600; color: var(--br-accent); margin-bottom: 1rem; text-align: center; }
.method-description { font-size: 1rem; line-height: 1.6; color: var(--br-text-light); margin-bottom: 0.5rem; }
.method-description-pt { font-size: 0.95rem; line-height: 1.6; color: var(--br-text-light); font-style: italic; opacity: 0.9; margin-bottom: 1rem; }
.email-link { display: block; font-size: 1.1rem; font-weight: 600; color: var(--br-accent); text-decoration: none; padding: 0.75rem; background: white; border-radius: 8px; margin: 1rem 0; text-align: center; transition: var(--transition); }
.email-link:hover { background: var(--br-accent); color: white; transform: scale(1.02); }
.method-note { font-size: 0.9rem; color: var(--br-text-light); line-height: 1.5; padding: 1rem; background: white; border-radius: 8px; margin-top: 1rem; }
.info-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.info-item { display: flex; gap: 1rem; padding: 1.5rem; background: var(--br-bg); border-radius: 12px; border-left: 4px solid var(--br-accent); transition: var(--transition); }
.info-item:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.info-icon { font-size: 2rem; flex-shrink: 0; }
.info-content { flex: 1; }
.info-content p { font-size: 1rem; line-height: 1.6; color: var(--br-text-light); margin-bottom: 0.5rem; }
.info-content-pt { font-size: 0.95rem; font-style: italic; opacity: 0.9; }
.verification-text { font-size: 1rem; line-height: 1.7; color: var(--br-text-light); padding: 1.5rem; background: var(--br-bg); border-radius: 10px; margin-bottom: 0.5rem; }
.verification-text-pt { font-size: 0.95rem; line-height: 1.7; color: var(--br-text-light); font-style: italic; padding: 1.5rem; background: var(--br-bg); border-radius: 10px; opacity: 0.9; }
.rights-section { background: linear-gradient(135deg, rgba(15,45,79,0.05) 0%, rgba(255,222,20,0.05) 100%); padding: 2rem; border-radius: 15px; }
.rights-intro { font-size: 1.1rem; line-height: 1.6; color: var(--br-text-light); margin-bottom: 0.5rem; font-weight: 500; }
.rights-intro-pt { font-size: 1rem; line-height: 1.6; color: var(--br-text-light); font-style: italic; margin-bottom: 1.5rem; opacity: 0.9; }
.rights-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.rights-list li { padding: 1rem 0; border-bottom: 1px solid rgba(15,45,79,0.1); font-size: 1rem; line-height: 1.7; color: var(--br-text-light); }
.rights-list li:last-child { border-bottom: none; }
.rights-list li strong { color: var(--br-accent); font-weight: 600; }
.rights-pt { display: block; font-style: italic; font-size: 0.95rem; margin-top: 0.5rem; opacity: 0.9; }
.contact-section { background: var(--br-bg); padding: 2rem; border-radius: 15px; }
.contact-text { font-size: 1rem; line-height: 1.6; color: var(--br-text-light); margin-bottom: 0.5rem; }
.contact-text-pt { font-size: 0.95rem; line-height: 1.6; color: var(--br-text-light); font-style: italic; margin-bottom: 1.5rem; opacity: 0.9; }
.contact-info { background: white; padding: 1.5rem; border-radius: 10px; margin-top: 1rem; }
.contact-info p { font-size: 1rem; line-height: 1.8; color: var(--br-text-light); margin-bottom: 0.5rem; }
.contact-info strong { color: var(--br-accent); font-weight: 600; }
.contact-info a { color: var(--br-accent); text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.contact-info a:hover { color: var(--br-green); text-decoration: underline; }
.contact-info-pt { font-style: italic; opacity: 0.9; }
.back-button-container { text-align: center; margin-top: 3rem; padding-top: 2rem; border-top: 2px solid var(--br-bg); }
.btn-back { display: inline-block; padding: 1rem 2.5rem; font-size: 1rem; font-weight: 600; color: var(--br-accent); text-decoration: none; border: 2px solid var(--br-accent); border-radius: 50px; transition: var(--transition); }
.btn-back:hover { background: var(--br-accent); color: white; transform: translateY(-2px); box-shadow: 0 5px 20px rgba(15,45,79,0.3); }
@media (max-width: 768px) {
    .content-card { padding: 2rem 1.5rem; }
    .method-cards { grid-template-columns: 1fr; }
    .info-item { flex-direction: column; text-align: center; }
    .info-icon { font-size: 3rem; }
}
