/* Cashbackeer Landing Page - Polished Purple & Gold Theme */
:root {
    --bg-dark: #0a0414;
    --bg-card: rgba(26, 11, 48, 0.7);
    --bg-card-hover: rgba(40, 16, 74, 0.85);
    
    /* Brand Colors from Logo */
    --gold: #FFD200;
    --gold-hover: #FFE033;
    --gold-glow: rgba(255, 210, 0, 0.35);
    --gold-gradient: linear-gradient(135deg, #FFD200 0%, #FF9F00 100%);
    
    --orange: #FF6B00;
    --purple-vibrant: #7928CA;
    --purple-deep: #4A0E80;
    --purple-border: rgba(168, 85, 247, 0.22);
    --purple-glow: rgba(121, 40, 202, 0.35);
    
    --text-primary: #FFFFFF;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    
    --border-glass: rgba(255, 255, 255, 0.08);
    --nav-height: 76px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(121, 40, 202, 0.28) 0%, transparent 45%),
        radial-gradient(circle at 85% 25%, rgba(255, 107, 0, 0.16) 0%, transparent 40%),
        radial-gradient(circle at 50% 65%, rgba(255, 210, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 90%, rgba(74, 14, 128, 0.3) 0%, transparent 45%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography & Accents */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #FFF59D 0%, #FFD200 45%, #FF7A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.6rem;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #110426;
    box-shadow: 0 6px 20px var(--gold-glow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 210, 0, 0.5);
    background: linear-gradient(135deg, #FFE033 0%, #FFA800 100%);
}

.btn-purple {
    background: rgba(121, 40, 202, 0.3);
    color: #FFFFFF;
    border: 1px solid rgba(168, 85, 247, 0.4);
    backdrop-filter: blur(12px);
}

.btn-purple:hover {
    background: rgba(121, 40, 202, 0.5);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--purple-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: 16px;
}

.btn-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(10, 4, 20, 0.85);
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(8, 2, 16, 0.96);
    border-bottom-color: rgba(255, 210, 0, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #FFFFFF;
    flex-shrink: 0;
}

.brand-logo-img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    box-shadow: 0 4px 14px var(--gold-glow);
    transition: var(--transition);
    object-fit: cover;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-text span {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.8rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.4rem;
    line-height: 1;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--nav-height) + 3.5rem);
    padding-bottom: 4.5rem;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    background: rgba(121, 40, 202, 0.22);
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #F3E8FF;
    margin-bottom: 1.5rem;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 16px var(--gold); }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
    font-size: clamp(2.3rem, 4.2vw, 3.8rem);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero-description {
    font-size: 1.12rem;
    color: var(--text-secondary);
    margin-bottom: 2.2rem;
    max-width: 560px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item h4 {
    font-size: 1.7rem;
    color: var(--gold);
    margin-bottom: 0.15rem;
}

.stat-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Mockup Container */
.hero-visual {
    position: relative;
}

.mockup-container {
    background: var(--bg-card);
    border: 1px solid var(--purple-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.75),
        0 0 45px rgba(121, 40, 202, 0.25);
    position: relative;
    overflow: hidden;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mockup-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px var(--gold-glow);
    border: 1.5px solid rgba(255, 210, 0, 0.5);
    background: #000;
    flex-shrink: 0;
}

.mockup-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mockup-user-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
}

.mockup-user-info span {
    font-size: 0.75rem;
    color: var(--gold);
}

.mockup-badge-active {
    font-size: 0.75rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.mockup-badge-active::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
}

.mockup-query-box {
    background: rgba(10, 3, 20, 0.85);
    border: 1px solid rgba(255, 210, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    margin-bottom: 1.15rem;
}

.query-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.query-target {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.query-target .store {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.query-target .amount {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.mockup-result-card {
    background: linear-gradient(135deg, rgba(255, 210, 0, 0.15) 0%, rgba(121, 40, 202, 0.22) 100%);
    border: 1px solid rgba(255, 210, 0, 0.4);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    position: relative;
}

.mockup-result-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.65rem;
}

.best-bank-pill {
    background: var(--gold-gradient);
    color: #06020c;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
}

.cashback-rate {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 12px var(--gold-glow);
}

.mockup-bank-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.bank-name-sub {
    font-size: 1.05rem;
    font-weight: 700;
}

.bank-category-sub {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.benefit-calc {
    text-align: right;
    font-size: 0.85rem;
    color: #4ade80;
    font-weight: 700;
}

.mockup-footer-note {
    margin-top: 0.85rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* Sections Common */
.section {
    padding: 3.5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 2rem;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
}

.section-title {
    font-size: clamp(2.2rem, 3.8vw, 3.2rem); font-weight: 900;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.18rem;
    color: #CBD5E1;
    line-height: 1.6;
}

/* Demo Tool */
.demo-card {
    background: var(--bg-card);
    border: 1px solid var(--purple-border);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 960px;
    margin: 0 auto;
}

.demo-search-bar {
    position: relative;
    margin-bottom: 1.25rem;
}

.demo-input {
    width: 100%;
    padding: 1.15rem 1.4rem 1.15rem 3.4rem;
    background: rgba(10, 3, 20, 0.85);
    border: 2px solid rgba(168, 85, 247, 0.35);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 1.1rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.demo-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 25px var(--gold-glow);
}

.search-icon-fixed {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    pointer-events: none;
    font-size: 1.2rem;
}

.demo-quick-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 2rem;
}

.quick-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.demo-tag-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.demo-tag-btn:hover, .demo-tag-btn.active {
    background: rgba(255, 210, 0, 0.18);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-1px);
}

.demo-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.result-card-item {
    background: rgba(14, 5, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.result-card-item.winner {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(255, 210, 0, 0.2);
    background: linear-gradient(145deg, rgba(32, 14, 62, 0.9) 0%, rgba(14, 5, 28, 0.95) 100%);
}

.winner-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold-gradient);
    color: #06020c;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
}

.bank-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.bank-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bank-name-label {
    font-weight: 700;
    font-size: 1.05rem;
}

.card-cashback-val {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.card-category-note {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 0.65rem;
}

.card-calc-preview {
    font-size: 0.82rem;
    color: #4ade80;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--purple-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(255, 210, 0, 0.15);
}

.step-number {
    font-size: 3.8rem;
    font-weight: 900;
    color: rgba(255, 210, 0, 0.1);
    position: absolute;
    top: 15px;
    right: 20px;
    line-height: 1;
}

.step-icon {
    font-size: 2.3rem;
    margin-bottom: 1.25rem;
    display: inline-block;
    padding: 0.7rem;
    background: rgba(121, 40, 202, 0.22);
    border-radius: 16px;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.85rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Calculator Section */
.calc-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--purple-border);
    border-radius: var(--radius-lg);
    padding: 3.25rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.25rem;
}

.slider-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.slider-value-display {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--gold);
}

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.12);
    outline: none;
    cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gold-gradient);
    cursor: pointer;
    box-shadow: 0 0 15px var(--gold-glow);
}

