:root {
    --orange-accent: #ffa500;
    --orange-secondary: #ffb74d;
    --orange-gradient: linear-gradient(90deg, #ffa500, #ffc107);
    --orange-shadow: rgba(255, 165, 0, 0.3);
    --orange-hover-shadow: rgba(255, 165, 0, 0.4);
    --orange-bg-glow1: rgba(255, 165, 0, 0.15);
    --orange-bg-glow2: rgba(255, 193, 7, 0.1);

    /* Original Purple Theme */
    --purple-accent: #7142f4;
    --purple-gradient: linear-gradient(90deg, #7142f4, #c861d5);
    --purple-shadow: rgba(113, 66, 244, 0.3);
    --purple-hover-shadow: rgba(113, 66, 244, 0.4);
    --purple-bg-glow1: rgba(113, 66, 244, 0.15);
    --purple-bg-glow2: rgba(200, 97, 213, 0.1);

    /* Dark Blue Theme (from the image) */
    --blue-accent: #1E90FF;
    --blue-gradient: linear-gradient(90deg, #1E90FF, #00BFFF);
    --blue-shadow: rgba(30, 144, 255, 0.3);
    --blue-hover-shadow: rgba(30, 144, 255, 0.4);
    --blue-bg-glow1: rgba(30, 144, 255, 0.15);
    --blue-bg-glow2: rgba(0, 191, 255, 0.1);
    
    /* Light Theme Colors */
    --light-bg-primary: #f8f9fa;
    --light-bg-secondary: #eaecef;
    --light-text-primary: #212529;
    --light-text-secondary: rgba(33, 37, 41, 0.7);
    --light-text-tertiary: rgba(33, 37, 41, 0.5);
    --light-card-bg: rgba(0, 0, 0, 0.03);
    --light-border-color: rgba(0, 0, 0, 0.1);
    --light-shadow-color: rgba(0, 0, 0, 0.1);

    /* Dark Theme Colors  */
    --dark-bg-primary: #282c34;
    --dark-bg-secondary: #21252b;
    --dark-text-primary: #ffffff;
    --dark-text-secondary: rgba(255, 255, 255, 0.7);
    --dark-text-tertiary: rgba(255, 255, 255, 0.5);
    --dark-card-bg: rgba(255, 255, 255, 0.05);
    --dark-border-color: rgba(255, 255, 255, 0.1);
    --dark-shadow-color: rgba(0, 0, 0, 0.4);

    /* Active theme (default: orange dark, */
    --accent-color: var(--orange-accent);
    --accent-gradient: var(--orange-gradient);
    --shadow-accent: var(--orange-shadow);
    --shadow-accent-hover: var(--orange-hover-shadow);
    --bg-glow1: var(--orange-bg-glow1);
    --bg-glow2: var(--orange-bg-glow2);

    /* Other basic colors */
    --bg-primary: var(--dark-bg-primary);
    --bg-secondary: var(--dark-bg-secondary);
    --text-primary: var(--dark-text-primary);
    --text-secondary: var(--dark-text-secondary);
    --text-tertiary: var(--dark-text-tertiary);
    --card-bg: var(--dark-card-bg);
    --border-color: var(--dark-border-color);
    --shadow-color: var(--dark-shadow-color);
    --transition-speed: 0.3s;
}

/* Orange Theme Class */
.orange-theme {
    --accent-color: var(--orange-accent);
    --accent-gradient: var(--orange-gradient);
    --shadow-accent: var(--orange-shadow);
    --shadow-accent-hover: var(--orange-hover-shadow);
    --bg-glow1: var(--orange-bg-glow1);
    --bg-glow2: var(--orange-bg-glow2);
}

/* Purple Theme Class */
.purple-theme {
    --accent-color: var(--purple-accent);
    --accent-gradient: var(--purple-gradient);
    --shadow-accent: var(--purple-shadow);
    --shadow-accent-hover: var(--purple-hover-shadow);
    --bg-glow1: var(--purple-bg-glow1);
    --bg-glow2: var(--purple-bg-glow2);
}

/* Blue Theme Class */
.blue-theme {
    --accent-color: var(--blue-accent);
    --accent-gradient: var(--blue-gradient);
    --shadow-accent: var(--blue-shadow);
    --shadow-accent-hover: var(--blue-hover-shadow);
    --bg-glow1: var(--blue-bg-glow1);
    --bg-glow2: var(--blue-bg-glow2);
}

/* Light Theme Class */
.light-theme {
    --bg-primary: var(--light-bg-primary);
    --bg-secondary: var(--light-bg-secondary);
    --text-primary: var(--light-text-primary);
    --text-secondary: var(--light-text-secondary);
    --text-tertiary: var(--light-text-tertiary);
    --card-bg: var(--light-card-bg);
    --border-color: var(--light-border-color);
    --shadow-color: var(--light-shadow-color);
    --dark-text-secondary: rgba(33, 37, 41, 0.7);;
}

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

html, body {
    overscroll-behavior: none;
    height: 100%;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
    
    max-width: 100vw;
    
    transition: background-image 0.5s ease, background-color 0.5s ease, color 0.5s ease;
}

/* iOS */
@supports (-webkit-touch-callout: none) {
    body {
        /* iOS */
        touch-action: pan-x pan-y;
        -webkit-overflow-scrolling: touch;
    }
    
    .before-after-slider {
        /*  iOS */
        -webkit-backface-visibility: hidden;
        -webkit-transform: translateZ(0);
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, var(--bg-secondary) 12%, transparent 12.5%, transparent 87%, var(--bg-secondary) 87.5%, var(--bg-secondary)),
        linear-gradient(150deg, var(--bg-secondary) 12%, transparent 12.5%, transparent 87%, var(--bg-secondary) 87.5%, var(--bg-secondary)),
        linear-gradient(30deg, var(--bg-secondary) 12%, transparent 12.5%, transparent 87%, var(--bg-secondary) 87.5%, var(--bg-secondary)),
        linear-gradient(150deg, var(--bg-secondary) 12%, transparent 12.5%, transparent 87%, var(--bg-secondary) 87.5%, var(--bg-secondary)),
        linear-gradient(60deg, rgba(255,255,255,0.1) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.1)),
        linear-gradient(60deg, rgba(255,255,255,0.1) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.1));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    opacity: 0.05;
    z-index: -1;
}

html {
    transition: all 0.5s ease;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 15px auto 0;
    border-radius: 2px;
}

section {
    padding: 100px 0;
    position: relative;
    width: 100%;
    overflow: visible;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
    background-color: rgba(40, 44, 52, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-color);
    transition: all 0.5s ease;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.light-theme header {
    background-color: rgba(248, 249, 250, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-pattern, .header-particles {
    display: none;
}

.logo-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-container a:hover {
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 32px;
    height: 32px;
    margin-right: 15px;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(20deg);
}

.logo-container div {
    display: flex;
    flex-direction: column;
}

.logo-container h1 {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.light-theme .logo-container h1 {
    color: var(--dark-bg-primary);
}

.subtitle {
    font-weight: 300;
    opacity: 0.8;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: color 0.3s ease, opacity 0.3s ease;
    margin-bottom: 1rem;
}

.light-theme .subtitle {
    color: var(--dark-text-secondary);
    opacity: 0.9;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.light-theme nav ul li a {
    color: var(--dark-bg-primary);
    font-weight: 600;
}

nav ul li a:hover {
    color: var(--accent-color);
}

.light-theme nav ul li a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 1px rgba(255, 165, 0, 0.3);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent-gradient);
    transition: width var(--transition-speed);
}

nav ul li a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--accent-gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed), background-position 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    background-size: 200% auto;
    background-position: left center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 15px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5);
    background-position: right center;
    color: white;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 165, 0, 0.05), transparent, rgba(255, 165, 0, 0.05));
    z-index: -1;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    position: relative;
    flex-direction: column;
    padding-top: 30px;
}

