/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --text-color: #1a1a1a;
    --light-text: #666;
    --border-color: #e5e5e5;
    --background: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--text-color);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Main Navigation */
.main-nav {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
    background: white;
}

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

.logo {
    font-family: 'EB Garamond', serif;
    font-size: 1.75rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--light-text);
}

.book-demo-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--text-color);
    border-radius: 100px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

.book-demo-btn:hover {
    background-color: var(--text-color);
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0 3rem;
    text-align: center;
}

.hero h1 {
    font-family: 'EB Garamond', serif;
    font-size: 4rem;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    display: inline-block;
    background: linear-gradient(to bottom, var(--text-color) 0%, var(--text-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 500;
}

.hero .subheadline {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--text-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button .arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.cta-button:hover .arrow {
    transform: translateX(4px);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-subtitle {
    font-size: 0.875rem;
    color: var(--light-text);
    margin: 0;
}

/* Image Showcase */
.image-showcase {
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
}

.image-row {
    display: flex;
    width: 100%;
    gap: 1px;
    background-color: white;
    margin-bottom: 1px;
}

.image-item {
    flex: 1;
    height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.image-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-item:hover {
    transform: scale(1.02);
    z-index: 1;
}

.image-item:hover::after {
    opacity: 1;
}

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

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

.feature {
    text-align: left;
}

.feature h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature p {
    color: var(--light-text);
    font-size: 1rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--light-text);
}

.footer-copyright p {
    color: var(--light-text);
    font-size: 0.875rem;
}

/* Media Queries */
@media (max-width: 1200px) {
    .image-item {
        height: 300px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        padding: 4rem 0 2rem;
    }

    .image-item {
        height: 240px;
    }

    .hero h1 {
        font-size: 3rem;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .main-nav .container {
        flex-direction: row;
        align-items: center;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    .mobile-menu-icon {
        display: flex;
    }
    .image-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .image-item {
        flex: 1 1 30%;
        height: 120px;
        background-size: cover;
        background-position: center;
    }
    .hero h1 {
        display: block;
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .hero .subheadline {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .desktop-mockup {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 3rem 0 1.5rem;
    }

    .image-item {
        flex: 1 1 30%;
        height: 160px;
    }

    .cta-button {
        width: 60%;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.2rem;
        line-height: 1.3;
        display: block;
    }
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin: 0 4px;
    vertical-align: middle;
    position: relative;
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.2;
    transition: opacity 0.2s ease;
}

.icon-box:hover::before {
    opacity: 0.3;
}

/* People icon */
.icon-box:nth-of-type(1) {
    background-color: #f8f0ff;
    transform: translateY(-2px) rotate(-8deg);
}

.icon-box:nth-of-type(1):hover {
    transform: translateY(-4px) rotate(-3deg);
}

.icon-box:nth-of-type(1)::before {
    background: linear-gradient(135deg, #FF6B6B, #845EC2);
}

.icon-box:nth-of-type(1) svg {
    color: #7749bd;
}

/* Star icon */
.icon-box:nth-of-type(2) {
    background-color: #fff8f0;
    transform: translateY(-2px) rotate(8deg);
}

.icon-box:nth-of-type(2):hover {
    transform: translateY(-4px) rotate(3deg);
}

.icon-box:nth-of-type(2)::before {
    background: linear-gradient(135deg, #FFC75F, #FF9671);
}

.icon-box:nth-of-type(2) svg {
    color: #ff7e4a;
}

/* Money icon */
.icon-box:nth-of-type(3) {
    background-color: #f0fffa;
    transform: translateY(-2px) rotate(-5deg);
}

.icon-box:nth-of-type(3):hover {
    transform: translateY(-4px) rotate(0deg);
}

.icon-box:nth-of-type(3)::before {
    background: linear-gradient(135deg, #00C9A7, #4FFBDF);
}

.icon-box:nth-of-type(3) svg {
    color: #00aa8d;
}

.icon-box svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease;
}

.icon-box:hover svg {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.4;
        padding: 0 1rem;
        display: block;
    }

    .icon-box {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .icon-box svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .icon-box {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .icon-box svg {
        width: 16px;
        height: 16px;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

.how-it-works h2 {
    font-family: 'EB Garamond', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-color);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--text-color);
    color: white;
    border-radius: 50%;
    font-weight: 500;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

/* Add line connectors between steps */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background-color: var(--border-color);
}

/* Responsive adjustments for the steps */
@media (max-width: 992px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 3rem;
    }
    
    .step:nth-child(1)::after {
        right: -1rem;
    }
    
    .step:nth-child(2)::after {
        display: none;
    }
    
    .step:nth-child(3)::after {
        right: -1rem;
    }
}

@media (max-width: 576px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .how-it-works h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

/* Revenue Potential Section */
.revenue-potential {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.revenue-potential .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
}

.revenue-header {
    text-align: center;
    margin-bottom: 3rem;
}

.revenue-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.revenue-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.revenue-potential h2 {
    font-family: 'EB Garamond', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #000;
}

.revenue-potential p {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

.benefits-list {
    list-style: none;
    max-width: 700px;
    margin: 0;
    text-align: left;
    padding: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.5;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.revenue-chart {
    flex: 1;
    background: linear-gradient(135deg, #f9e8ef 0%, #eeeaf5 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-width: 320px;
}

.chart-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'EB Garamond', serif;
}

.earnings-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 0.75rem;
}

.column-label {
    font-weight: 600;
    color: #333;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.4;
}

.column-label:first-child {
    text-align: left;
}

.rate {
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1rem 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
}

.table-row:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.35);
}

.table-row:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.15);
}

.table-row:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.subscriber-count {
    font-weight: 600;
    font-size: 1.1rem;
    color: #3a3a3a;
    text-align: left;
}

.earning-amount {
    font-weight: 600;
    font-size: 1.1rem;
    color: #3a3a3a;
    text-align: center;
}

.chart-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1.25rem;
    text-align: center;
    font-style: italic;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .revenue-chart {
        padding: 1.5rem;
    }
    
    .chart-title {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }
    
    .column-label, .subscriber-count, .earning-amount {
        font-size: 0.9rem;
    }
    
    .rate {
        font-size: 0.75rem;
    }
    
    .table-header, .table-row {
        padding: 0.75rem 0.5rem;
    }
    
    .revenue-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .revenue-potential {
        padding: 4rem 0;
    }
    
    .revenue-potential h2 {
        font-size: 1.75rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
    
    .revenue-header {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .chart-title {
        font-size: 1.1rem;
    }
    
    .column-label, .subscriber-count, .earning-amount {
        font-size: 0.8rem;
    }
    
    .rate {
        font-size: 0.7rem;
    }
    
    .chart-note {
        font-size: 0.8rem;
        max-width: 95%;
    }
}

.scale-row:nth-child(1) .tick-mark {
    animation-delay: 0s;
}

.scale-row:nth-child(2) .tick-mark {
    animation-delay: 0.5s;
}

.scale-row:nth-child(3) .tick-mark {
    animation-delay: 1s;
}

.scale-row:nth-child(4) .tick-mark {
    animation-delay: 1.5s;
}

.scale-amount {
    width: auto;
    font-weight: 600;
    font-size: 1.25rem;
    color: #3a3a3a;
    text-align: right;
}

.scale-line {
    height: 0px;
    display: none;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
}

.scale-fill {
    height: 100%;
    background: linear-gradient(90deg, #f9a199, #f5b3aa);
    border-radius: 6px;
    transition: width 1s ease-in-out;
    position: relative;
}

.tick-mark {
    position: absolute;
    right: 4px;
    top: -5px;
    font-size: 14px;
    animation: float 2s infinite ease-in-out;
}

.scale-row:nth-child(1) .tick-mark {
    animation-delay: 0s;
}

.scale-row:nth-child(2) .tick-mark {
    animation-delay: 0.5s;
}

.scale-row:nth-child(3) .tick-mark {
    animation-delay: 1s;
}

.scale-row:nth-child(4) .tick-mark {
    animation-delay: 1.5s;
}

.scale-followers {
    width: 80px;
    font-weight: 600;
    font-size: 1.25rem;
    color: #3a3a3a;
    text-align: left;
}

.scale-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
}

.scale-arrow svg {
    width: 0;
    height: 20px;
    color: #9a7c89;
    opacity: 0;
    transform-origin: left;
    transition: width 0.8s ease-out, opacity 0.4s ease-out;
}

.revenue-potential.in-view .scale-arrow svg {
    width: 24px;
    opacity: 1;
}

/* Add different delays for each row */
.revenue-potential.in-view .scale-row:nth-child(1) .scale-arrow svg {
    transition-delay: 0.1s;
}

.revenue-potential.in-view .scale-row:nth-child(2) .scale-arrow svg {
    transition-delay: 0.2s;
}

.revenue-potential.in-view .scale-row:nth-child(3) .scale-arrow svg {
    transition-delay: 0.3s;
}

.revenue-potential.in-view .scale-row:nth-child(4) .scale-arrow svg {
    transition-delay: 0.4s;
}

.scale-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    width: 100%;
}

.scale-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.35);
    transition: transform 0.2s ease;
}

.scale-row:hover {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .revenue-flex-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .revenue-text, .revenue-chart {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .revenue-potential {
        padding: 5rem 0;
    }
    
    .revenue-potential h2 {
        font-size: 2rem;
    }
    
    .revenue-chart {
        padding: 1.5rem;
    }
    
    .revenue-header {
        margin-bottom: 2rem;
    }

    .revenue-potential p {
        font-size: 0.95rem;
        color: var(--light-text);
    }
}

@media (max-width: 576px) {
    .revenue-potential {
        padding: 4rem 0;
    }
    
    .revenue-potential h2 {
        font-size: 1.75rem;
    }
    
    .scale-followers, .scale-amount {
        font-size: 1rem;
    }
    
    .revenue-header {
        margin-bottom: 1.5rem;
    }
}

/* Creator Example Section */
.creator-example {
    padding: 6rem 0;
    background-color: #f8f6f2; /* Softer cream background */
}

.creator-example h2 {
    font-family: 'EB Garamond', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #3a3a3a;
}

.mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Desktop Mockup */
.desktop-mockup {
    width: 600px;
    height: 580px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.mockup-browser-bar {
    height: 36px;
    background-color: #f2f2f2;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
    margin-right: 12px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e0e0e0;
}

.browser-dots span:nth-child(1) {
    background-color: #ff6057;
}

.browser-dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background-color: #27c93f;
}

.browser-address {
    flex: 1;
    height: 22px;
    background-color: #ffffff;
    border-radius: 11px;
    font-size: 12px;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-content {
    padding: 20px;
    height: calc(100% - 36px);
    overflow-y: auto;
    background-color: #FAF7F3; /* Changed to Soft Warm Beige */
}

.mockup-site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0ebe6;
}

.mockup-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns the logo to the left */
    padding-left: 10px;
}

.logo-image {
    width: 37%;
    height: 32%;
    object-fit: contain; /* Ensure the SVG fills the available space */
}

/* Add wavy line underneath */
.mockup-logo span {
    position: relative;
}

.mockup-logo span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    bottom: -4px;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='6' viewBox='0 0 100 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 3C8.33333 3 8.33333 1 16.6667 1C25 1 25 5 33.3333 5C41.6667 5 41.6667 1 50 1C58.3333 1 58.3333 5 66.6667 5C75 5 75 1 83.3333 1C91.6667 1 91.6667 3 100 3' stroke='%23D4A98B' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: 100px 6px;
    background-repeat: repeat-x;
    background-position: 0 bottom;
    opacity: 0.8;
}

.mockup-nav {
    display: flex;
    gap: 14px;
}

.mockup-nav-item {
    background-color: 	#F8E3E0; /* Soft pill color */
    border-radius: 8px;
    padding: 0.20rem 0.70rem;
    font-size: 13px;
    cursor: pointer;
    text-align: center;
    font-family: 'Delius', serif;
}

.mockup-hero {
    position: relative;
    margin: 18px 0;
    padding-top: 10px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f5f1eb; /* Softer cream background */
}

.mockup-hero-image {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0px; /* Reduced gap for connected feel */
    background-image: linear-gradient(45deg, #f5f5f5 25%, transparent 25%), linear-gradient(-45deg, #f5f5f5 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #f5f5f5 75%), linear-gradient(-45deg, transparent 75%, #f5f5f5 75%);
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.mockup-hero-image img {
    width: 150px;
    height: 175px;
    object-fit: cover; /* Stretch to fill the width */
    margin: 0 5px;
    border-radius: 8px; /* Soft rounded corners */
}

.scalloped-border {
    border: 3px solid #d4a98b;
    border-radius: 15px;
    background-image: radial-gradient(circle, transparent 20%, #f5f5f5 20%, #f5f5f5 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, #f5f5f5 20%, #f5f5f5 80%, transparent 80%, transparent);
    background-size: 10px 10px;
    background-position: 0 0, 5px 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.dotted-border {
    border: 3px dotted #f27d72;
    border-radius: 8px;
}

.mockup-hero-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-bio {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    font-family: 'Delius', serif;
}

.mockup-cta-button {
    align-self: flex-start;
    padding: 8px 16px;
    background-color: #F27D72; /* Sage green */
    color: white;
    font-size: 12px;
    border-radius: 100px;
    font-family: 'Delius', serif;
    cursor: pointer;
}

.mockup-section-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #3a3a3a;
    font-family: 'Delius', serif;
}

.mockup-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.mockup-product {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    background-color: white;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}

.mockup-product::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mockup-product:hover {
    transform: translateY(-4px);
}

.mockup-product:hover::after {
    opacity: 1;
}

.mockup-product-image {
    height: 120px;
    position: relative;
}

.mockup-product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(240,228,218,0.4) 100%);
    z-index: 1;
}

.mockup-product-title {
    height: 10px;
    margin: 14px 12px 8px 12px;
    font-size: 12px;
    font-family: 'Delius', serif;
    border-radius: 5px;
}

.mockup-product-price {
    font-size: 10px;
    font-family: 'Delius', serif;
    color: #555;
    margin: 0 12px 14px 12px;
    border-radius: 4px;
}

.mockup-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.mockup-blog-post {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.mockup-blog-post:nth-child(1) .mockup-blog-image::after {
    background: linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(220,230,235,0.5) 100%); /* Soft sea blue overlay */
}

.mockup-blog-post:nth-child(2) .mockup-blog-image::after {
    background: linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(237,226,222,0.5) 100%); /* Soft blush overlay */
}

.mockup-blog-image {
    height: 110px;
    position: relative;
}

.mockup-blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.mockup-blog-title {
    height: 10px;
    margin: 14px 12px 8px 12px;
    font-size: 12px;
    font-family: 'Delius', serif;
    border-radius: 5px;
}

.mockup-blog-excerpt {
    font-size: 10px;
    font-family: 'Delius', serif;
    color: #555;
    margin: 0 12px 14px 12px;
    border-radius: 4px;
}

.mockup-signup {
    background-color: #f5f1eb; /* Cream background */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.mockup-signup-text {
    font-size: 14px;
    margin-bottom: 12px;
    color: #3a3a3a;
    font-family: 'Delius', serif;
}

.mockup-form {
    display: flex;
    gap: 8px;
}

.mockup-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 12px;
    color: #999;
    background-color: #fff;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    font-family: 'Delius', serif;
}

.mockup-submit {
    background-color: #F27D72; /* Sage green */
    border-radius: 12px;
    align-content: center;
    color: white;
    font-size: 12px;
    padding: 8px 16px;
    font-family: 'Delius', serif;
    font-weight: 600;
    cursor: pointer;
}

/* Mobile Mockup */
.mobile-mockup {
    width: 260px;
    height: 520px;
    position: relative;
}

.mobile-frame {
    width: 100%;
    height: 100%;
    background-color: #3a3a3a; /* Darker soft gray */
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.mobile-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background-color: #3a3a3a;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 10;
}

.mobile-content {
    background-color: #FAF7F3; /* Changed to Soft Warm Beige */
    border-radius: 24px;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 12px;
    border-bottom: 1px solid #f0ebe6;
}

.mobile-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns the logo to the left */
    padding-left: 5px;
}

/* Add subtle shine animation */
@keyframes subtle-shine {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

.mockup-logo::before, 
.mockup-logo::after,
.mobile-logo::before,
.mobile-logo::after {
    animation: subtle-shine 3s infinite ease-in-out;
}

.mobile-menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
}

.mobile-menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-nav-link {
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link:hover {
    background-color: var(--border-color);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-icon {
        display: flex;
    }
    .mobile-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    .mobile-nav-link {
        padding: 1rem 2rem;
        text-decoration: none;
        color: var(--text-color);
        font-size: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    .mobile-nav-link:hover {
        background-color: var(--border-color);
    }
}

.mobile-hero {
    margin: 18px 6px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    position: relative;
    border-radius: 12px;
    background-color: #f5f1eb; /* Softer cream background */
}

.mobile-hero-image {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 0 0 0;
    justify-content: space-around;
    align-items: center;
    gap: 0px; /* Reduced gap for connected feel */
}

.mobile-hero-image img {
    width: 100px;
    height: 115px;
    object-fit: cover;
    margin: 0 4px;
    border-radius: 8px;
    scroll-snap-align: center;
}

.mobile-bio {
    font-size: 12px;
    color: #555;
    padding: 12px 12px 6px;
    font-family: 'Delius', serif;
}

.mobile-cta {
    font-size: 11px;
    color: white;
    background-color: #F27D72; /* Sage green */
    padding: 6px 12px;
    border-radius: 100px;
    margin-left: 12px;
    display: inline-block;
    font-family: 'Delius', serif;
    cursor: pointer;
}

.mobile-section {
    padding: 10px 12px;
}

.mobile-section-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #3a3a3a;
    font-family: 'Delius', serif;
}

.mobile-products {
    display: flex;
    gap: 10px;
}

.mobile-product {
    height: 110px;
    flex: 1;
    border-radius: 8px;
    position: relative;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    background-color: white;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}

.mobile-product::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-product:hover {
    transform: translateY(-4px);
}

.mobile-product:hover::after {
    opacity: 1;
}

.mobile-product-image {
    height: 55px;
    position: relative;
}

.mobile-product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(240,228,218,0.4) 100%);
    z-index: 1;
}

.mobile-blog-post {
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.mobile-post-image {
    height: 90px;
    position: relative;
}

.mobile-post-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(220,230,235,0.5) 100%); /* Soft sea blue overlay */
    z-index: 1;
}

.mobile-post-title {
    height: 8px;
    width: 70%;
    background-color: #eee;
    margin: 12px 10px;
    border-radius: 4px;
}

.mobile-signup {
    margin-top: auto;
    padding: 15px 12px;
    background-color: #f5f1eb; /* Cream background */
}

.mobile-signup-text {
    font-size: 12px;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.mobile-input {
    height: 30px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.creator-caption {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.creator-caption p {
    font-size: 1.25rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .mockup-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .desktop-mockup {
        width: 100%;
        max-width: 500px;
        height: 520px;
    }
}

@media (max-width: 576px) {
    .creator-example h2 {
        font-size: 2rem;
    }
    
    .desktop-mockup {
        height: 480px;
    }
    
    .mobile-mockup {
        height: 480px;
    }
    
    .creator-caption p {
        font-size: 1.125rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background-color: #f8f8f8;
    border-top: 1px solid var(--border-color);
}

.benefits h2 {
    font-family: 'EB Garamond', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    grid-column: span 2; /* Each card takes 2 columns by default */
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-color);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f4ff;
    border-radius: 12px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-card:nth-child(1) .benefit-icon {
    background-color: #f0f4ff;
}

.benefit-card:nth-child(2) .benefit-icon {
    background-color: #fff4f0;
}

.benefit-card:nth-child(3) .benefit-icon {
    background-color: #f0fff4;
}

.benefit-card:nth-child(4) .benefit-icon {
    background-color: #f4f0ff;
}

.benefit-card:nth-child(5) .benefit-icon {
    background-color: #fff8f0;
}

.benefit-card h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

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

/* Create second row with centered cards */
.benefit-card:nth-child(4) {
    grid-column: 2 / 4; /* Position in columns 2-3 */
}

.benefit-card:nth-child(5) {
    grid-column: 4 / 6; /* Position in columns 4-5 */
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefit-card {
        grid-column: span 1; /* Each card takes 1 column */
    }
    
    .benefit-card:nth-child(4),
    .benefit-card:nth-child(5) {
        grid-column: span 1; /* Reset to default for tablets */
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
}

/* Secondary CTA Section */
.secondary-cta {
    padding: 7rem 0;
    background: linear-gradient(180deg, #fff8fa 0%, #fffefe 100%);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.secondary-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.secondary-cta h2 {
    font-family: 'EB Garamond', serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.secondary-cta p {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.secondary-cta .cta-button {
    display: inline-block;
    background-color: var(--text-color);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.secondary-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .secondary-cta {
        padding: 5rem 0;
    }
    
    .secondary-cta h2 {
        font-size: 2.5rem;
    }
    
    .secondary-cta p {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .secondary-cta h2 {
        font-size: 2rem;
    }
    
    .secondary-cta p {
        font-size: 1.125rem;
    }
    
    .secondary-cta .cta-button {
        width: 60%;
        padding: 1rem;
        font-size: 0.875rem;
    }
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: #fafafa;
    border-top: 1px solid var(--border-color);
}

.faq h2 {
    font-family: 'EB Garamond', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--text-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-color);
    flex: 1;
}

.faq-toggle {
    background: none;
    border: none;
    padding: 0;
    margin-left: 1rem;
    cursor: pointer;
    width: 24px;
    height: 24px;
    color: var(--text-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.faq-toggle:focus {
    outline: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.faq-toggle .icon-plus,
.faq-toggle .icon-minus {
    position: absolute;
    transition: opacity 0.3s, transform 0.3s;
}

.faq-toggle .icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-item.active .faq-toggle .icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-toggle .icon-minus {
    opacity: 1;
    transform: rotate(0);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    height: auto;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-text);
    margin: 0;
    padding-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }
    
    .faq h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .faq h2 {
        font-size: 1.75rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

.squiggle-border {
    border: 3px dashed #d4a98b;
    border-radius: 10px;
}

.rounded-border {
    border: 3px solid #f27d72;
    border-radius: 50%;
}

.mobile-product-title {
    text-align: center;
    font-size: 9px;
    margin-top: 5px;
    margin-bottom: 2px;
    font-family: 'Delius', serif;
}

.mobile-product-price {
    font-size: 8px;
    color: #777;
    text-align: center;
    font-family: 'Delius', serif;
}

html {
    scroll-behavior: smooth;
}

.signup-section {
    position: relative;
    background-color: white;
    padding: 6rem 0 3rem;
    text-align: center;
}

.signup-section h2 {
    font-family: 'EB Garamond', serif;
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.signup-section p {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.signup-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.signup-form input[type="email"] {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    width: 100%;
    max-width: 400px;
    font-size: 1rem;
}

.signup-form button {
    display: inline-block;
    border: 1px solid #000;
    background-color: var(--text-color);
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.signup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

input[type="email"]:focus {
    border-color: #EFBF04; /* Golden color */
    outline: none;
}

@media (min-width: 769px) {
    .main-nav .mobile-menu-icon {
        display: none;
    }
    .book-demo-btn {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .book-demo-btn {
        display: none;
    }
    .signup-form {
        gap: 1rem;
    }
    .signup-section {
        padding: 3rem 0 2rem;
    }
    .signup-section h2 {
        font-size: 2rem;
        display: block;
        line-height: 1.4;
    }
    .signup-section p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .main-nav .mobile-menu-icon {
        display: flex;
    }
}

@media only screen and (min-width: 440px) and (max-width: 767px) {
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.4;
        padding: 0 2rem;
        display: block;
    }
}

/* Income Potential Section */
.income-potential {
    padding: 5rem 0;
    background-color: #fafafa;
    border-bottom: 1px solid var(--border-color);
}

.income-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.income-text {
    flex: 1;
}

.income-text h2 {
    font-family: 'EB Garamond', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.income-subheadline {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.income-benefits {
    list-style: none;
}

.income-benefits li {
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.income-benefits li svg {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    color: #4CAF50;
}

.income-chart {
    flex: 1;
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.chart-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.income-scale {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.scale-row {
    display: flex;
    align-items: center;
}

.scale-followers {
    flex: 0 0 60px;
    font-weight: 600;
    font-size: 1.1rem;
}

.scale-line {
    flex: 1;
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    margin: 0 1rem;
    overflow: hidden;
    position: relative;
}

.scale-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 5px;
}

.scale-amount {
    flex: 0 0 100px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .income-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .income-text, .income-chart {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .income-potential {
        padding: 4rem 0;
    }
    
    .income-text h2 {
        font-size: 2rem;
    }
    
    .income-subheadline {
        font-size: 1.1rem;
    }
    
    .income-benefits li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .income-potential {
        padding: 3rem 0;
    }
    
    .income-text h2 {
        font-size: 1.75rem;
    }
    
    .income-chart {
        padding: 1.5rem;
    }
    
    .scale-followers {
        flex: 0 0 40px;
        font-size: 1rem;
    }
    
    .scale-amount {
        flex: 0 0 80px;
        font-size: 1rem;
    }
}

/* Income Potential Section styles */
.income-subheader {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.income-steps {
    max-width: 1100px;
    margin: 0 auto;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .income-subheader {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .income-subheader {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Add the styles for the new revenue section */
.revenue-section {
    padding: 6rem 0;
    background-color: #fafafa;
    border-top: 1px solid var(--border-color);
}

.revenue-section h2 {
    font-family: 'EB Garamond', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.revenue-subheading {
    font-size: 1.25rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--light-text);
    line-height: 1.6;
}

.revenue-cards {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.revenue-card {
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.revenue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}

.revenue-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--text-color);
    background-color: #f0f4ff;
    border-radius: 12px;
}

.revenue-card:nth-child(1) .revenue-icon {
    background-color: #f0f4ff;
}

.revenue-card:nth-child(2) .revenue-icon {
    background-color: #fff4f0;
}

.revenue-card:nth-child(3) .revenue-icon {
    background-color: #f0fff4;
}

.revenue-icon svg {
    width: 28px;
    height: 28px;
}

.revenue-card h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

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

@media (max-width: 992px) {
    .revenue-cards {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .revenue-section {
        padding: 4rem 0;
    }
    
    .revenue-section h2 {
        font-size: 2rem;
    }
    
    .revenue-subheading {
        font-size: 1.1rem;
        padding: 0 2rem;
        margin-bottom: 2.5rem;
    }
    
    .revenue-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .revenue-card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .revenue-section h2 {
        font-size: 1.75rem;
    }
    
    .revenue-subheading {
        font-size: 1rem;
    }
    
    .revenue-card {
        padding: 1.5rem;
    }
}