.slider-range-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.65rem;
}

.calc-compare-box {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.compare-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.compare-cross { color: #ef4444; font-weight: bold; }
.compare-check { color: #22c55e; font-weight: bold; }

.calc-breakdown {
    background: rgba(10, 3, 20, 0.85);
    border: 1px solid rgba(255, 210, 0, 0.35);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255, 210, 0, 0.12);
}

.breakdown-item-sm {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.breakdown-item-sm span:last-child {
    color: #fff;
    font-weight: 600;
}

.breakdown-hero-result {
    margin: 1.25rem 0;
}

.breakdown-hero-result p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.extra-profit-val {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 18px var(--gold-glow);
    line-height: 1.1;
}

.extra-profit-sub {
    font-size: 0.82rem;
    color: #4ade80;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Banks Grid */
.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.bank-card-item {
    background: var(--bg-card);
    border: 1px solid var(--purple-border);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    transition: var(--transition);
}

.bank-card-item:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.bank-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
}

.bank-logo-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    flex-shrink: 0;
}

.bank-brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.bank-logo-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
}

.bank-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.bank-card-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.bank-packages {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
}

.bank-max-cb {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 700;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--purple-border);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.4rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.feature-box:hover {
    border-color: rgba(255, 210, 0, 0.4);
    transform: translateY(-4px);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 210, 0, 0.12);
    border: 1px solid rgba(255, 210, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    color: #CBD5E1;
}

/* FAQ */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--purple-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(255, 210, 0, 0.4);
}

.faq-question {
    padding: 1.35rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    user-select: none;
}

.faq-toggle-icon {
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.75rem;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.75rem 1.5rem;
}

/* Final Banner */
.cta-banner {
    background: radial-gradient(circle at center, rgba(121, 40, 202, 0.45) 0%, rgba(18, 6, 36, 0.95) 75%);
    border: 2px solid rgba(255, 210, 0, 0.35);
    border-radius: var(--radius-lg);
    padding: 4rem 1.75rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1.25rem;
}

.cta-banner p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.2rem;
}

.cta-banner-btns {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    padding: 3.5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 2, 12, 0.95);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE & MOBILE POLISH */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions, .hero-stats {
        justify-content: center;
    }
    .mockup-container {
        max-width: 480px;
        margin: 0 auto;
    }
    .steps-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    .calc-wrapper {
        grid-template-columns: 1fr;
        padding: 2.25rem;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 66px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 0;
    }
    
    .navbar-container {
        gap: 0.5rem;
    }
    
    .brand-logo-img {
        width: 36px;
        height: 36px;
    }
    
    .brand-text {
        font-size: 1.15rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(10, 4, 20, 0.98);
        padding: 1.75rem 1.5rem;
        border-bottom: 1px solid var(--purple-border);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
        z-index: 1001;
    }
    
    .nav-btn-desktop {
        display: none;
    }
    
    /* Perfect Mobile Telegram Button */
    .nav-tg-btn {
        padding: 0.45rem 0.85rem !important;
        font-size: 0.82rem !important;
        border-radius: 10px !important;
        gap: 0.4rem !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
    }
    
    .nav-tg-btn .btn-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero {
        padding-top: calc(var(--nav-height) + 1.5rem);
        padding-bottom: 3.5rem;
    }
    
    .hero-title {
        font-size: 2.15rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.25rem;
    }
    
    .mockup-container {
        padding: 1.25rem;
    }
    
    .demo-card {
        padding: 1.5rem 1rem;
    }
    
    .demo-input {
        font-size: 0.98rem;
        padding: 1rem 1rem 1rem 3rem;
    }
    
    .search-icon-fixed {
        left: 1rem;
    }
    
    .calc-wrapper {
        padding: 1.5rem 1rem;
        gap: 1.75rem;
    }
    
    .slider-value-display {
        font-size: 1.7rem;
    }
    
    .extra-profit-val {
        font-size: 2.3rem;
    }
    
    .footer-top, .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.85rem;
    }
}


