/* ---
Modern Saveme! CSS Stylesheet
Based on the PRD document.
--- */

/* 1. ROOT VARIABLES & GLOBAL STYLES
-------------------------------------------------- */
:root {
    /* Primary Colors */
    --primary-gold: #D4AF37;
    --accent-gold: #B8860B;
    --light-gold: #F4E4A6;
    --champagne-gold: #F7E7CE;
    --bright-white: #FFFFFF;
    --soft-white: #FAFAFA;
    --luxury-white: #F8F9FA;
    --warm-gold: #E6C068;
    --cream: #FFF8DC;
    --warm-white: #FEFDFB;
    --safety-orange: #FF6B35;
    --success-green: #4CAF50;
    --text-dark: #2C3E50;
    --text-light: #5D6D7E;
    --text-muted: #7B8794;
    --border-light: #E8EAF0;

    /* Gradient Collections */
    --gradient-primary: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(253, 248, 239, 0.95) 0%, rgba(248, 249, 250, 0.98) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    --gradient-emergency: linear-gradient(135deg, var(--safety-orange) 0%, #ff6b6b 100%);

    /* Shadow System */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.2);
    --shadow-emergency: 0 8px 25px rgba(255, 107, 53, 0.3);
    --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.4);

    /* Border Radius System */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;

    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--warm-white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    z-index: 1;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(248, 249, 250, 0.35) 50%, rgba(212, 175, 55, 0.20) 100%), url('images/PAWS.webp');
    background-repeat: repeat;
    background-size: 400px;
    opacity: 0.05;
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* 2. BUTTONS & CTAs
-------------------------------------------------- */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--bright-white);
    box-shadow: var(--shadow-gold);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background-color: transparent;
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.cta-button.secondary:hover {
    background-color: var(--primary-gold);
    color: var(--bright-white);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.cta-button.full-width {
    display: block;
    width: 100%;
}


/* 3. HEADER & NAVIGATION
-------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-links a {
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-dark);
}

.nav-links a:hover::after {
    width: 100%;
}


/* 4. HERO SECTION
-------------------------------------------------- */
.hero-section {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: radial-gradient(circle at center, rgba(254, 253, 251, 0.2) 0%, rgba(254, 253, 251, 0.8) 70%, var(--warm-white) 95%), linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(248, 249, 250, 0.35) 50%, rgba(212, 175, 55, 0.20) 100%), url('images/PAWS.webp'), var(--gradient-hero);
    background-size: cover, cover, cover, cover;
    background-position: center, center, center, center;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-2xl);
}

.hero-content .headline {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.hero-content .subheadline {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 90%;
    margin-bottom: var(--space-xl);
}

.hero-cta-group {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.trust-indicators-hero {
    display: flex;
    gap: var(--space-lg);
    font-weight: 500;
    color: var(--text-muted);
}

.hero-media {
    position: relative;
}

.product-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(var(--shadow-xl));
}

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

/* 5. PROBLEM SECTION
-------------------------------------------------- */
.problem-section {
    padding: var(--space-3xl) 0;
    background-color: var(--luxury-white);
}

.danger-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.danger-card {
    background: var(--gradient-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

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

.danger-card .danger-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, #F4E4A6 0%, #E6C068 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.danger-card:hover .danger-icon {
    background: linear-gradient(135deg, #F7E7CE 0%, #F4E4A6 100%);
    transform: scale(1.05);
}

.danger-card .danger-icon img {
    max-width: 100%;
    height: auto;
}

.danger-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.danger-card p {
    color: var(--text-light);
}

/* 6. SOLUTION SECTION
-------------------------------------------------- */
.solution-section {
    padding: var(--space-3xl) 0;
}

.solution-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-2xl);
}

.solution-media .solution-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.feature-item h4 {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.feature-item p {
    color: var(--text-light);
    padding-left: calc(1.5rem + var(--space-sm));
}

/* 7. VIDEO SHOWCASE SECTION
-------------------------------------------------- */
.video-section {
    padding: var(--space-3xl) 0;
    background-color: var(--luxury-white);
}

.video-section .section-title {
    margin-bottom: var(--space-2xl);
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 9 / 16;
    background: #000;
    z-index: 2;
}

#product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audio-button {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: var(--bright-white);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    backdrop-filter: blur(5px);
}

.audio-button:hover {
    background: rgba(0, 0, 0, 0.7);
}


/* 8. TRUST & REVIEWS SECTION
-------------------------------------------------- */
.trust-section {
    padding: var(--space-3xl) 0;
    background-color: var(--luxury-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.testimonial-card {
    background: var(--bright-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--space-md);
    border: 4px solid var(--primary-gold);
}

.testimonial-card p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: var(--space-md);
}

.testimonial-author {
    font-weight: 700;
    font-family: var(--font-secondary);
    color: var(--text-dark);
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.badge {
    background: var(--bright-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    box-shadow: var(--shadow-sm);
}

/* 8. FEATURES SECTION
-------------------------------------------------- */
.features-section {
    padding: var(--space-3xl) 0;
    background-color: var(--soft-white);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    align-items: center;
}

.features-media .features-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.feature-category h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-dark);
}
.feature-category h4 i {
    color: var(--primary-gold);
}

.feature-category ul {
    list-style: none;
    padding: 0;
}

.feature-category li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--text-light);
    font-weight: 500;
}

