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

:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --text-color: #333333;
    --text-light: #6C757D;
    --border-radius: 12px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

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

/* Header */
.header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

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

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--secondary-color);
    position: relative;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 14px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.store-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-link {
    display: block;
}

.store-badge {
    height: 50px;
    transition: var(--transition);
}

.store-badge:hover {
    transform: scale(1.05);
}

/* Hero Social Links */
.hero-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

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

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2C3E50, #34495e);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
}

.mock-app {
    padding: 20px;
    height: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.mock-header {
    height: 60px;
    background: var(--primary-color);
    border-radius: 10px;
    margin-bottom: 20px;
}

.mock-qr {
    width: 200px;
    height: 200px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin: 0 auto 20px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 3px;
    padding: 10px;
}

.mock-qr::before,
.mock-qr::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #333;
}

.mock-qr::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.mock-qr::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.mock-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-line {
    height: 20px;
    background: #e0e0e0;
    border-radius: 4px;
}

.mock-line.short {
    width: 60%;
}

/* Phone Screen Image */
.phone-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

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

.feature-card {
    padding: 2rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
}

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

.screenshot-item {
    text-align: center;
    transition: var(--transition);
}

.screenshot-item:hover {
    transform: translateY(-10px);
}

.screenshot-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.screenshot-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.phone-mockup.small {
    width: 160px;
    height: 320px;
    margin: 0 auto;
    padding: 8px;
    border-radius: 24px;
}

.phone-mockup.small::before {
    width: 40px;
    height: 4px;
    top: 8px;
}

.phone-mockup.small .phone-screen-img {
    border-radius: 18px;
}

@media (max-width: 1200px) {
    .screenshots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .phone-mockup.small {
        width: 140px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .phone-mockup.small {
        width: 120px;
        height: 240px;
        padding: 6px;
        border-radius: 18px;
    }

    .screenshot-item h4 {
        font-size: 0.95rem;
    }

    .screenshot-item p {
        font-size: 0.8rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--light-color);
}

.steps {
    display: grid;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: var(--box-shadow);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Pet Listings Section */
.listings {
    padding: 100px 0;
    background: white;
}

.listings-content {
    max-width: 1200px;
    margin: 0 auto;
}

.listings-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.listing-type {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.listing-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.listing-type:hover::before {
    transform: scaleX(1);
}

.listing-type:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.listing-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.listing-icon.lost {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.listing-icon.adopt {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.listing-icon.found {
    background: linear-gradient(135deg, #95e1d3, #38ada9);
}

.listing-type:hover .listing-icon {
    transform: scale(1.1) rotate(5deg);
}

.listing-type h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.listing-type > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.listing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.listing-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-color);
    line-height: 1.6;
}

.listing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.listings-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--light-color), #e8f5e9);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.listings-cta h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

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

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.download-content {
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.download-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.download-badge img {
    height: 60px;
    transition: var(--transition);
}

.download-badge:hover img {
    transform: scale(1.05);
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.7;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

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

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-bottom a:hover {
    text-decoration: underline;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .mock-qr {
        width: 150px;
        height: 150px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero {
        padding: 40px 0;
    }

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

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

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

    .features,
    .how-it-works,
    .listings,
    .download {
        padding: 60px 0;
    }

    .listings-types {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .listing-type {
        padding: 2rem;
    }

    .listing-icon {
        width: 80px;
        height: 80px;
    }

    .listing-type h3 {
        font-size: 1.5rem;
    }

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

    .step-number {
        margin: 0 auto;
    }

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

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .store-badges {
        flex-direction: column;
        align-items: center;
    }

    .download-badges {
        flex-direction: column;
        align-items: center;
    }
}

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

.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* Coming Soon Badge */
.coming-soon {
    position: relative;
    display: inline-block;
    opacity: 0.85;
    cursor: default;
}

.coming-soon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.4);
    z-index: 10;
}

.badge-link.coming-soon .store-badge,
.download-badge.coming-soon img {
    filter: grayscale(30%);
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C3E50 0%, #3d5266 100%);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4ECDC4;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(78, 205, 196, 0.3);
}

.stat-item .stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navigation Buttons */
.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background: #ff5252;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Feature Card Styles */
.feature-card.featured {
    background: linear-gradient(135deg, #f8f4ff, #fff);
    border: 2px solid #e8d5ff;
    position: relative;
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #9C27B0, #E040FB);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Listings Grid */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.listing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.listing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.listing-card.lost::before {
    background: linear-gradient(90deg, #FF6B6B, #FF8E53);
}

.listing-card.adopt::before {
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
}

.listing-card.match::before {
    background: linear-gradient(90deg, #E91E63, #F06292);
}

.listing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.listing-card .listing-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.listing-card.lost .listing-icon {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.listing-card.adopt .listing-icon {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.listing-card.match .listing-icon {
    background: linear-gradient(135deg, #E91E63, #F06292);
}

.listing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.listing-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.listing-card ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.listing-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
    font-size: 0.95rem;
}

.listing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* AI Vet Section */
.ai-vet {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f4ff, #fff);
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-vet-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.ai-vet-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ai-vet-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.ai-vet-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--text-color);
}

.ai-vet-note {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 1rem;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 8px;
    border-left: 3px solid #9C27B0;
}

/* AI Vet Demo Phone Mockup */
.ai-vet-demo .phone-mockup {
    max-width: 320px;
    margin: 0 auto;
}

/* Chat Mockup */
.chat-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: var(--box-shadow-lg);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.chat-header {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.chat-messages {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    padding: 12px 16px;
    border-radius: 16px;
    max-width: 85%;
    line-height: 1.5;
    font-size: 0.95rem;
}

.chat-message.user {
    background: #f0f0f0;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message.ai {
    background: linear-gradient(135deg, #f8f4ff, #efe5ff);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid #e8d5ff;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white;
}

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

/* Web Link Section */
.web-link {
    text-align: center;
    margin-top: 2rem;
}

.web-link p {
    margin-bottom: 1rem;
    opacity: 0.8;
    font-size: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Buttons with Icons */
.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-buttons .btn svg {
    flex-shrink: 0;
}

/* Responsive Additions */
@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .ai-vet-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ai-vet-features li {
        justify-content: center;
    }

    .ai-vet-note {
        text-align: left;
    }
}

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-item .stat-number {
        font-size: 2.25rem;
    }

    .stat-item .stat-label {
        font-size: 0.95rem;
    }

    .ai-vet-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .stat-item {
        padding: 1.25rem 0.75rem;
    }

    .stat-item .stat-number {
        font-size: 1.75rem;
    }

    .stat-item .stat-label {
        font-size: 0.85rem;
    }

    .coming-soon-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
}