/* --- Bank Logos Styling --- */
.bank-logo-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    padding: 6px;
    flex-shrink: 0;
}

.bank-brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- Pricing Section Grid --- */
.pricing-section {
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background: rgba(26, 11, 48, 0.7);
    border: 1px solid rgba(168, 85, 247, 0.22);
    border-radius: var(--radius-md);
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(16px);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 210, 0, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(121, 40, 202, 0.25);
}

.pricing-card-featured {
    background: linear-gradient(180deg, rgba(50, 18, 90, 0.9) 0%, rgba(26, 11, 48, 0.85) 100%);
    border: 2px solid #FFD200;
    box-shadow: 0 10px 40px rgba(255, 210, 0, 0.18), 0 0 30px rgba(121, 40, 202, 0.35);
}

.pricing-card-featured:hover {
    border-color: #FFE033;
    box-shadow: 0 15px 50px rgba(255, 210, 0, 0.3), 0 0 40px rgba(121, 40, 202, 0.45);
}

.plan-badge {
    position: absolute;
    top: -13px;
    right: 20px;
    background: var(--gold-gradient);
    color: #110426;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.plan-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.4rem;
}

.plan-price {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 15px rgba(255, 210, 0, 0.3);
}

.price-period {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    min-height: 38px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.feature-item b {
    color: #fff;
}

.f-check {
    color: #22c55e;
    font-weight: 900;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.f-cross {
    color: #ef4444;
    font-weight: 900;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.f-muted {
    opacity: 0.45;
}

.plan-btn {
    width: 100%;
    margin-top: auto;
}

/* --- Auth Modal Styling --- */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(14px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.auth-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal-card {
    background: linear-gradient(180deg, #1d0e34 0%, #0e051a 100%);
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    padding: 2.2rem 1.8rem;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(121, 40, 202, 0.3);
    transform: scale(0.94);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal-overlay.active .auth-modal-card {
    transform: scale(1);
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #cbd5e1;
    font-size: 24px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.auth-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #110426;
    font-weight: 900;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px var(--gold-glow);
}

.auth-modal-header h2 {
    font-size: 1.45rem;
    color: #fff;
    margin-bottom: 0.35rem;
}

.auth-modal-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0 1.25rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.auth-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 1.25rem;
    gap: 4px;
}

.auth-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.6rem;
    border-radius: 9px;
    cursor: pointer;
    transition: var(--transition);
}

.auth-tab-btn.active {
    background: rgba(121, 40, 202, 0.55);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.auth-input-group {
    margin-bottom: 1rem;
    text-align: left;
}

.auth-input-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.auth-input {
    width: 100%;
    background: rgba(10, 3, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.auth-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(255, 210, 0, 0.2);
}

.auth-error-msg {
    padding: 0.6rem 0.85rem;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fca5a5;
    font-size: 0.82rem;
    margin-bottom: 0.85rem;
    line-height: 1.4;
}

.auth-success-msg {
    padding: 0.6rem 0.85rem;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #86efac;
    font-size: 0.82rem;
    margin-bottom: 0.85rem;
    line-height: 1.4;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step-card {
    background: linear-gradient(145deg, rgba(28, 12, 54, 0.88) 0%, rgba(14, 5, 28, 0.95) 100%);
    border: 1.5px solid rgba(168, 85, 247, 0.32);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.8rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 18px 45px rgba(255, 210, 0, 0.22);
}

.step-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.step-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(121, 40, 202, 0.4) 0%, rgba(255, 210, 0, 0.18) 100%);
    border: 1.5px solid rgba(255, 210, 0, 0.4);
    box-shadow: 0 8px 24px rgba(121, 40, 202, 0.35);
    flex-shrink: 0;
}

.step-badge-num {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--gold);
    background: rgba(255, 210, 0, 0.12);
    border: 1px solid rgba(255, 210, 0, 0.35);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    letter-spacing: 0.05em;
    box-shadow: 0 0 15px rgba(255, 210, 0, 0.15);
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #FFFFFF;
    line-height: 1.25;
}

.step-card p {
    color: #CBD5E1;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}