.feature-category li i {
    color: var(--accent-gold);
}

.features-footer {
    margin-top: var(--space-xl);
    padding: var(--space-md);
    background-color: var(--champagne-gold);
    border-radius: var(--radius-lg);
}

.features-footer h4 {
    margin-bottom: var(--space-xs);
}
.features-footer p {
    color: var(--text-light);
}

/* 9. PRICING SECTION
-------------------------------------------------- */
.pricing-section {
    padding: var(--space-3xl) 0;
}

.pricing-container {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1;
    max-width: 500px;
    background: var(--gradient-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}

.pricing-dog-image {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.collar-dog-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.collar-dog-img:hover {
    transform: scale(1.02);
}

.pricing-dog-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(248, 249, 250, 0.08));
    border-radius: calc(var(--radius-xl) + 20px);
    z-index: -1;
}

.pricing-product-img {
    width: 80%;
    margin: -80px auto 20px;
    filter: drop-shadow(var(--shadow-lg));
}

.pricing-card h3 {
    font-size: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-secondary);
    color: var(--primary-gold);
    margin-bottom: var(--space-md);
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--text-muted);
    margin-left: var(--space-sm);
}

.product-options {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: var(--luxury-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.option-group {
    margin-bottom: var(--space-lg);
}

.option-group:last-child {
    margin-bottom: 0;
}

.option-group > label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.color-selection,
.hand-selection {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.color-option,
.hand-option {
    position: relative;
    cursor: pointer;
}

.color-option input[type="radio"],
.hand-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.color-label,
.hand-label {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--bright-white);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
}

.color-option input[type="radio"]:checked + .color-label,
.hand-option input[type="radio"]:checked + .hand-label {
    background: var(--primary-gold);
    color: var(--bright-white);
    border-color: var(--primary-gold);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.color-option:hover .color-label,
.hand-option:hover .hand-label {
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pricing-card ul {
    text-align: left;
    margin-bottom: var(--space-xl);
    display: inline-block;
}

.pricing-card li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.pricing-card .fa-check-circle {
    color: var(--success-green);
}

/* 10. FAQ SECTION
-------------------------------------------------- */
.faq-section {
    padding: var(--space-3xl) 0;
    background-color: var(--soft-white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--bright-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-gold);
}

.faq-question {
    padding: var(--space-lg);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-secondary);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '\f078'; /* FontAwesome chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
    color: var(--primary-gold);
}

.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-light);
    line-height: 1.7;
}

/* 11. FOOTER
-------------------------------------------------- */
.main-footer {
    padding: var(--space-xl) 0;
    background-color: var(--text-dark);
    color: var(--soft-white);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    color: var(--text-muted);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--bright-white);
}

/* 11. FLOATING CTA
-------------------------------------------------- */
.floating-cta {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    background: var(--gradient-primary);
    color: var(--bright-white);
    padding: var(--space-md);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    font-weight: 700;
    font-family: var(--font-secondary);
    animation: pulse-cta 2s infinite;
}

.floating-cta:hover {
    animation-play-state: paused;
    transform: scale(1.1);
}

@keyframes pulse-cta {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}


/* Desktop only: Add substantial decorative elements around video */
@media (min-width: 769px) {
    .video-section .container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 80vh;
    }
    
    .video-section .container::before {
        content: '';
        position: absolute;
        top: 10%;
        left: 10%;
        width: 300px;
        height: 400px;
        background: linear-gradient(45deg, rgba(212, 175, 55, 0.12), rgba(248, 249, 250, 0.08));
        border-radius: 50% 20% 40% 30%;
        transform: rotate(15deg);
        z-index: 1;
        animation: float 8s ease-in-out infinite;
    }
    
    .video-section .container::after {
        content: '';
        position: absolute;
        top: 20%;
        right: 8%;
        width: 250px;
        height: 350px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.15));
        border-radius: 30% 50% 20% 40%;
        transform: rotate(-20deg);
        z-index: 1;
        animation: float 6s ease-in-out infinite reverse;
    }
    
    .video-player-wrapper::before {
        content: '';
        position: absolute;
        top: -50px;
        left: -50px;
        right: -50px;
        bottom: -50px;
        background: linear-gradient(45deg, rgba(212, 175, 55, 0.08), transparent 70%);
        border-radius: calc(var(--radius-xl) + 50px);
        z-index: -1;
        animation: pulse 4s ease-in-out infinite;
    }
    
    .video-player-wrapper::after {
        content: '';
        position: absolute;
        top: -100px;
        left: -100px;
        right: -100px;
        bottom: -100px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.04), transparent 60%);
        border-radius: calc(var(--radius-xl) + 100px);
        z-index: -1;
        animation: pulse 6s ease-in-out infinite reverse;
    }
    
    /* Add decorative geometric shapes */
    .video-section .section-title::before {
        content: '';
        position: absolute;
        top: -30px;
        left: -100px;
        width: 80px;
        height: 80px;
        background: linear-gradient(45deg, rgba(212, 175, 55, 0.15), rgba(248, 249, 250, 0.1));
        border-radius: 20px;
        transform: rotate(45deg);
        z-index: 1;
        animation: float 5s ease-in-out infinite;
    }
    
    .video-section .section-title::after {
        content: '';
        position: absolute;
        top: -50px;
        right: -80px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.08));
        border-radius: 50%;
        z-index: 1;
        animation: float 7s ease-in-out infinite reverse;
    }
    
    .video-section .section-title {
        position: relative;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); opacity: 0.8; }
        50% { transform: scale(1.02); opacity: 0.6; }
        100% { transform: scale(1); opacity: 0.8; }
    }
}

