/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #2F3E46;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #2F3E46;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 145, 77, 0.2);
}

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

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
}

.beta-label {
    background: none;
    color: #FF914D;
    font-size: 0.6rem;
    font-weight: 700;
    position: absolute;
    top: 8px;
    right: -35px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    position: relative;
}

.logo-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #FF914D;
}

.cta-btn {
    background: #FF914D;
    color: #FFFFFF !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #E67D3D;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 180px 0 60px;
    background: #FFFFFF;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2F3E46;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(47, 62, 70, 0.7);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: #FF914D;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #E67D3D;
    transform: translateY(-2px);
}

.btn-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.btn-secondary {
    background: transparent;
    color: #768460;
    padding: 1rem 2rem;
    border: 2px solid #768460;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #768460;
    color: #FFFFFF;
}

/* Hero Visual - Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    max-width: 320px;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    border-radius: 28px;
    display: block;
}

/* Legacy Hero Visual */
.link-demo {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(47, 62, 70, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.demo-input, .demo-output {
    text-align: center;
}

.demo-input span, .demo-output span {
    display: block;
    color: #768460;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.url-preview, .affiliate-preview {
    background: #FFFFFF;
    padding: 1rem;
    border-radius: 6px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(47, 62, 70, 0.15);
    color: #2F3E46;
}

.demo-arrow {
    text-align: center;
    font-size: 2rem;
    color: #FF914D;
    margin: 1rem 0;
    font-weight: bold;
}

.commission-preview {
    color: #768460;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.demo-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.demo-btn {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn {
    background: #FF914D;
    color: #FFFFFF;
    border: 1px solid #FF914D;
}

.share-btn:hover {
    background: #E67D3D;
    border-color: #E67D3D;
}

.buy-now-btn {
    background: #768460;
    color: #FFFFFF;
    border: 1px solid #768460;
}

.buy-now-btn:hover {
    background: #657354;
    border-color: #657354;
}

.demo-note {
    color: rgba(47, 62, 70, 0.6);
    font-size: 0.8rem;
    margin: 0;
    text-align: center;
}

.demo-product {
    text-align: center;
    margin: 1rem 0;
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(47, 62, 70, 0.1);
}

.product-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(47, 62, 70, 0.1);
}

.product-image {
    font-size: 3rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 145, 77, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 145, 77, 0.3);
}

.product-details {
    flex: 1;
    text-align: left;
}

