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

:root {
    --primary: #FFD700;
    --secondary: #0A1F44;
    --accent: #1E3A8A;
    --light: #F8FAFC;
    --dark: #0F172A;
    --gray: #64748B;
    --light-gray: #E2E8F0;
    --success: #10B981;
    --transition: all 0.3s ease;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--secondary);
    overflow-x: hidden;
    min-width: 320px;
}

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

section {
    padding: 100px 0;
}

.highlight {
    color: var(--primary);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-gray);
    font-family: 'Inter', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-login, .btn-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    gap: 10px;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    background-color: #FFE44D;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.btn-login {
    background-color: transparent;
    color: var(--light);
    padding: 10px 25px;
}

.btn-login:hover {
    color: var(--primary);
}

.btn-signup {
    background-color: var(--primary);
    color: var(--secondary);
    padding: 12px 25px;
}

.btn-signup:hover {
    background-color: #FFE44D;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 31, 68, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.logo-img {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light);
    text-decoration: none;
    white-space: nowrap;
}

.logo-text span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hamburger Menu - Exact same as How It Works page */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
    z-index: 1001;
    width: 40px;
    height: 40px;
    margin-left: auto;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--light);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay - Exact same as How It Works page */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    padding-top: 150px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin: 0;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.visual-card {
    background-color: var(--dark);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    z-index: 2;
    max-width: 100%;
    overflow: hidden;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.platform-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    flex-wrap: wrap;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tracked-product {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.product-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    flex: 1;
    min-width: 200px;
}

.product-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    word-wrap: break-word;
}

.price-comparison {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--gray);
}

.discount-badge {
    background-color: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
}

.price-history {
    margin-top: 15px;
}

.history-label {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 8px;
}

.history-graph {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 40px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.history-graph::-webkit-scrollbar {
    height: 4px;
}

.history-graph::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.history-graph::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

.graph-bar {
    width: 20px;
    background-color: var(--gray);
    border-radius: 4px;
    transition: var(--transition);
    flex-shrink: 0;
}

.graph-bar.active {
    background-color: var(--primary);
}

.graph-bar:hover {
    opacity: 0.8;
}

.tracking-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(10, 31, 68, 0.5);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    flex-wrap: wrap;
}

.pulse-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-ring 3s infinite;
}

/* Features Section */
.features {
    background-color: var(--dark);
}

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

.feature-card {
    background-color: rgba(15, 23, 42, 0.8);
    border-radius: 20px;
    padding: 35px 30px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-highlight, .alert-demo, .trend-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.feature-highlight i, .alert-demo i, .trend-indicator i {
    color: var(--primary);
}

.alert-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: blink 2s infinite;
}

.trend-indicator.up {
    color: var(--success);
}

.trend-indicator.up i {
    color: var(--success);
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.platform-tag {
    background-color: rgba(30, 58, 138, 0.3);
    color: #93C5FD;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* How It Works */
.how-it-works {
    background-color: var(--secondary);
}

.steps-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 80px;
}

.step-line {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background-color: rgba(255, 215, 0, 0.2);
    z-index: 1;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.step:nth-child(odd) {
    flex-direction: row;
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    flex-shrink: 0;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.step-content {
    flex: 1;
    padding: 0 40px;
}

.step:nth-child(odd) .step-content {
    text-align: right;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.step:nth-child(odd) .step-icon {
    margin-left: auto;
}

.step-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.visual-search, .visual-alert, .visual-notification {
    background-color: rgba(15, 23, 42, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    min-width: 250px;
    max-width: 100%;
}

.visual-search {
    display: flex;
    align-items: center;
    gap: 15px;
}

.visual-search input {
    background: transparent;
    border: none;
    color: var(--light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    width: 100%;
    min-width: 0;
}

.visual-search input::placeholder {
    color: var(--gray);
}

.visual-search i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.alert-set {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.alert-set span {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.target-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.visual-notification {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.notification-bell {
    position: relative;
    font-size: 2.5rem;
    color: var(--primary);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background-color: #EF4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.notification-text {
    font-weight: 600;
    color: var(--primary);
}

.cta-container {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(30, 58, 138, 0.2));
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    max-width: 100%;
    overflow: hidden;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* Footer */
.footer {
    background-color: var(--dark);
    padding-top: 80px;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    font-size: 2rem;
}

.footer-description {
    margin: 20px 0;
    max-width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.link-group h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--light);
}

.link-group a {
    display: block;
    color: var(--light-gray);
    text-decoration: none;
    margin-bottom: 15px;
    transition: var(--transition);
    word-wrap: break-word;
}

.link-group a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
}

.footer-extra {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        max-width: 80%;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .visual-card {
        padding: 20px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
}

/* Tablet - 768px and below */
@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        max-width: 90%;
    }
    
    /* Navigation - Mobile Styles - UPDATED to match How It Works page */
    .navbar {
        padding: 15px 0;
    }
    
    .hamburger {
        display: flex;
        order: 2;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Start from right */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--secondary);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 30px; /* Increased top padding to match How It Works */
        gap: 25px;
        transition: right 0.3s ease; /* Changed transition property */
        z-index: 999;
        overflow-y: auto;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 20px;
    }
    
    .btn-login, .btn-signup {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 120px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* How It Works Steps */
    .step-line {
        display: none;
    }
    
    .step {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 60px;
        gap: 30px;
    }
    
    .step-number {
        order: -1;
        margin-bottom: 20px;
    }
    
    .step-content {
        padding: 0;
        order: 0;
        width: 100%;
    }
    
    .step:nth-child(odd) .step-content {
        text-align: center;
    }
    
    .step-icon {
        margin: 0 auto 20px !important;
    }
    
    .step-visual {
        order: 1;
        width: 100%;
    }
    
    .visual-search, .visual-alert, .visual-notification {
        width: 100%;
        min-width: auto;
        padding: 20px;
    }
    
    /* CTA Container */
    .cta-container {
        padding: 40px 25px;
    }
    
    .cta-container h2 {
        font-size: 2rem;
    }
    
    .cta-container p {
        font-size: 1.1rem;
    }
    
    /* Footer */
    .footer {
        padding-top: 60px;
        padding-bottom: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-extra {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Visual Card Adjustments */
    .visual-card {
        padding: 20px;
    }
    
    .tracked-product {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .product-info {
        min-width: auto;
        width: 100%;
    }
    
    .price-comparison {
        justify-content: center;
    }
    
    .history-graph {
        justify-content: center;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-container {
        gap: 40px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        text-align: center;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    /* Logo */
    .logo-text {
        font-size: 1.5rem;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    /* Steps */
    .step {
        margin-bottom: 50px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* CTA */
    .cta-container {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .cta-container h2 {
        font-size: 1.8rem;
    }
    
    .cta-container p {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding-top: 50px;
        padding-bottom: 25px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .link-group h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .link-group a {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Visual Card */
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .platform-icons {
        gap: 10px;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .original-price {
        font-size: 1rem;
    }
    
    .graph-bar {
        width: 15px;
    }
    
    .pulse-effect {
        width: 300px;
        height: 300px;
    }
}

/* Small Mobile - 320px and below */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.9rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 15px 12px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .cta-container {
        padding: 25px 15px;
    }
    
    .cta-container h2 {
        font-size: 1.6rem;
    }
    
    .footer-content {
        gap: 30px;
    }
}

/* Utility Classes */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}