.hero-content {
    flex: 1;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hero h2 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--orange-accent);
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--orange-accent);
}

.tagline {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-button-large {
    background: var(--orange-gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-block;
    margin: 20px 0 40px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 6px 20px var(--shadow-accent);
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-accent-hover);
    color: white;
}

.icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.mockup-image {
    border-radius: 12px;
    box-shadow: 0 20px 40px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.stats {
    display: flex;
    margin-top: 3rem;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0.3;
}

.features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: radial-gradient(circle at 50% 50%, var(--bg-glow1) 0%, transparent 70%);
}

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

.feature-card {
    background-color: var(--bg-secondary);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transition: height 0.3s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

.feature-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.feature-icon-container {
    width: 70px;
    height: 70px;
    background: var(--bg-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card:hover .feature-icon-container {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: auto;
    position: relative;
}

.feature-card:hover h3 {
    color: var(--accent-color);
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    text-align: center;
}

/* Before-After Slider Styles */
.before-after-container {
    max-width: calc(100% + 100px);
    margin: 0 -50px;
    height: 100%;
    width: calc(100% + 100px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
}

.before-after-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.before-after-slider * {
    -webkit-user-select: none;
    user-select: none;
}


.slider-handle * {
    pointer-events: none;
}

.before-image {
    z-index: 2;
    width: 50%; /* Initial position */
    transition: width 0.2s ease;
}

.after-image {
    z-index: 1; /*  before-image */
}

.before-image img,
.after-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
    transition: transform 0.05s ease;
    will-change: transform;
}

.before-image img {
    object-position: left center;
}

.after-image img {
    object-position: center;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 100%;
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
    touch-action: none !important;
    user-select: none;
    -webkit-user-select: none;
    transition: left 0.2s ease;
}

.handle-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--accent-color);
    transform: translateX(-50%);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    z-index: 5;
}


@media (max-width: 768px) {
    .before-after-container {
        max-width: 100%;
        margin: 0;
        width: 100%;
    }
}

.handle-arrow {
    color: white;
    font-size: 12px;
    position: absolute;
}

.left-arrow {
    left: 8px;
}

.right-arrow {
    right: 8px;
}

.label {
    position: absolute;
    top: 20px;
    padding: 5px 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
}

.light-label {
    left: 20px;
}

.dark-label {
    right: 20px;
}

.slider-instruction {
    margin-top: 20px;
    font-size: 16px;
    color: var(--text-secondary);
}

/* Remove old slider styles */
.screenshot-slider {
    display: none;
}

.slider-controls {
    display: none;
}

.dot {
    display: none;
}

/* How to Use Section */
.how-to-use {
    background-color: var(--bg-secondary);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -15%;
    width: 30%;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0.5;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-secondary);
}

.video-container {
    text-align: center;
    margin-top: 40px;
}

.how-to-gif {
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 20px 40px var(--shadow-color);
    border: 1px solid var(--border-color);
}

/* Reviews Section */
.reviews {
    background-color: var(--bg-primary);
}

.reviews-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.review-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed);
}