.product-details h4 {
    color: #2F3E46;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.product-price {
    color: #768460;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.retailer-label {
    display: block;
    color: rgba(47, 62, 70, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.demo-retailers {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    max-width: 280px;
    margin: 0 auto;
}

.demo-retailer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid rgba(47, 62, 70, 0.15);
    font-size: 0.85rem;
    color: #2F3E46;
}

.demo-retailer.best {
    border-color: #FF914D;
    background: rgba(255, 145, 77, 0.05);
}

.demo-retailer.best .retailer-name {
    color: #FF914D;
    font-weight: 600;
}

.demo-retailer.best .commission-rate {
    color: #FF914D;
    font-weight: 600;
}

.retailer-name {
    font-weight: 500;
}

.commission-rate {
    color: #768460;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: #F8F9FA;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2F3E46;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(47, 62, 70, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #FF914D;
    box-shadow: 0 8px 25px rgba(255, 145, 77, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2F3E46;
    font-weight: 600;
    text-align: center;
}

.feature-card p {
    color: rgba(47, 62, 70, 0.7);
    line-height: 1.6;
    text-align: center;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background: #FFFFFF;
}

.how-it-works h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 6.5rem;
    color: #2F3E46;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #FF914D;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2F3E46;
    font-weight: 600;
}

.step p {
    color: rgba(47, 62, 70, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}


.url-example {
    background: #F8F9FA;
    padding: 0.75rem;
    border-radius: 6px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.85rem;
    border: 1px solid rgba(47, 62, 70, 0.15);
    color: #2F3E46;
}

.generated-link {
    background: #F8F9FA;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 145, 77, 0.3);
}

.generated-link .link {
    display: block;
    font-family: 'Monaco', 'Menlo', monospace;
    color: #FF914D;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.generated-link .commission {
    color: #768460;
    font-weight: 600;
}

.share-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-icon {
    font-size: 2rem;
    padding: 0.5rem;
    background: rgba(255, 145, 77, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 145, 77, 0.3);
}

/* AI Finding Visual - Step 2 */
.ai-finding {
    background: #F8F9FA;
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 145, 77, 0.3);
    text-align: center;
}

.ai-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.ai-icon {
    font-size: 1.2rem;
}

.ai-text {
    color: #2F3E46;
    font-weight: 500;
    font-size: 0.95rem;
}

.ai-commission {
    color: #768460;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Link Ready Visual - Step 3 */
.link-ready {
    background: #F8F9FA;
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(47, 62, 70, 0.15);
    text-align: center;
}

.link-ready .link-display {
    margin-bottom: 0.75rem;
}

.link-ready .earning-potential {
    color: #768460;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Save Button - Step 4 */
.save-btn {
    background: #768460;
    color: #FFFFFF;
    border: 1px solid #768460;
}

.save-btn:hover {
    background: #657354;
    border-color: #657354;
}

/* Track Note - Step 4 */
.track-note {
    margin-top: 1rem;
    color: rgba(47, 62, 70, 0.6);
    font-size: 0.85rem;
    text-align: center;
}

.final-link-demo {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(47, 62, 70, 0.15);
}

.earning-link {
    text-align: center;
    margin-bottom: 1.5rem;
}

.link-label {
    display: block;
    color: #768460;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.link-display {
    background: #FFFFFF;
    padding: 0.75rem;
    border-radius: 6px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(47, 62, 70, 0.15);
    color: #FF914D;
    font-weight: 600;
}

.earning-potential {
    color: #768460;
    font-weight: 600;
    font-size: 0.9rem;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.share-icon svg {
    color: #FF914D;
}

.retailer-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 250px;
    margin: 0 auto;
}

.retailer-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid rgba(47, 62, 70, 0.15);
    transition: all 0.3s ease;
}

.retailer-option:hover {
    border-color: #768460;
    background: rgba(118, 132, 96, 0.05);
}

.retailer-option.best {
    border-color: #FF914D;
    background: rgba(255, 145, 77, 0.05);
}

.retailer-name {
    color: #2F3E46;
    font-weight: 500;
}

.commission-rate {
    color: #768460;
    font-weight: 600;
    font-size: 0.9rem;
}

.retailer-option.best .commission-rate {
    color: #FF914D;
}

.product-selection {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 280px;
    margin: 0 auto;
}

.product-item {
    padding: 0.75rem 1rem;
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid rgba(47, 62, 70, 0.15);
    color: rgba(47, 62, 70, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-item.highlighted {
    border-color: #FF914D;
    background: rgba(255, 145, 77, 0.05);
    color: #2F3E46;
}

/* Analytics Section */
.analytics-section {
    padding: 60px 0;
    background: #F8F9FA;
}

.analytics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.analytics-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2F3E46;
    font-weight: 700;
}

.analytics-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(47, 62, 70, 0.7);
    line-height: 1.6;
}

.analytics-features {
    list-style: none;
}

.analytics-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(47, 62, 70, 0.1);
    color: rgba(47, 62, 70, 0.8);
    position: relative;
    padding-left: 1.5rem;
}

.analytics-features li:before {
    content: "✓";
    color: #768460;
    font-weight: 600;
    position: absolute;
    left: 0;
}

.dashboard-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(47, 62, 70, 0.1);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #FF914D;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(47, 62, 70, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Retailers Section */
.retailers {
    padding: 60px 0;
    background: #FFFFFF;
    text-align: center;
}

.retailers h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2F3E46;
    font-weight: 700;
}

.retailers p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(47, 62, 70, 0.7);
}

.retailer-ticker {
    overflow: hidden;
    background: #F8F9FA;
    border-radius: 12px;
    border: 1px solid rgba(47, 62, 70, 0.1);
    padding: 1.5rem 0;
    margin-top: 1.5rem;
    position: relative;
    display: flex;
    gap: 0;
}