/* 12. RESPONSIVE DESIGN
-------------------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content .subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group, .trust-indicators-hero {
        justify-content: center;
    }
    .hero-media {
        margin-top: var(--space-2xl);
        order: -1;
    }
    .hero-content .headline {
        font-size: 3.5rem;
    }

    .danger-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-showcase {
        grid-template-columns: 1fr;
    }
    .solution-media { order: -1; margin-bottom: var(--space-xl); }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .main-nav .cta-button {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: var(--space-sm);
    }
    .nav-links {
        gap: var(--space-md);
        font-size: 0.875rem;
    }
    
    html {
        font-size: 14px;
    }
    .section-title h2 {
        font-size: 2rem;
    }

    .hero-content .headline {
        font-size: 2.5rem;
    }
    .hero-media .product-image {
        max-width: 150px;
        margin: 0 auto;
        transform: scale(1.2);
        transform-origin: center;
    }
    .hero-cta-group {
        flex-direction: column;
    }
    .trust-indicators-hero {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: center;
    }
    .features-container {
        grid-template-columns: 1fr;
    }
    .features-media .features-image {
        aspect-ratio: auto;
    }

    .footer-content {
        flex-direction: column;
    }
    
    /* Mobile Pricing Section */
    .pricing-container {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .pricing-card {
        max-width: 100%;
        order: 1;
    }
    
    .pricing-dog-image {
        max-width: 100%;
        order: 2;
    }
    
    .collar-dog-img {
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }
    
    /* Mobile only: Increase pattern size */
    body::before {
        background-size: 650px;
    }
    
    .hero-section {
        background-size: cover, cover, 650px, cover;
    }
} 