.review-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: gold;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer {
    font-weight: 600;
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    background-color: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--card-bg);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform var(--transition-speed);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed), padding var(--transition-speed);
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 120px 0;
    background-color: var(--bg-primary);
    background-image: radial-gradient(circle at 50% 50%, rgba(113, 66, 244, 0.15) 0%, transparent 70%);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-column {
    flex: 0 0 200px;
    min-width: 200px;
    text-align: center;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    color: var(--text-primary);
}

.footer-column h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent-gradient);
    margin: 10px auto 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    transition: color var(--transition-speed);
    padding: 5px;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-top: 20px;
}

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

.copyright p {
    padding: 10px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .stats {
        justify-content: center;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        margin: 15px 0;
    }
    
    .hero {
        min-height: auto;
        padding-top: 20px;
        margin-bottom: 30px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 25px;
        text-align: center;
    }
    
    .feature-icon-container {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        margin: 0 auto 20px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
    
    .reviews-container {
        flex-direction: column;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 30px;
    }
    
    .browser-content {
        height: 450px;
    }
    
    .cta-button-large {
        padding: 12px 25px;
        font-size: 1.1rem;
        margin: 15px 0 30px;
    }
    
    .logo-container h1 {
        font-size: 1.2rem;
    }
    
    .subtitle {
        font-size: 0.8rem;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-links {
        gap: 30px;
    }
    
    .footer-column {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero {
        padding-top: 10px;
        margin-bottom: 20px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon-container {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
    
    .feature-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .browser-mockup {
        margin-top: 20px;
    }
    
    .browser-content {
        height: 350px;
    }
    
    .cta-button-large {
        padding: 10px 20px;
        font-size: 1rem;
        margin: 10px 0 25px;
    }
}

/* Utility Classes */
.no-scroll {
    overflow: auto !important;
    position: static !important;
    touch-action: auto !important;
}

/* Theme Switcher */
.theme-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: var(--accent-gradient);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--shadow-accent);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-switcher:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px var(--shadow-accent-hover);
}

.theme-switcher svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.light-theme .theme-switcher svg {
    fill: white;
}


.browser-mockup {
    border-radius: 8px;
    background-color: #3c4043;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 100%;
    height: auto;
    will-change: transform;
    z-index: 1;
}

.browser-controls {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #3c4043;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-buttons {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.browser-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-button.red {
    background-color: #ff5f56;
}

.browser-button.yellow {
    background-color: #ffbd2e;
}

.browser-button.green {
    background-color: #27c93f;
}

.address-bar {
    flex: 1;
    background-color: #202124;
    border-radius: 25px;
    padding: 8px 15px;
    color: #9aa0a6;
    font-size: 14px;
}

.dark-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    cursor: pointer;
    font-size: 14px;
}

.browser-content {
    height: 600px;
    overflow: hidden;
    background-color: #fff;
    position: relative;
    width: 100%;
    touch-action: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.browser-mockup {
    will-change: transform;
    z-index: 1;
}

body.no-scroll {
    position: fixed;
    width: 100%;
    height: 100%;
    touch-action: none !important;
    overflow: hidden !important;
    overscroll-behavior: none !important;
}

.app-features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0 40px;
    width: 100%;
    max-width: 1000px;
}

.app-feature-card {
    flex: 1;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.app-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gradient);
    z-index: 1;
}

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

.app-feature-icon {
    font-size: 28px;
    margin-bottom: 15px;
    background: var(--accent-gradient);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.3);
}