.retailer-ticker::before,
.retailer-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.retailer-ticker::before {
    left: 0;
    background: linear-gradient(90deg, #F8F9FA, transparent);
}

.retailer-ticker::after {
    right: 0;
    background: linear-gradient(270deg, #F8F9FA, transparent);
}

.retailer-ticker:first-of-type {
    margin-top: 3rem;
}

.ticker-track {
    display: flex;
    flex-shrink: 0;
    gap: 0;
    -webkit-animation: scroll-infinite 60s linear infinite;
    animation: scroll-infinite 60s linear infinite;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.ticker-track-reverse {
    -webkit-animation: scroll-infinite-reverse 60s linear infinite;
    animation: scroll-infinite-reverse 60s linear infinite;
}

.ticker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2F3E46;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    margin: 0 0.8rem;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid rgba(47, 62, 70, 0.15);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 120px;
    min-height: 70px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.ticker-item .brand-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    display: block;
}

.ticker-item .brand-logo {
    max-height: 40px;
    max-width: 100px;
    object-fit: contain;
    margin-bottom: 0.3rem;
}

.ticker-item .commission-rate {
    font-size: 0.8rem;
    color: #768460;
    font-weight: 500;
}

@-webkit-keyframes scroll-infinite {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes scroll-infinite {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@-webkit-keyframes scroll-infinite-reverse {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes scroll-infinite-reverse {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/* Earnings Ticker Section */
.earnings-ticker-section {
    padding: 50px 0 60px;
    background: linear-gradient(135deg, #768460 0%, #5a6b48 100%);
    text-align: center;
}

.earnings-ticker-section h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.earnings-ticker-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.earnings-ticker {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 0;
    position: relative;
    margin-top: 1.5rem;
}

.earnings-ticker::before,
.earnings-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.earnings-ticker::before {
    left: 0;
    background: linear-gradient(90deg, #768460, transparent);
}

.earnings-ticker::after {
    right: 0;
    background: linear-gradient(270deg, #5a6b48, transparent);
}

.earnings-ticker-track {
    display: flex;
    flex-shrink: 0;
    gap: 0;
    -webkit-animation: scroll-infinite 12s linear infinite;
    animation: scroll-infinite 12s linear infinite;
}

.earning-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0.6rem;
    margin: 0 0.25rem;
    white-space: normal;
    text-align: center;
    color: white;
    font-size: 0.6rem;
    line-height: 1.3;
    min-width: 70px;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.earning-name {
    display: block;
    font-weight: 600;
    color: white;
    font-size: 0.7rem;
    margin-bottom: 2px;
}

.earning-location {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.55rem;
    margin-bottom: 4px;
}

.earning-amount {
    display: block;
    font-weight: 700;
    color: #FFD700;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.earning-retailer {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.5rem;
}

@media (max-width: 768px) {
    .earnings-ticker-track {
        -webkit-animation: scroll-infinite 8s linear infinite;
        animation: scroll-infinite 8s linear infinite;
    }
    .earning-item {
        min-width: 50px;
        padding: 0.3rem 0.4rem;
        font-size: 0.55rem;
    }
    .earning-name {
        font-size: 0.6rem;
    }
    .earning-amount {
        font-size: 0.7rem;
    }
    .earning-location,
    .earning-retailer {
        font-size: 0.45rem;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2F3E46;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(47, 62, 70, 0.7);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.cta-note {
    margin-top: 1rem !important;
    font-size: 0.9rem !important;
    color: rgba(47, 62, 70, 0.5) !important;
}

/* Footer */
.footer {
    background: #2F3E46;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(47, 62, 70, 0.1);
}

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

.footer-logo {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    margin-left: 35px;
}

.footer-logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    position: relative;
}

.footer-logo-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo-image {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-beta-label {
    background: none;
    color: #FF914D;
    font-size: 0.5rem;
    font-weight: 700;
    position: absolute;
    top: 6px;
    right: -30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-brand {
    text-align: center;
}

.footer-brand h3 {
    color: #FF914D;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    color: #FF914D;
    background: rgba(255, 145, 77, 0.1);
}

.footer-links-simple {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links-simple a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links-simple a:hover {
    color: #FF914D;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #FF914D;
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links-simple {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        position: relative;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(47, 62, 70, 0.98);
        flex-direction: column;
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(255, 145, 77, 0.2);
        z-index: 1001;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        font-size: 1rem;
        color: #FFFFFF;
    }
    
    .nav a:not(.cta-btn):last-child {
        border-bottom: none;
    }
    
    .nav .cta-btn {
        margin: 1rem 0 0.5rem 0;
        display: block;
        text-align: center;
        padding: 0.75rem 1.5rem !important;
        background: #FF914D !important;
        color: #FFFFFF !important;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 600;
        border: none;
        transition: all 0.3s ease;
        font-size: 1rem;
        border-bottom: none !important;
    }
    
    .nav .cta-btn:hover {
        background: #E67D3D !important;
        transform: translateY(-1px);
    }
    
    .hero {
        padding: 160px 0 80px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .analytics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .dashboard-preview {
        grid-template-columns: 1fr;
    }
    
    .retailer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Mobile Ticker - Convert to Static Grid */
    .retailer-ticker {
        padding: 0;
        margin-top: 1rem;
        background: transparent;
        border: none;
        overflow: visible;
        display: block;
    }
    
    .retailer-ticker::before,
    .retailer-ticker::after {
        display: none;
    }
    
    .retailer-ticker:first-of-type {
        margin-top: 2rem;
    }
    
    .retailer-ticker.ticker-reverse {
        margin-top: 0.5rem;
    }
    
    .ticker-track,
    .ticker-track-reverse {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        -webkit-animation: none !important;
        animation: none !important;
        -webkit-transform: none !important;
        transform: none !important;
    }
    
    .ticker-item {
        min-width: auto;
        width: calc(33.33% - 0.4rem);
        max-width: 110px;
        min-height: 55px;
        padding: 0.5rem 0.4rem;
        margin: 0;
        font-size: 0.8rem;
        text-align: center;
        background: #FFFFFF;
        border-radius: 6px;
        border: 1px solid rgba(47, 62, 70, 0.15);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    }
    
    .ticker-item .brand-name {
        font-size: 0.75rem;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .ticker-item .commission-rate {
        font-size: 0.65rem;
    }
    
    /* Hide duplicate items on mobile (only show first set) */
    .ticker-track .ticker-item:nth-child(n+13),
    .ticker-track-reverse .ticker-item:nth-child(n+13) {
        display: none;
    }
    
    /* Mobile Earnings Ticker */
    .earnings-ticker-section {
        padding: 40px 0;
    }
    
    .earnings-ticker-section h2 {
        font-size: 1.5rem;
    }
    
    .earnings-ticker {
        margin-top: 1rem;
        padding: 0.75rem 0;
    }
    
    .earnings-ticker::before,
    .earnings-ticker::after {
        width: 30px;
    }
    
    .earning-item {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
        gap: 0.3rem;
    }
    
    .earning-amount {
        font-size: 1rem;
    }
    
    .earning-location,
    .earning-text,
    .earning-retailer {
        font-size: 0.75rem;
    }
    
    .link-demo {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .demo-input span, .demo-output span {
        font-size: 0.8rem;
    }
    
    .url-preview, .affiliate-preview {
        font-size: 0.8rem;
        padding: 0.75rem;
        word-break: break-all;
    }
    
    .commission-preview {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .features h2, .how-it-works h2, .analytics-text h2, .retailers h2, .final-cta h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .features h2, .how-it-works h2, .analytics-text h2, .retailers h2, .final-cta h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .link-demo {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .demo-input span, .demo-output span {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .url-preview, .affiliate-preview {
        font-size: 0.75rem;
        padding: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .demo-arrow {
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }
    
    .commission-preview {
        font-size: 0.9rem;
    }
    
    .retailer-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Small Mobile Ticker - Static Grid */
    .ticker-item {
        width: calc(50% - 0.3rem);
        max-width: none;
        min-height: 50px;
        padding: 0.4rem 0.3rem;
    }
    
    .ticker-item .brand-name {
        font-size: 0.7rem;
    }
    
    .ticker-item .commission-rate {
        font-size: 0.6rem;
    }
    
    .final-cta p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary.large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Hero Stats */
.hero-stats {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: rgba(47, 62, 70, 0.8);
}

.hero-stats strong {
    color: #768460;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2F3E46;
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #F8F9FA;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(47, 62, 70, 0.1);
}

.faq-item h3 {
    color: #2F3E46;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: rgba(47, 62, 70, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-item {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
}
