/* ===================================
   AI Logo Maker - Main Stylesheet
   Modern Theme with Navy & Pink
   =================================== */

/* CSS Variables - Color Palette */
:root {
    /* Primary Colors */
    --primary-dark: #0d0d1a;
    --primary-navy: #1a1a2e;
    --secondary-navy: #252542;
    --accent-navy: #2d2d4a;

    /* Accent Colors */
    --accent-pink: #ec4899;
    --accent-pink-light: #f472b6;
    --accent-violet: #8b5cf6;
    --accent-purple: #a855f7;

    /* Text Colors */
    --text-light: #f5f5f5;
    --text-white: #ffffff;
    --text-muted: #9ca3af;
    --text-pink: #ec4899;

    /* Background Colors */
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-bg-hover: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);

    /* Gradients */
    --gradient-main: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 50%, #0d0d1a 100%);
    --gradient-card: linear-gradient(145deg, rgba(45, 45, 74, 0.3) 0%, rgba(13, 13, 26, 0.8) 100%);
    --gradient-pink: linear-gradient(135deg, #ec4899 0%, #d946ef 50%, #8b5cf6 100%);
    --gradient-button: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);

    /* Shadows */
    --shadow-glow: 0 0 40px rgba(236, 72, 153, 0.3);
    --shadow-pink: 0 0 30px rgba(236, 72, 153, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);

    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================================
   Navigation Bar
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(13, 13, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(236, 72, 153, 0.1);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(13, 13, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.navbar-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.navbar-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}

.navbar-name .highlight {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-pink);
    transition: var(--transition-normal);
}

.navbar-link:hover {
    color: var(--accent-pink);
}

.navbar-link:hover::after {
    width: 100%;
}

/* Navbar CTA Button */
.navbar-cta {
    display: flex;
    align-items: center;
    margin-left: 20px;
    transition: var(--transition-fast);
}

.navbar-cta:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.navbar-badge {
    height: 40px;
    width: auto;
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.navbar-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    position: relative;
    transition: var(--transition-fast);
}

.navbar-toggle-icon::before,
.navbar-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-fast);
}

.navbar-toggle-icon::before {
    top: -8px;
}

.navbar-toggle-icon::after {
    bottom: -8px;
}

/* Mobile Menu Active State */
.navbar-toggle.active .navbar-toggle-icon {
    background: transparent;
}

.navbar-toggle.active .navbar-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggle.active .navbar-toggle-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

/* Highlight Text */
.highlight {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-main);
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Animated Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.particles, .particles2, .particles3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: repeat;
    animation: floatParticles 60s linear infinite;
}

.particles {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.5"/></svg>') repeat;
    background-size: 100px 100px;
}

.particles2 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="70" r="0.5" fill="%23ec4899" opacity="0.4"/></svg>') repeat;
    background-size: 150px 150px;
    animation-duration: 80s;
}

.particles3 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="70" cy="30" r="0.8" fill="%238b5cf6" opacity="0.3"/></svg>') repeat;
    background-size: 200px 200px;
    animation-duration: 100s;
}

@keyframes floatParticles {
    from {
        transform: translateY(0) rotate(0deg);
    }
    to {
        transform: translateY(-100px) rotate(5deg);
    }
}

/* Hero Content */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-cta {
    margin-bottom: 40px;
}

.app-store-link {
    display: inline-block;
    transition: var(--transition-normal);
}

.app-store-link:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.app-store-badge {
    height: 60px;
    width: auto;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

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

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

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    max-width: 100%;
    max-height: 700px;
    width: auto;
    height: auto;
    border-radius: 40px;
    box-shadow: var(--shadow-glow);
    animation: float 6s ease-in-out infinite;
}

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

/* ===================================
   Features Section
   =================================== */
.features {
    padding: var(--section-padding);
    background: var(--primary-dark);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--primary-navy), transparent);
    pointer-events: none;
}

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

.feature-card {
    background: var(--gradient-card);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-normal);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-pink);
    box-shadow: var(--shadow-pink);
}

.feature-image {
    padding: 30px 30px 0;
    display: flex;
    justify-content: center;
}

.feature-image img {
    max-height: 400px;
    width: auto;
    border-radius: 20px;
}

.feature-content {
    padding: 30px;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.feature-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===================================
   Why Choose Section
   =================================== */
.why-choose {
    padding: var(--section-padding);
    background: var(--gradient-main);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    background: var(--card-bg-hover);
    border-color: var(--accent-pink);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-pink);
}

.benefit-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===================================
   Showcase Section
   =================================== */
.showcase {
    padding: 80px 0;
    background: var(--primary-dark);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.showcase-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
}

.showcase-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

.showcase-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Testimonials Section - Card Stack Slider
   =================================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--gradient-main);
    overflow: hidden;
}

.stack-slider {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.stack-container {
    position: relative;
    height: 320px;
    perspective: 1000px;
}

/* Testimonial Card */
.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(145deg, rgba(45, 45, 74, 0.6) 0%, rgba(26, 26, 46, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform-origin: center bottom;
}

/* Card Stack Positions */
.testimonial-card[data-position="0"] {
    z-index: 5;
    transform: translateY(0) scale(1);
    opacity: 1;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(236, 72, 153, 0.15);
}

.testimonial-card[data-position="1"] {
    z-index: 4;
    transform: translateY(15px) scale(0.95);
    opacity: 0.7;
    filter: brightness(0.8);
}

.testimonial-card[data-position="2"] {
    z-index: 3;
    transform: translateY(30px) scale(0.9);
    opacity: 0.5;
    filter: brightness(0.6);
}

.testimonial-card[data-position="3"],
.testimonial-card[data-position="4"] {
    z-index: 2;
    transform: translateY(40px) scale(0.85);
    opacity: 0;
    pointer-events: none;
}

/* Active Card Hover */
.testimonial-card[data-position="0"]:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--accent-pink);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(236, 72, 153, 0.25);
}