.app-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 600;
}

.app-feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive styles for app features */
@media (max-width: 768px) {
    .app-features {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0 30px;
    }
    
    .app-feature-card {
        padding: 20px;
    }
}

.browser-mockup {
    margin-top: 20px;
}

.slider-handle .handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    border: 2px solid white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    touch-action: none;
    cursor: grab;
    pointer-events: auto !important;
    z-index: 999;
    user-select: none;
}

.slider-handle .handle-circle:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.5);
}

.slider-handle .handle-circle.dragging {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    cursor: grabbing;
}

.light-theme nav ul li a::after {
    background: var(--accent-gradient);
    height: 2px;
}

/* Privacy Policy and Terms of Service Styles */
.policy-page section {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 40px;
    background-color: var(--bg-secondary);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    line-height: 1.8;
    border-left: 4px solid var(--accent-color);
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.policy-page section h2 {
    color: var(--accent-color);
    margin-bottom: 30px;
    font-size: 2.4rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.policy-page section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
}

.policy-page section h3 {
    color: var(--accent-color);
    margin: 35px 0 20px;
    font-size: 1.6rem;
    position: relative;
    padding-left: 15px;
    font-weight: 600;
}

.policy-page section h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background: var(--accent-gradient);
    border-radius: 3px;
}

.policy-page section p {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.05rem;
    text-align: justify;
}

.policy-page section p:last-of-type {
    margin-bottom: 0;
}

.policy-page section ul {
    margin: 15px 0 25px 15px;
    padding-left: 20px;
}

.policy-page section ul li {
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    padding-left: 10px;
}

.policy-page section ul li:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.policy-page section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.policy-page section a:hover {
    text-decoration: none;
    color: var(--orange-secondary);
}

.policy-page section a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.policy-page section a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

/* For the date and header description */
.policy-page section p:first-of-type {
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.light-theme .policy-page section {
    background-color: var(--light-bg-secondary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.light-theme .policy-page section p,
.light-theme .policy-page section ul li {
    color: var(--dark-text-primary);
}

@media (max-width: 768px) {
    .policy-page section {
        padding: 25px;
        margin: 20px auto;
    }
    
    .policy-page section h2 {
        font-size: 1.8rem;
    }
    
    .policy-page section h3 {
        font-size: 1.4rem;
    }
    
    .policy-page section p {
        font-size: 1rem;
    }
}

