:root {
  --bg-color: #F8FAFC;
  --surface: #FFFFFF;
  --border: #E2E8F0;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --accent: #6366F1;
  --accent-hover: #4F46E5;
  --accent-glow: rgba(99, 102, 241, 0.2);
  --success: #10B981;
  --font-family: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
}

.light-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    filter: blur(120px);
    border-radius: 50%;
    z-index: 0;
    animation: drift 25s infinite alternate ease-in-out;
}

.glow-1 {
    top: -20%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, rgba(255,255,255,0) 70%);
}

.glow-2 {
    bottom: -10%;
    left: -20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, rgba(255,255,255,0) 70%);
    animation-delay: -5s;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-5%, -5%); }
}

.container {
  width: 100%;
  max-width: 1000px; /* List style, narrower container */
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  padding: 24px 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.02);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: white;
  border-radius: 10px;
  font-size: 20px;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.feature-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: white;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
}

.hero {
    padding: 70px 0 50px;
    text-align: center;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: #0F172A;
}

.highlight-text {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1200px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    padding-bottom: 80px;
}

.offer-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s ease forwards;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: var(--accent);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.offer-badge {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-hot {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
}

.badge-normal {
    background: #f1f5f9;
    color: var(--text-muted);
}

.offer-rating-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 14px;
    background: #fffbeb;
    padding: 4px 10px;
    border-radius: 8px;
    color: #b45309;
}

.offer-logo-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    margin-bottom: 20px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px dashed var(--border);
}

.offer-logo-centered img {
    max-height: 50px;
    max-width: 160px;
    object-fit: contain;
}

.offer-social-proof {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    background: #f8fafc;
    padding: 16px;
    border-radius: 16px;
}

.proof-item {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.proof-item stroke {
    color: var(--success);
}
.proof-item svg {
    color: var(--success);
}

.offer-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-box:not(:last-child) {
    border-right: 1px solid var(--border);
}

.stat-box-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-box-val {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
}

.stat-box-val.highlight {
    color: var(--success);
}

.offer-cta {
    margin-top: auto;
}

.btn-action {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 16px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
}

.btn-action:hover {
    background: var(--accent-hover);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-arrow {
    transition: transform 0.2s ease;
}

.btn-action:hover .btn-arrow {
    transform: translateX(4px);
}

.footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    background: var(--surface);
}

.disclaimer {
    margin-top: 12px;
    font-size: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #94A3B8;
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 38px;
    }
}

/* Social Proof Toast */
.social-proof-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1000;
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.4;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-proof-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 24px;
    background: rgba(16, 185, 129, 0.1);
    padding: 10px;
    border-radius: 12px;
}

.toast-content strong {
    color: var(--success);
}

.toast-close {
    position: absolute;
    top: 6px;
    right: 12px;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}
.toast-close:hover {
    color: var(--text-main);
}

@media (max-width: 768px) {
    .social-proof-toast {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}
