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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --background: #ffffff;
    --background-light: #f8fafc;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background: var(--background);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cta-button {
    font-family: 'Inter', sans-serif;
    background: var(--primary-color);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.25);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-large {
    font-family: 'Inter', sans-serif;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-large:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Graphics - AI Brain with Notifications */
.hero-graphic {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Central AI Robot */
.circle-1 {
    position: absolute;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: brainPulse 3s ease-in-out infinite;
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.4);
}

/* Robot antenna */
.circle-1::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 25px;
    background: var(--primary-color);
    top: -25px;
    border-radius: 2px;
}

/* Robot antenna tip */
.circle-1::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ec4899;
    border-radius: 50%;
    top: -37px;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

/* Robot face features */
.brain-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Left eye */
.brain-pattern::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 6px;
    left: 25px;
    top: 35px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Right eye */
.brain-pattern::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 6px;
    right: 25px;
    top: 35px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes brainPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Notification bell (top right) - represents "reminds you" */
.circle-2 {
    position: absolute;
    width: 120px;
    height: 85px;
    background: linear-gradient(135deg, #ec4899, #f97316);
    border-radius: 16px;
    top: 12%;
    right: 15%;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.5);
    animation: bellRing 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bell body */
.circle-2::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50% 50% 0 0;
    bottom: 30%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Bell clapper */
.circle-2::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 12px;
    background: white;
    border-radius: 0 0 50% 50%;
    bottom: 28%;
    z-index: 1;
}

/* Notification badge */
.notification-badge {
    position: absolute;
    width: 28px;
    height: 28px;
    background: #10b981;
    border-radius: 50%;
    top: -8px;
    right: -8px;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    font-family: 'Inter', sans-serif;
}

@keyframes bellRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* Deal/Savings tag (bottom left) */
.circle-3 {
    position: absolute;
    width: 120px;
    height: 85px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    bottom: 18%;
    left: 10%;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
    animation: float 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    color: white;
    font-size: 2.5rem;
}