/* Card Quote Mark */
.card-quote {
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    position: absolute;
    top: 20px;
    left: 28px;
}

/* Testimonial Text */
.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 30px 0 28px;
    position: relative;
    z-index: 1;
}

/* Testimonial Footer */
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(236, 72, 153, 0.15);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.author-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.author-name {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
}

.author-title {
    font-size: 0.85rem;
    color: var(--accent-pink);
    margin-top: 2px;
}

.testimonial-stars {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Stack Controls */
.stack-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.stack-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(236, 72, 153, 0.3);
    background: rgba(13, 13, 26, 0.6);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stack-btn:hover {
    border-color: var(--accent-pink);
    background: rgba(236, 72, 153, 0.15);
    color: var(--accent-pink);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.3);
}

.stack-btn:active {
    transform: scale(0.95);
}

.stack-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.stack-counter .current {
    color: var(--accent-pink);
    font-weight: 700;
    font-size: 1.3rem;
}

.stack-counter .separator {
    color: var(--text-muted);
}

.stack-counter .total {
    color: var(--text-muted);
}

/* Responsive Stack Slider */
@media (max-width: 640px) {
    .stack-slider {
        max-width: 100%;
        padding: 0 10px;
    }

    .stack-container {
        height: 350px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .card-quote {
        font-size: 3rem;
        top: 15px;
        left: 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin: 25px 0 24px;
    }

    .author-avatar {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .stack-controls {
        gap: 20px;
        margin-top: 30px;
    }

    .stack-btn {
        width: 44px;
        height: 44px;
    }
}

/* ===================================
   App Rating Section
   =================================== */
.app-rating {
    padding: var(--section-padding);
    background: var(--primary-dark);
}

.rating-card {
    background: var(--gradient-card);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.rating-content {
    flex: 1;
}

.rating-stars {
    font-size: 2rem;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.rating-score {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.rating-max {
    font-size: 1.5rem;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
}

.rating-text {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 5px;
}

.rating-subtext {
    color: var(--text-light);
    font-size: 1.2rem;
}

.rating-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.app-store-badge-large {
    height: 80px;
    width: auto;
}

.qr-code {
    text-align: center;
}

.qr-code img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background: white;
    padding: 10px;
}

.qr-code span {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===================================
   Final CTA Section
   =================================== */
.final-cta {
    padding: 120px 0;
    background: var(--gradient-main);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 40px 0;
    background: var(--primary-dark);
    border-top: 1px solid rgba(236, 72, 153, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 45px;
    height: 45px;
    border-radius: 10px;
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-pink);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===================================
   Scroll Reveal Animations
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* ===================================
   Responsive Design
   =================================== */

/* Tablets */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rating-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    /* Mobile Navigation */
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(13, 13, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 60px 40px;
        transition: var(--transition-normal);
        border-left: 1px solid rgba(236, 72, 153, 0.2);
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-link {
        font-size: 1.2rem;
    }

    .navbar-cta {
        margin-left: 0;
        margin-top: 20px;
    }

    .navbar-badge {
        height: 45px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .stat {
        align-items: center;
        text-align: center;
    }

    .phone-mockup {
        max-height: 500px;
    }

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

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

    .rating-card {
        padding: 40px 25px;
    }

    .rating-score {
        font-size: 3rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* Slider Mobile */
    .testimonials-slider {
        padding: 0 20px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-prev {
        left: -5px;
    }

    .slider-next {
        right: -5px;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card {
        border-radius: 20px;
    }

    .feature-image {
        padding: 20px 20px 0;
    }

    .feature-content {
        padding: 20px;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .app-store-badge {
        height: 50px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .testimonials-slider {
        padding: 0 10px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .slider-dots {
        gap: 10px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* ===================================
   TikTok In-App Browser Toast
   =================================== */
.tiktok-toast {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.tiktok-toast.show {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
}

.tiktok-toast-bubble {
    position: relative;
    background: #f5f0e8;
    border-radius: 24px;
    padding: 28px 32px;
    max-width: 340px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tiktok-toast-tail {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 24px solid #f5f0e8;
}

.tiktok-toast-bubble p {
    margin: 0;
    font-size: 22px;
    line-height: 1.5;
    color: #000;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tiktok-toast-bubble .tiktok-icon {
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin: 0 2px;
}

.tiktok-toast-bubble .dots-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid #000;
    border-radius: 50%;
    font-size: 14px;
    letter-spacing: -1px;
    vertical-align: middle;
    margin: 0 2px;
}

.tiktok-toast-bubble .highlight {
    color: #d63384;
    font-weight: 600;
    -webkit-text-fill-color: #d63384;
}

@media (max-width: 480px) {
    .tiktok-toast {
        top: 100px;
        left: 16px;
        right: 16px;
        transform: translateX(0) scale(0.9);
    }

    .tiktok-toast.show {
        transform: translateX(0) scale(1);
    }

    .tiktok-toast-bubble {
        max-width: 100%;
        padding: 24px;
    }

    .tiktok-toast-bubble p {
        font-size: 18px;
    }

    .tiktok-toast-tail {
        right: 30px;
    }
}