.circle-3::before {
    content: '50%';
    font-size: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.circle-3::after {
    content: 'OFF';
    position: absolute;
    font-size: 0.75rem;
    bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

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

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

/* Features Section */
.features {
    background: var(--background-light);
    padding: 6rem 2rem;
}

.features h2 {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Feature Icons */
.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    position: relative;
}

.feature-icon .icon-shape {
    width: 32px;
    height: 32px;
}

/* Tag/Label icon for "Right Deals, Right Time" */
.icon-1 {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.icon-1 .icon-shape {
    width: 32px;
    height: 32px;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-1 .icon-shape::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 22px;
    background: var(--primary-color);
    border-radius: 3px 6px 6px 3px;
    left: 4px;
}

.icon-1 .icon-shape::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-right: 8px solid var(--primary-color);
    left: -4px;
}

/* Lightning bolt for "Proactive Smart Savings" */
.icon-2 {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.icon-2 .icon-shape {
    width: 32px;
    height: 32px;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-2 .icon-shape::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 16px solid #ec4899;
    top: 2px;
}

.icon-2 .icon-shape::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 16px solid #ec4899;
    bottom: 2px;
}

/* Location pin for "Location-Aware Opportunities" */
.icon-3 {
    background: linear-gradient(135deg, #fed7aa, #fdba74);
}

.icon-3 .icon-shape {
    width: 28px;
    height: 28px;
    background: #f97316;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
}

.icon-3 .icon-shape::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Sparkle/star for "Intelligent Recommendations" */
.icon-4 {
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
}

.icon-4 .icon-shape {
    width: 32px;
    height: 32px;
    position: relative;
}

.icon-4 .icon-shape::before,
.icon-4 .icon-shape::after {
    content: '';
    position: absolute;
    background: #8b5cf6;
}

.icon-4 .icon-shape::before {
    width: 24px;
    height: 6px;
    border-radius: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-4 .icon-shape::after {
    width: 6px;
    height: 24px;
    border-radius: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* How It Works */
.how-it-works {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works h2 {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    border: 3px solid white;
    z-index: 10;
}

.step-image {
    margin: 2rem 0;
}

/* Step Graphics */
.step-graphic {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Chain link icon for "Connect Seamlessly" */
.step-1 {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

/* Left chain link */
.step-1::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 25px;
    background: transparent;
    border: 5px solid var(--primary-color);
    border-radius: 20px;
    left: 26%;
    top: 50%;
    transform: translateY(-50%) translateX(40%);
}

/* Right chain link - interlocking */
.step-1::after {
    content: '';
    position: absolute;
    width: 45px;
    height: 25px;
    background: transparent;
    border: 5px solid var(--primary-color);
    border-radius: 20px;
    right: 26%;
    top: 50%;
    transform: translateY(-50%) translateX(-40%);
}

/* Thinking bubbles for "AI Learns Your Habits" */
.step-2 {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    position: relative;
}
  
/* Even, balanced cloud (top-right) */
.step-2::before {
    content: "";
    position: absolute;
    right: 48px;
    top: 26px;
  
    width: 22px;
    height: 22px;
    background: #ec4899;
    border-radius: 50%;
  
    /* evenly spaced circular lobes */
    box-shadow:
      22px  2px 0  5px #ec4899,  /* right */
      9px -10px 0  5px #ec4899,  /* top */
      -9px  0px 0  5px #ec4899,  /* left */
      6px  14px 0  5px #ec4899,  /* bottom */
      18px  2px 0  5px #ec4899; /* bottom-right */
    
  }
  
  /* Thought bubbles (bottom-left trail) – spaced to avoid overlap */
  .step-2::after {
    content: "";
    position: absolute;
    left: 18px;                 /* farther from the cloud */
    bottom: 18px;
  
    width: 10px;
    height: 10px;
    background: #ec4899;
    border-radius: 50%;
  
    /* two more bubbles, progressively smaller & farther */
    box-shadow:
      15px -9px 0  1px   #ec4899,  /* mid bubble */
      30px -18px 0 1.3px #ec4899;  /* smallest bubble */
  }

/* Dollar sign/savings for "Automatic Savings" */
.step-3 {
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
}

.step-3::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: #8b5cf6;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-3::after {
    content: '$';
    position: absolute;
    color: white;
    font-size: 36px;
    font-weight: 800;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.step p {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Benefits Section */
.benefits {
    background: var(--background-light);
    padding: 6rem 2rem;
}

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

.benefit-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.benefit-text p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

/* Benefit Graphics - Growing Coin Stacks */
.benefit-graphic {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 50px 40px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    gap: 20px;
    position: relative;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
    border-radius: 8px;
    position: relative;
    animation: growCoin 1s ease-out;
    box-shadow: 
        0 4px 0 #d97706,
        0 -4px 10px rgba(251, 191, 36, 0.5);
}

.bar::before {
    content: '$';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    color: #78350f;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.bar-1 {
    height: 50px;
    animation-delay: 0.1s;
}

.bar-2 {
    height: 110px;
    animation-delay: 0.2s;
}

.bar-3 {
    height: 170px;
    animation-delay: 0.3s;
}

.bar-4 {
    height: 230px;
    animation-delay: 0.4s;
}

@keyframes growCoin {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #ec4899);
    padding: 6rem 2rem;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.email-signup {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.email-signup button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.email-signup input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1.0625rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.email-signup input:focus {
    outline: 2px solid white;
}

.email-signup .cta-button {
    font-family: 'Inter', sans-serif;
    background: white;
    color: var(--primary-color) !important;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
}

.email-signup .cta-button:hover {
    background: var(--background-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.35);
}

/* Footer */
footer {
    background: var(--background-light);
    color: var(--text-dark);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo img {
    height: 90px;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.footer-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
    font-size: 1rem;
    font-weight: 400;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a:not(.cta-button) {
        display: none;
    }

    .features h2,
    .how-it-works h2,
    .social-proof h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .benefits-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .email-signup {
        flex-direction: column;
    }

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

    /* Scale down logo on mobile */
    .logo img {
        height: 60px;
    }

    .footer-brand .logo img {
        height: 55px;
    }

    /* Fix hero graphic overlapping on mobile */
    .hero-graphic {
        height: 300px;
    }

    /* Make robot smaller and more centered */
    .circle-1 {
        width: 110px;
        height: 110px;
    }

    /* Scale down robot antenna */
    .circle-1::before {
        height: 20px;
        top: -20px;
        width: 3px;
    }

    .circle-1::after {
        width: 10px;
        height: 10px;
        top: -30px;
    }

    /* Scale down robot eyes */
    .brain-pattern::before,
    .brain-pattern::after {
        width: 20px;
        height: 20px;
        top: 28px;
    }

    .brain-pattern::before {
        left: 20px;
    }

    .brain-pattern::after {
        right: 20px;
    }

    /* Reposition notification bell - closer spacing */
    .circle-2 {
        width: 85px;
        height: 60px;
        top: 10%;
        right: 4%;
    }

    /* Scale down bell */
    .circle-2::before {
        width: 35px;
        height: 35px;
    }

    .circle-2::after {
        width: 6px;
        height: 10px;
    }

    .notification-badge {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }

    /* Reposition and resize 50% OFF badge */
    .circle-3 {
        width: 85px;
        height: 60px;
        bottom: 15%;
        left: 4%;
    }

    .circle-3::before {
        font-size: 1.4rem;
    }

    .circle-3::after {
        font-size: 0.6rem;
        bottom: 5px;
    }
}

