:root {
    --primary: #FF3D68;
    /* More Vibrant Pink */
    --primary-hover: #E11D48;
    --bg-main: #FFFBFB;
    --text-dark: #0F172A;
    --text-body: #334155;

    --vibrant-yellow: #F59E0B;
    --vibrant-blue: #2563EB;
    --vibrant-mint: #059669;
    --vibrant-lavender: #8B5CF6;
    --vibrant-pink: #FF3D68;
    --vibrant-peach: #FB923C;
    --white: #FFFFFF;

    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 40px;
    --border-radius-pill: 9999px;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(255, 61, 104, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --bg-dark: #0F172A;
    --bg-dark-card: #1E293B;
    --text-light: #F8FAFC;
    --text-dim: #94A3B8;
    --accent-glow: rgba(255, 100, 124, 0.15);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.squiggle-highlight {
    position: relative;
    z-index: 1;
}

.squiggle-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: -2px;
    right: -2px;
    height: 8px;
    background: var(--pastel-yellow);
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
    opacity: 0.7;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4%;
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    margin-top: 0;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 100, 124, 0.3);
}

.btn-outline {
    background-color: white;
    border: 2px solid white;
    color: #0F172A;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.85);
    color: #0F172A;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--text-dark);
    border-color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background-color: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
    background-color: rgba(15, 23, 42, 0.46);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}


.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 4%;
    /* Use 4% to perfectly align with hero content */
    max-width: 1440px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    /* White logo text */
    transition: color 0.4s ease;
}

.header.scrolled .logo {
    color: white;
}

.logo i {
    font-size: 1.2rem;
    color: white;
    /* White paw icon */
    transition: color 0.4s ease;
}

.header.scrolled .logo i {
    color: white;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 400;
    /* Lighter font */
    font-size: 1rem;
    color: white;
    transition: all 0.4s ease;
}

.header.scrolled .nav-links a {
    color: white;
    font-weight: 400;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-actions>.nav-dropdown-wrapper:has(#cartDropdown) {
    display: none;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: white;
    /* White icons */
    transition: all 0.4s ease;
}

.header.scrolled .icon-btn {
    color: white;
}

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

.nav-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.cart-badge.active {
    opacity: 1;
    transform: scale(1);
}

.header.scrolled .cart-badge {
    border-color: #ffffff;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: -10px;
    width: 340px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    text-align: left;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #f8fafc;
    border-radius: 12px;
}

.cart-item-qty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.qty-btn {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.qty-btn:hover {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.qty-val {
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
    min-width: 15px;
    text-align: center;
}

.cart-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: #0f172a;
    font-weight: 700;
}

.cart-item-info p {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #f1f5f9;
}

.cart-total-row span {
    font-weight: 800;
    color: #0f172a;
    font-size: 1.1rem;
}

.checkout-btn {
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    font-size: 1rem;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    transform: rotate(45deg);
    border-top: 1px solid #e2e8f0;
    border-left: 1px solid #e2e8f0;
}

.nav-dropdown input {
    background: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
}

.nav-dropdown input:focus {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(255, 61, 104, 0.1) !important;
}

.nav-dropdown-wrapper:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.nav-dropdown p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.4;
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    overflow: hidden;
    background-color: #87CEEB;
    /* Sky blue fallback to match image edge */
    background-image: image-set(
        url('/assets/home-v2/optimized/hero-image-new-2752.avif') type('image/avif'),
        url('/assets/home-v2/optimized/hero-image-new-bg.jpg') type('image/jpeg')
    );
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh;
    /* Full screen height */
    min-height: 100svh;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    /* Content on top, Banner at bottom */
    padding-top: 76px;
    /* Space for fixed header */
}

.hero-deco {
    position: absolute;
    color: white;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.deco-1 {
    top: 15%;
    left: 5%;
    font-size: 2.5rem;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.deco-2 {
    top: 50%;
    left: 8%;
    font-size: 1.8rem;
    transform: rotate(20deg);
    animation-delay: 2s;
}

.deco-3 {
    top: 80%;
    left: 4%;
    font-size: 2.2rem;
    transform: rotate(-10deg);
    animation-delay: 4s;
}

.deco-4 {
    top: 35%;
    left: 12%;
    font-size: 1.5rem;
    transform: rotate(15deg);
    animation-delay: 1s;
}

.deco-5 {
    top: 65%;
    left: 15%;
    font-size: 2rem;
    transform: rotate(-25deg);
    animation-delay: 3s;
}

.deco-6 {
    top: 25%;
    left: 18%;
    font-size: 1.3rem;
    transform: rotate(10deg);
    animation-delay: 5s;
}

.deco-7 {
    top: 90%;
    left: 10%;
    font-size: 1.6rem;
    transform: rotate(-5deg);
    animation-delay: 2.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Trust Banner - Premium Red Gradient strip */
.trust-banner {
    position: relative;
    /* Sits naturally in the grid */
    background: #ed402e;
    padding: 14px 0;
    overflow: hidden;
    z-index: 20;
    width: 100%;
    /* Ensure full width */
}

.trust-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 3.4vw, 46px);
    width: 100% !important;
    max-width: none !important;
    padding: 0 24px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero .trust-banner .container {
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: clamp(0.82rem, 1vw, 0.95rem);
    color: #FFFFFF;
    /* White text for dark background */
    letter-spacing: 0.3px;
    white-space: nowrap;
    /* Keep on one line */
    text-align: center;
}

.trust-item i {
    color: #FDE047;
    /* Golden yellow pop */
    font-size: 1.1rem;
}


/* Gradient overlay removed to show full image */
.hero .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Aligned to left with logo */
    width: 100%;
    min-height: 0;
}

.hero-content {
    flex: 0 1 700px;
    /* Adjusted width */
    position: relative;
    z-index: 10;
    text-align: left;
    /* Left aligned as requested */
    max-width: min(720px, 54vw);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1E293B;
    /* Deep slate for high contrast */
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 100px;
    border: 3px solid white;
    /* Thick white border for physical sticker look */
    box-shadow: 0 15px 35px rgba(255, 61, 104, 0.12), 0 5px 15px rgba(0, 0, 0, 0.03);
    /* Deep, soft pink glow */
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy physics */
    cursor: default;
}

.feature-badge i {
    font-size: 1.2rem;
}

.feature-badge:hover {
    transform: translateY(-6px) scale(1.02) rotate(-1deg);
    box-shadow: 0 20px 45px rgba(255, 61, 104, 0.18), 0 8px 20px rgba(0, 0, 0, 0.04);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 2.5rem;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--pastel-blue);
    border: 2px solid white;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.avatar:first-child {
    margin-left: 0;
    background-color: var(--pastel-pink);
}

.avatar:nth-child(2) {
    background-color: var(--pastel-yellow);
}

.avatar:nth-child(3) {
    background-color: var(--pastel-mint);
}

.stars {
    color: #FBBF24;
    letter-spacing: 2px;
}

.hero-title-new {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 4.75vw, 4.7rem);
    font-weight: 900;
    color: #fffaf2;
    line-height: 1;
    margin-bottom: clamp(18px, 2.3vh, 28px);
    text-shadow: 0 4px 16px rgba(15, 35, 58, 0.38), 0 1px 0 rgba(255, 255, 255, 0.2);
}

.script-text {
    font-family: 'Satisfy', cursive;
    color: #FFD400;
    font-weight: 400;
    font-size: clamp(2.3rem, 3.3vw, 3.35rem);
    line-height: 1.05;
    text-transform: none;
    text-shadow: 0 3px 10px rgba(15, 35, 58, 0.32);
    letter-spacing: 0;
    display: inline-block;
    margin-top: 14px;
}

.hero-subtitle-new {
    font-size: clamp(1.08rem, 1.22vw, 1.22rem);
    color: #0d2137;
    max-width: 560px;
    line-height: 1.55;
    margin: 0 0 clamp(26px, 4vh, 42px);
    font-weight: 400;
    text-shadow: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    padding: 10px 18px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.95rem;
    color: #0d2137;
    margin: 0 0 clamp(16px, 3vh, 32px);
    background: #FFD400;
    box-shadow: 0 12px 24px rgba(255, 212, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.hero-actions-new {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    /* Good gap between buttons */
    margin-bottom: clamp(24px, 4.5vh, 50px);
}

.btn-yellow-large {
    background: #ed402e;
    color: #fffafa;
    font-weight: 800;
    padding: 15px 30px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1.05rem;
    /* Slightly smaller as requested */
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(120, 22, 12, 0.2);
    transition: all 0.24s ease;
    box-shadow: 0 14px 30px rgba(237, 64, 46, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1E293B;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(16, 34, 53, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    transition: all 0.24s ease;
}

.btn-video:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

.btn-video i {
    color: #1E293B;
    /* Theme Dark Grey */
    font-size: 0.9rem;
}

.btn-yellow-large:hover {
    background: #d93625;
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(237, 64, 46, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.hero-checkmarks {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.96rem;
    font-weight: 700;
    color: #102235;
}

.hero-checkmarks i {
    color: #208800;
}

.hero-checkmarks span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(16, 34, 53, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

/* Lost Pet Problem Section */
.lost-pet-problem {
    position: relative;
    padding: clamp(72px, 8vw, 118px) 0;
    background: #fff7ee;
    overflow: hidden;
}

.lost-pet-problem::before {
    content: '';
    position: absolute;
    right: -90px;
    top: 28px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 61, 104, 0.12);
    pointer-events: none;
}

.lost-pet-problem::after {
    content: '\f1b0';
    position: absolute;
    left: clamp(18px, 5vw, 78px);
    bottom: 34px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: clamp(4rem, 9vw, 8rem);
    color: rgba(37, 99, 235, 0.08);
    transform: rotate(-14deg);
    pointer-events: none;
}

.lost-pet-container {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: clamp(38px, 5vw, 76px);
    position: relative;
    z-index: 1;
}

.lost-pet-image {
    border-radius: 34px;
    overflow: hidden;
    background: #fffdf8;
    min-height: clamp(360px, 38vw, 560px);
    box-shadow: 0 26px 72px rgba(15, 23, 42, 0.14);
}

.lost-pet-image img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
}

.lost-pet-copy {
    max-width: 560px;
}

.lost-pet-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 9px 15px;
    border-radius: 999px;
    background: #ffe2e9;
    color: #b9163b;
    font-size: 0.9rem;
    font-weight: 800;
}

.lost-pet-copy h2 {
    margin: 0 0 18px;
    color: #111827;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.55rem, 4.4vw, 5rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.lost-pet-lead {
    margin: 0 0 14px;
    color: #ed402e;
    font-size: clamp(1.28rem, 1.7vw, 1.7rem);
    font-weight: 800;
    line-height: 1.25;
}

.lost-pet-text {
    max-width: 52ch;
    margin: 0 0 30px;
    color: #334155;
    font-size: clamp(1.04rem, 1.18vw, 1.18rem);
    font-weight: 600;
    line-height: 1.62;
}

.lost-pet-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    border-radius: 999px;
    background: #ed402e;
    color: #fffaf2;
    padding: 13px 22px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(237, 64, 46, 0.24);
    transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.24s ease, background 0.24s ease;
}

.lost-pet-btn:hover {
    background: #d73324;
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(237, 64, 46, 0.3);
}

.lost-pet-btn i {
    font-size: 1.15rem;
}

.hero-visual {
    display: none;
    /* Hidden as it's now a background */
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

.hero-tag-placeholder {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    position: absolute;
    bottom: 20%;
    right: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-md);
    border: 4px solid white;
}

.hero-card {
    position: absolute;
    top: 50%;
    left: -20px;
    background: white;
    padding: 16px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-50%);
}

.hero-card h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
}

.hero-card p {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}



/* Products Section */
.products {
    padding: 72px 0 88px;
    background: #d90429;
    position: relative;
    overflow: hidden;
}

.products .container {
    position: relative;
    z-index: 2;
}

.product-float {
    position: absolute;
    z-index: 1;
    color: rgba(255, 250, 250, 0.3);
    pointer-events: none;
    filter: drop-shadow(0 8px 0 rgba(5, 5, 5, 0.08));
    animation: productFloat 7s ease-in-out infinite;
}

.product-float i {
    display: block;
}

.float-paw-1 {
    top: 104px;
    left: 1.4%;
    font-size: 4.9rem;
    transform: rotate(-18deg);
}

.float-bone {
    top: 92px;
    right: 1.8%;
    font-size: 5.5rem;
    color: rgba(255, 212, 0, 0.46);
    transform: rotate(18deg);
    animation-delay: 1.2s;
}

.float-heart {
    top: 42%;
    left: 1.8%;
    font-size: 3.8rem;
    transform: rotate(15deg);
    animation-delay: 2s;
}

.float-dog {
    bottom: 118px;
    left: 1.2%;
    font-size: 5.6rem;
    color: rgba(255, 250, 250, 0.24);
    transform: rotate(-8deg);
    animation-delay: 0.7s;
}

.float-cat {
    bottom: 128px;
    right: 1.5%;
    font-size: 5.4rem;
    color: rgba(255, 250, 250, 0.24);
    transform: rotate(10deg);
    animation-delay: 1.8s;
}

.float-paw-2 {
    top: 50%;
    right: 2%;
    font-size: 4rem;
    transform: rotate(24deg);
    animation-delay: 2.6s;
}

@keyframes productFloat {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -18px;
    }
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 34px;
    gap: 24px;
    text-align: center;
}

.products .section-header h2 {
    color: #fffafa;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin-bottom: 8px;
}

.products .section-header .btn {
    display: none;
}

.section-subtitle {
    max-width: 680px;
    color: rgba(255, 250, 250, 0.86);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.55;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Exactly 4 columns on desktop */
    gap: 28px;
}

@media (max-width: 1024px) {
    .product-float {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
    }

    .why-grid {
        position: static;
        transform: none;
        width: auto;
        max-width: 760px;
        margin: 0 auto;
        margin-top: 22px;
        background: transparent;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 8px;
    }

    .product-card {
        padding: 10px 10px 12px;
        border-radius: 20px;
    }

    .product-card h3 {
        font-size: 0.88rem;
        margin-bottom: 4px;
        line-height: 1.2;
    }

    .product-meta {
        font-size: 0.65rem;
        margin-bottom: 10px;
    }

    .product-price {
        font-size: 0.9rem;
        font-weight: 800;
    }

    .product-cart-btn {
        font-size: 0.75rem;
        padding: 5px 8px;
    }

    .product-cart-btn i {
        display: none; /* Hide icon on very small buttons */
    }
}

.product-card {
    background: #fffefd !important;
    border-radius: 38px;
    padding: 18px 18px 20px;
    text-align: left;
    transition: all 0.24s ease;
    position: relative;
    overflow: hidden;
    border: 1.5px solid rgba(5, 5, 5, 0.72);
    box-shadow: 0 16px 36px rgba(5, 5, 5, 0.16);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(5, 5, 5, 0.22);
}

.badge-new {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #d90429;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 8px;
    border-radius: 999px;
    letter-spacing: 1px;
    z-index: 2;
}

.wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #111827;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: none;
    transition: all 0.24s ease;
}

.wishlist-btn:hover {
    color: #d90429;
    transform: scale(1.12);
}

.product-card .wishlist-btn {
    display: none;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 0.86;
    margin: 18px auto 20px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    border: none;
    box-shadow: none;
}

/* Removed .product-image::before fake ring as the actual images have rings */

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-image i {
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.5);
}

.product-card h3 {
    color: #050505;
    font-size: 1.18rem;
    line-height: 1.28;
    min-height: 3.05em;
    margin-bottom: 8px;
}

.product-meta {
    color: #4B5563;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-buy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.product-price {
    color: #d90429;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0;
    white-space: nowrap;
}

.product-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
    min-height: auto;
    margin-bottom: 0;
    border-radius: 0;
    background: transparent;
    color: #d90429;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: none;
    transition: all 0.24s ease;
}

.product-cart-btn:hover {
    background: transparent;
    color: #9f001f;
    transform: translateX(2px);
    box-shadow: none;
}

.color-swatches {
    display: none;
}

.swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.swatch.active {
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--text-dark);
}

.more-colors {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 4px;
}

/* Why It Matters */
.why-it-matters {
    padding: 88px 0 104px;
    background: #ffe4e4;
    position: relative;
    overflow: hidden;
    color: #fffafa;
}

.why-it-matters.reveal {
    opacity: 1;
    transform: none;
}

.why-it-matters::before {
    display: none;
}

.why-it-matters::after {
    display: none;
}

.why-content {
    position: relative;
    z-index: 10;
    /* Keep content above decorative elements */
}

.why-title {
    color: #d80429;
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    margin-bottom: 38px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.why-title i {
    color: #d80429;
}

.why-visual {
    position: relative;
    width: 100%;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.why-visual>img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 48px;
    box-shadow: 0 30px 72px rgba(216, 4, 41, 0.16);
}

.why-grid {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: auto;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
    background: transparent;
}

.why-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: start;
    column-gap: 12px;
    background: #fffaf0;
    border: 1px solid rgba(216, 4, 41, 0.16);
    border-radius: 28px;
    padding: 16px 15px;
    box-shadow: 0 16px 34px rgba(216, 4, 41, 0.10);
    text-align: left;
}

.why-card:last-child {
    border-bottom: 1px solid rgba(216, 4, 41, 0.16);
}

.why-icon {
    width: 38px;
    height: 38px;
    background: #ed402e;
    color: #fffafa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 0.82rem;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(237, 64, 46, 0.22);
    grid-row: 1 / span 2;
}

.why-card h4 {
    grid-column: 2;
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #111827;
}

.why-card p {
    grid-column: 2;
    font-size: 0.84rem;
    color: #4b5563;
    line-height: 1.38;
    max-width: 520px;
}

/* How It Works */
.how-it-works {
    padding: 108px 0 118px;
    text-align: center;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.16), transparent 22%),
        radial-gradient(circle at 86% 22%, rgba(255, 212, 0, 0.18), transparent 24%),
        #0065d1;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 78px;
}

.how-it-works.reveal {
    opacity: 1;
    transform: none;
}

.how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.6) 0 6px, transparent 7px),
        radial-gradient(circle, rgba(255, 255, 255, 0.48) 0 3px, transparent 4px),
        radial-gradient(circle, rgba(255, 255, 255, 0.48) 0 3px, transparent 4px),
        radial-gradient(circle, rgba(255, 255, 255, 0.48) 0 3px, transparent 4px),
        radial-gradient(circle, rgba(255, 255, 255, 0.48) 0 3px, transparent 4px);
    background-size: 128px 96px;
    background-position: 36px 28px, 25px 20px, 48px 18px, 22px 42px, 52px 42px;
}

.how-it-works::after {
    display: none;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.how-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.how-bg-elements i {
    position: absolute;
    color: rgba(255, 250, 240, 0.16);
    font-size: clamp(2rem, 4vw, 4.6rem);
}

.how-bg-elements i:nth-child(1) {
    left: 7%;
    top: 24%;
    transform: rotate(-12deg);
}

.how-bg-elements i:nth-child(2) {
    right: 10%;
    top: 19%;
    transform: rotate(18deg);
}

.how-bg-elements i:nth-child(3) {
    left: 46%;
    top: 30%;
    transform: rotate(-18deg);
}

.how-bg-elements i:nth-child(4) {
    right: 18%;
    bottom: 12%;
    transform: rotate(10deg);
}

.how-bg-elements i:nth-child(5) {
    left: 18%;
    bottom: 14%;
    transform: rotate(-8deg);
}

.how-bg-elements i:nth-child(6) {
    left: 64%;
    bottom: 26%;
    transform: rotate(16deg);
}

.how-it-works h2 {
    font-family: 'Outfit', sans-serif;
    color: #fffaf0;
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
}

.how-subtitle {
    max-width: 760px;
    margin: 0 auto 48px;
    color: rgba(255, 250, 240, 0.88);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.55;
}

.how-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 0;
    align-items: start;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.how-step-card {
    background: transparent;
    border-radius: 30px;
    overflow: hidden;
    text-align: left;
    box-shadow: none;
    border: 0;
    transition: transform 0.26s ease, box-shadow 0.26s ease;
    display: flex;
    flex-direction: column;
}

.how-step-card:hover {
    transform: none;
    box-shadow: none;
}

.how-photo-frame {
    height: 430px;
    max-height: 430px;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.how-photo-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}



.how-step-copy {
    padding: 18px 4px 6px;
}

.how-step-copy span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #07172d;
    font-weight: 900;
    margin-bottom: 12px;
    font-size: 1rem;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
}

.how-step-card:nth-child(2) .how-step-copy span {
    background: #fffaf0;
    color: #000000;
}

.how-step-card:nth-child(3) .how-step-copy span {
    background: #ffffff;
    color: #000000;
}

.how-step-copy h3 {
    color: #fffaf0;
    font-size: 1.28rem;
    line-height: 1.4;
    margin-bottom: 0;
    padding-bottom: 2px;
}

.how-step-copy p {
    color: #5b6472;
    font-size: 0.95rem;
    line-height: 1.55;
    font-weight: 500;
}

.how-phone-showcase {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 0;
}

.how-phone-copy {
    align-self: center;
    justify-self: end;
    max-width: 330px;
    border-radius: 28px;
    background: rgba(255, 250, 240, 0.12);
    border: 1px solid rgba(255, 250, 240, 0.2);
    color: #fffaf0;
    padding: 26px;
    text-align: left;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.16);
}

.how-phone-copy span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #24c562;
    color: #fffaf0;
    font-weight: 900;
    margin-bottom: 18px;
    box-shadow: 0 12px 26px rgba(36, 197, 98, 0.26);
}

.how-phone-copy h3 {
    color: #fffaf0;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.08;
    margin-bottom: 12px;
}

.how-phone-copy p {
    color: rgba(255, 250, 240, 0.86);
    font-weight: 700;
    line-height: 1.52;
}

.how-phone-stage {
    min-height: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    width: 100%;
}

.how-phone-stage::before {
    content: '';
    position: absolute;
    width: min(420px, 84%);
    height: min(420px, 84%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 228, 228, 0.28), rgba(255, 228, 228, 0));
}

.how-phone-stage img {
    width: min(460px, 100%);
    max-height: 700px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.28));
}

.phone-step-badge {
    position: absolute;
    top: 34px;
    left: 3%;
    min-width: 84px;
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffd400;
    color: #07172d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 900;
    z-index: 2;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.how-video-cta {
    max-width: 620px;
    margin: 60px auto 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.how-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    background: #ffffff;
    color: #07172d;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.how-video-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.how-video-btn i {
    font-size: 0.9rem;
}

.how-video-cta p {
    max-width: 640px;
    margin: 16px auto 0;
    color: rgba(255, 250, 240, 0.88);
    font-size: 1.5rem;
    line-height: 1.55;
    font-weight: 500;
}

.how-phone-card {
    align-items: center;
    background: #f6fff6;
}

.iphone-mockup {
    width: min(220px, 80%);
    margin: 24px auto 4px;
    padding: 6px;
    border-radius: 31px;
    background: #15171b;
    box-shadow: 0 20px 44px rgba(13, 24, 36, 0.22);
    position: relative;
}

.iphone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 70px;
    height: 20px;
    transform: translateX(-50%);
    border-radius: 0 0 14px 14px;
    background: #15171b;
    z-index: 2;
}

.iphone-button {
    position: absolute;
    right: -3px;
    top: 104px;
    width: 3px;
    height: 46px;
    border-radius: 0 4px 4px 0;
    background: #2b2f35;
}

.iphone-screen {
    min-height: 404px;
    border-radius: 25px;
    background: linear-gradient(180deg, #f7fff6 0%, #eefbf0 100%);
    overflow: hidden;
    padding: 17px 15px 18px;
    text-align: center;
}

.phone-status {
    display: flex;
    justify-content: space-between;
    color: #102016;
    font-size: 0.62rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.found-banner {
    background: #0c8f54;
    color: #fffaf0;
    border-radius: 15px;
    padding: 10px 12px;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.pet-avatar {
    width: 72px;
    height: 72px;
    margin: 18px auto 10px;
    border-radius: 50%;
    background: #fffaf0;
    color: #ed402e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 24px rgba(12, 143, 84, 0.15);
}

.iphone-screen h4 {
    color: #132018;
    font-size: 1.28rem;
    margin-bottom: 2px;
}

.iphone-screen p {
    color: #59685f;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.profile-row {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    background: rgba(12, 143, 84, 0.08);
    color: #234235;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 10px;
    margin-bottom: 8px;
}

.profile-row i {
    color: #0c8f54;
}

.iphone-screen button {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 12px;
    margin-top: 8px;
    background: #ed402e;
    color: #fffaf0;
    font-family: inherit;
    font-weight: 900;
}

.iphone-screen button.whatsapp {
    background: #24c562;
}

.how-action-card {
    background: #fffdf6;
}

.how-action-visual {
    min-height: 292px;
    margin: 16px 16px 0;
    border-radius: 38px;
    background:
        linear-gradient(145deg, rgba(216, 4, 41, 0.94), rgba(237, 64, 46, 0.9)),
        #d80429;
    color: #fffaf0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px;
    position: relative;
    overflow: hidden;
}

.how-action-visual::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(255, 212, 0, 0.28);
}

.action-ring {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #fffaf0;
    color: #d80429;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 18px 36px rgba(70, 12, 15, 0.2);
    position: relative;
    z-index: 1;
}

.action-message {
    display: grid;
    gap: 7px;
    margin: 22px 0 26px;
    position: relative;
    z-index: 1;
}

.action-message strong {
    font-size: 1.45rem;
    line-height: 1.1;
}

.action-message span {
    color: rgba(255, 250, 240, 0.86);
    font-weight: 700;
    line-height: 1.4;
}

.action-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.action-pills span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.16);
    border: 1px solid rgba(255, 250, 240, 0.28);
    padding: 9px 12px;
    font-size: 0.8rem;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .how-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .how-container {
        grid-template-columns: 1fr;
    }

    .how-step-card {
        min-height: auto;
    }

    .how-photo-frame img {
        height: 320px;
        border: 1px whi;
    }

    .how-video-cta {
        margin-top: 8px;
    }

    .how-phone-copy {
        justify-self: stretch;
        max-width: none;
    }

    .how-phone-stage {
        min-height: auto;
    }

    .how-phone-stage img {
        width: min(340px, 92%);
        max-height: 560px;
    }

    .phone-step-badge {
        top: 3%;
        left: 5%;
    }
}

/* Reviews */
.reviews {
    padding: 5px 0 90px;
    background: #ffffff;
    color: #101827;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    display: none;
}

.reviews::after {
    display: none;
}

.reviews-hero-image {
    width: 100vw;
    max-width: none;
    margin: 0 calc(50% - 50vw) 34px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    z-index: 10;
}

.reviews-hero-image img {
    display: block;
    width: 100%;
    height: auto;
}


.reviews h2 {
    text-align: center;
    margin-bottom: 34px;
    position: relative;
    z-index: 10;
    color: #9d2e41;
    font-size: clamp(2.1rem, 3.8vw, 3.1rem);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    position: relative;
    z-index: 10;
}

@media (max-width: 1100px) {
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .reviews {
        padding: 52px 0 68px;
    }

    .reviews h2 {
        margin-bottom: 24px;
        text-align: center;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .reviews-hero-image {
        margin-bottom: 24px;
        border-radius: 22px;
    }
}


.review-card {
    background: #fffefd;
    padding: 12px 14px 14px;
    border-radius: 22px;
    box-shadow: 0 10px 22px rgba(91, 42, 22, 0.07);
    border: 1px solid rgba(216, 4, 41, 0.10);
    position: relative;
    color: var(--text-dark);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}


.review-stars {
    color: #ffd400;
    margin-bottom: 8px;
    font-size: 0.78rem;
}

.review-text {
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.38;
    margin-bottom: 10px;
}



.review-title {
    color: #101827;
    font-size: 0.88rem;
    margin-bottom: 5px;
}

.review-meta {
    color: #5b6472;
    font-size: 0.88rem;
    line-height: 1.35;
    font-weight: 600;
    margin-bottom: 14px;
}

.review-author {
    font-weight: 600;
    color: var(--text-body);
    font-size: 0.8rem;
}

.review-pet {
    width: 72px;
    height: 72px;
    margin: -2px auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border: none;
    /* Removed white circle */
    flex-shrink: 0;
}

.rev-color-1 {
    background: radial-gradient(circle, #ffe4e6 0%, #f43f5e 100%);
}

.rev-color-2 {
    background: radial-gradient(circle, #fef3c7 0%, #f59e0b 100%);
}

.rev-color-3 {
    background: radial-gradient(circle, #ecfdf5 0%, #10b981 100%);
}

.rev-color-4 {
    background: radial-gradient(circle, #ffedd5 0%, #f97316 100%);
}

.review-pet picture {
    width: 100%;
    height: 100%;
    display: block;
}

.review-pet img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}




.review-card:hover .review-pet img {
    transform: scale(1.1);
}


/* Safety Section */
.safety {
    padding: clamp(84px, 10vw, 128px) 0 clamp(92px, 11vw, 150px);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 12%, oklch(0.9 0.13 78 / 0.46), transparent 25%),
        radial-gradient(circle at 86% 18%, oklch(0.82 0.16 345 / 0.3), transparent 28%),
        linear-gradient(140deg, oklch(0.99 0.012 20) 0%, oklch(0.94 0.06 20) 42%, oklch(0.98 0.03 82) 100%);
    border-top: 1px solid oklch(0.88 0.09 18 / 0.55);
}

.safety::before {
    content: '';
    position: absolute;
    inset: 6% 3% auto auto;
    width: min(560px, 48vw);
    height: min(560px, 48vw);
    border-radius: 48% 52% 58% 42%;
    background:
        radial-gradient(circle at 34% 28%, oklch(0.98 0.03 20 / 0.95), transparent 19%),
        linear-gradient(135deg, oklch(0.69 0.22 18 / 0.16), oklch(0.82 0.18 75 / 0.12));
    filter: blur(1px);
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
    transform: rotate(-8deg);
}

.safety::after {
    content: '';
    position: absolute;
    left: -14%;
    bottom: -22%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: oklch(0.73 0.17 198 / 0.16);
    filter: blur(38px);
    pointer-events: none;
}

.safety h2 {
    color: oklch(0.99 0.01 20);
    font-size: clamp(3rem, 6.4vw, 5.7rem);
    margin-bottom: 18px;
    font-weight: 900;
    text-shadow: none;
    line-height: 0.95;
    letter-spacing: 0;
}

.safety-sub {
    color: oklch(0.92 0.018 35);
    font-size: clamp(1.06rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
    max-width: 35rem;
}

.safety-bg-element {
    position: absolute;
    opacity: 0.08;
    font-size: 6rem;
    z-index: 1;
    pointer-events: none;
}

.s-paw-1 {
    top: 13%;
    left: 7%;
    color: oklch(0.62 0.24 18);
    transform: rotate(-20deg) scale(1.2);
}

.s-heart-1 {
    top: 10%;
    right: 10%;
    color: oklch(0.66 0.2 346);
    transform: rotate(15deg) scale(1.1);
    font-size: 5rem;
}

.safety-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(520px, 1.15fr);
    gap: clamp(36px, 5.4vw, 78px);
    align-items: stretch;
    position: relative;
    z-index: 10;
}

.safety-copy {
    text-align: left;
    padding: clamp(34px, 4.6vw, 58px);
    border-radius: 36px;
    background:
        radial-gradient(circle at 84% 16%, oklch(0.76 0.18 76 / 0.2), transparent 28%),
        linear-gradient(145deg, oklch(0.23 0.055 261) 0%, oklch(0.28 0.075 345) 55%, oklch(0.56 0.23 18) 100%);
    box-shadow: 0 30px 80px oklch(0.34 0.1 18 / 0.24);
    overflow: hidden;
    position: sticky;
    top: 110px;
}

.safety-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: oklch(0.98 0.04 78 / 0.95);
    color: oklch(0.36 0.13 28);
    font-size: 0.83rem;
    font-weight: 900;
}

.safety-copy h2 {
    margin-bottom: 20px;
}

.safety-promise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.safety-promise span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    background: oklch(1 0.01 20 / 0.15);
    color: oklch(0.98 0.014 35);
    font-size: 0.9rem;
    font-weight: 750;
    border: 1px solid oklch(1 0.01 20 / 0.18);
}

.safety-promise i {
    color: oklch(0.87 0.15 78);
    font-size: 0.78rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(230px, 1fr));
    gap: 18px;
    position: relative;
    z-index: 10;
}

@media (max-width: 1024px) {
    .safety-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .safety-copy {
        text-align: center;
        padding: 44px 34px;
        position: relative;
        top: auto;
    }

    .safety-copy h2 {
        margin-bottom: 16px;
    }

    .safety-sub {
        margin: 0 auto;
    }

    .safety-kicker,
    .safety-promise {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .safety-card {
        min-height: auto;
        padding: 26px 22px;
    }

    .sc-icon {
        width: 64px;
        height: 64px;
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
}

.safety .container {
    position: relative;
    z-index: 10;
}

/* Safety Grid Styling */

.safety-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    padding: 28px;
    border-radius: 24px;
    background: oklch(0.99 0.008 20 / 0.92);
    box-shadow: 0 16px 42px oklch(0.42 0.08 18 / 0.08), inset 0 1px 0 oklch(1 0 0 / 0.66);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    border: 1px solid oklch(0.88 0.06 20 / 0.72);
    text-align: left;
    min-height: 210px;
    overflow: hidden;
}

.safety-card::after {
    content: '';
    position: absolute;
    right: -42px;
    bottom: -52px;
    width: 124px;
    height: 124px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.08;
    pointer-events: none;
}

.safety-card p {
    font-size: 0.95rem;
    color: oklch(0.35 0.04 252);
    line-height: 1.52;
    margin: 0;
    font-weight: 600;
    max-width: 19rem;
}

.safety-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px oklch(0.42 0.09 18 / 0.14), inset 0 1px 0 oklch(1 0 0 / 0.72);
}

.safety-card h4 {
    font-size: clamp(1.08rem, 1.4vw, 1.24rem);
    font-weight: 900;
    color: oklch(0.24 0.055 260);
    margin: 0;
    letter-spacing: 0;
}

/* Color accents now apply backgrounds to cards */
.s-blue {
    color: oklch(0.52 0.16 235);
    background: linear-gradient(135deg, oklch(0.95 0.05 229) 0%, oklch(0.99 0.02 220) 100%);
    border-color: oklch(0.78 0.1 232 / 0.54);
}

.s-blue .sc-icon {
    background: oklch(0.53 0.16 235);
    color: oklch(0.97 0.03 229);
    box-shadow: 0 10px 22px oklch(0.53 0.16 235 / 0.24);
}

.s-peach {
    color: oklch(0.59 0.17 42);
    background: linear-gradient(135deg, oklch(0.93 0.075 54) 0%, oklch(0.99 0.025 54) 100%);
    border-color: oklch(0.78 0.11 48 / 0.48);
}

.s-peach .sc-icon {
    background: oklch(0.59 0.17 42);
    color: oklch(0.98 0.03 54);
    box-shadow: 0 10px 22px oklch(0.59 0.17 42 / 0.24);
}

.s-mint {
    color: oklch(0.49 0.13 158);
    background: linear-gradient(135deg, oklch(0.93 0.07 154) 0%, oklch(0.99 0.025 154) 100%);
    border-color: oklch(0.76 0.1 154 / 0.46);
}

.s-mint .sc-icon {
    background: oklch(0.49 0.13 158);
    color: oklch(0.98 0.03 154);
    box-shadow: 0 10px 22px oklch(0.49 0.13 158 / 0.24);
}

.s-lavender {
    color: oklch(0.55 0.18 296);
    background: linear-gradient(135deg, oklch(0.94 0.055 300) 0%, oklch(0.99 0.02 300) 100%);
    border-color: oklch(0.78 0.11 296 / 0.46);
}

.s-lavender .sc-icon {
    background: oklch(0.55 0.18 296);
    color: oklch(0.98 0.03 300);
    box-shadow: 0 10px 22px oklch(0.55 0.18 296 / 0.24);
}

.s-pink {
    color: oklch(0.63 0.23 18);
    background: linear-gradient(135deg, oklch(0.94 0.07 18) 0%, oklch(0.99 0.02 18) 100%);
    border-color: oklch(0.78 0.13 18 / 0.52);
}

.s-pink .sc-icon {
    background: oklch(0.63 0.23 18);
    color: oklch(0.99 0.025 18);
    box-shadow: 0 10px 22px oklch(0.63 0.23 18 / 0.24);
}

.s-yellow {
    color: oklch(0.63 0.15 75);
    background: linear-gradient(135deg, oklch(0.94 0.09 82) 0%, oklch(0.99 0.035 82) 100%);
    border-color: oklch(0.78 0.12 76 / 0.52);
}

.s-yellow .sc-icon {
    background: oklch(0.63 0.15 75);
    color: oklch(0.99 0.04 82);
    box-shadow: 0 10px 22px oklch(0.63 0.15 75 / 0.24);
}

.sc-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 1.28rem;
    margin-bottom: 0;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.safety-card:hover .sc-icon {
    transform: rotate(-4deg) scale(1.06);
}

.safety-card h4 {
    font-size: clamp(1.08rem, 1.4vw, 1.24rem);
    font-weight: 900;
    color: oklch(0.24 0.055 260);
    margin: 0;
    text-align: left;
    letter-spacing: 0;
}

.safety-end {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
    align-items: end;
    gap: clamp(24px, 4vw, 54px);
    margin-top: clamp(42px, 6vw, 76px);
    padding: clamp(28px, 4vw, 42px) clamp(26px, 4vw, 52px) 0;
    border-radius: 36px;
    background:
        radial-gradient(circle at 84% 22%, oklch(0.99 0.06 83 / 0.72), transparent 24%),
        linear-gradient(135deg, oklch(0.24 0.06 260) 0%, oklch(0.31 0.08 338) 56%, oklch(0.58 0.22 18) 100%);
    box-shadow: 0 30px 90px oklch(0.34 0.11 18 / 0.22);
    overflow: hidden;
}

.safety-end::before {
    content: '';
    position: absolute;
    inset: auto 4% -42% auto;
    width: min(500px, 54vw);
    height: min(500px, 54vw);
    border-radius: 50%;
    background: oklch(0.91 0.12 77 / 0.22);
    pointer-events: none;
}

.safety-end-copy {
    align-self: center;
    padding-bottom: clamp(28px, 4vw, 44px);
}

.safety-end-copy span {
    display: block;
    margin-bottom: 12px;
    color: oklch(0.98 0.035 80);
    font-size: clamp(1.6rem, 3vw, 2.7rem);
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: 0;
}

.safety-end-copy p {
    max-width: 28rem;
    color: oklch(0.94 0.018 35);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.55;
    font-weight: 550;
    margin: 0;
}

.safety-end img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 720px);
    justify-self: end;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 38px oklch(0.18 0.05 260 / 0.24));
}

@media (max-width: 1024px) {
    .safety-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .safety-end {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .safety-end-copy {
        padding-bottom: 0;
    }

    .safety-end-copy p {
        margin: 0 auto;
    }

    .safety-end img {
        justify-self: center;
        width: min(100%, 620px);
    }
}

@media (max-width: 640px) {
    .safety-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .safety {
        padding-top: 70px;
    }

    .safety h2 {
        font-size: clamp(2.65rem, 17vw, 4rem);
    }

    .safety-copy {
        border-radius: 28px;
        padding: 34px 22px;
    }

    .safety-promise span {
        width: 100%;
        justify-content: center;
    }

    .safety-end {
        border-radius: 28px;
        padding: 28px 20px 0;
    }
}

/* Reference-style Zero Hassle layout */
.safety {
    padding: clamp(92px, 9vw, 126px) 0 clamp(96px, 9vw, 132px);
    background: oklch(0.965 0.035 54);
    border-top: 1px solid oklch(0.88 0.06 20);
}

.safety::before {
    display: block;
    content: '';
    position: absolute;
    inset: 9% auto auto 5%;
    width: 190px;
    height: 190px;
    border-radius: 46% 54% 55% 45%;
    background: oklch(0.86 0.11 204 / 0.45);
    filter: blur(1px);
    transform: rotate(-12deg);
    z-index: 0;
    pointer-events: none;
}

.safety::after {
    display: block;
    content: '';
    position: absolute;
    inset: auto 7% 12% auto;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: oklch(0.86 0.12 18 / 0.45);
    filter: blur(1px);
    z-index: 0;
    pointer-events: none;
}

.safety-bg-element {
    display: block;
    opacity: 0.1;
    z-index: 0;
}

.s-paw-1 {
    top: 22%;
    left: 13%;
    color: oklch(0.54 0.17 215);
}

.s-heart-1 {
    top: 19%;
    right: 14%;
    color: oklch(0.64 0.2 18);
}

.safety-layout {
    display: block;
}

.safety-copy {
    max-width: 760px;
    margin: 0 auto clamp(34px, 4.5vw, 52px);
    padding: 0;
    text-align: center;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    position: relative;
    top: auto;
}

.safety h2 {
    color: oklch(0.24 0.025 235);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.55rem, 4.8vw, 4.6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
    margin: 0 0 18px;
}

.safety-sub {
    max-width: none;
    color: oklch(0.43 0.025 65);
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    font-weight: 500;
    line-height: 1.55;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 28px);
    align-items: stretch;
    max-width: 1320px;
    margin: 0 auto;
}

.safety-card {
    width: 100%;
    min-height: clamp(138px, 12vw, 156px);
    padding: 26px 18px 24px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    border: 1px solid oklch(0.84 0.045 45 / 0.72);
    border-radius: 24px;
    box-shadow: 0 18px 36px oklch(0.4 0.055 28 / 0.08);
    transform: none;
}

.safety-card::after {
    inset: 12px 12px auto auto;
    width: 54px;
    height: 54px;
    opacity: 0.09;
}

.safety-card p {
    display: none;
}

.safety-card h4 {
    color: oklch(0.22 0.035 235);
    font-size: clamp(0.96rem, 1.1vw, 1.08rem);
    font-weight: 850;
    text-align: center;
}

.safety-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px oklch(0.4 0.055 28 / 0.11);
}

.safety-card:hover .sc-icon {
    transform: scale(1.02);
}

.sc-icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: oklch(0.99 0.01 76 / 0.82);
    box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.7), 0 10px 18px oklch(0.34 0.045 32 / 0.08);
    font-size: 1.28rem;
}

.s-blue {
    color: oklch(0.37 0.085 225);
    background: oklch(0.82 0.09 218);
    border-color: oklch(0.76 0.09 225);
}

.s-peach {
    color: oklch(0.5 0.11 58);
    background: oklch(0.86 0.095 58);
    border-color: oklch(0.79 0.09 62);
}

.s-mint {
    color: oklch(0.42 0.1 157);
    background: oklch(0.8 0.105 154);
    border-color: oklch(0.73 0.1 154);
}

.s-lavender {
    color: oklch(0.42 0.105 303);
    background: oklch(0.81 0.075 304);
    border-color: oklch(0.75 0.085 303);
}

.s-pink {
    color: oklch(0.49 0.13 12);
    background: oklch(0.84 0.12 12);
    border-color: oklch(0.77 0.11 12);
}

.s-blue .sc-icon,
.s-peach .sc-icon,
.s-mint .sc-icon,
.s-lavender .sc-icon,
.s-pink .sc-icon {
    background: oklch(0.98 0.01 76 / 0.72);
    color: currentColor;
    box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.7), 0 10px 18px oklch(0.34 0.045 32 / 0.08);
}

.safety-end {
    display: none;
}

@media (max-width: 1100px) {
    .safety-grid {
        grid-template-columns: repeat(3, minmax(170px, 1fr));
    }
}

@media (max-width: 720px) {
    .safety-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 460px) {
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .safety-card {
        min-height: 110px;
        padding: 16px 10px;
    }

    .safety-card p {
        font-size: 0.78rem;
    }
}



/* More Than Phone Section Redesign */
.more-than-phone {
    padding: 120px 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 214, 0, 0.18), transparent 24%),
        radial-gradient(circle at 84% 18%, rgba(255, 61, 104, 0.17), transparent 26%),
        linear-gradient(135deg, #102a43 0%, #075f63 48%, #123b34 100%);
    position: relative;
    overflow: hidden;
}

.more-than-phone::before {
    content: '';
    position: absolute;
    inset: -28% -12%;
    background:
        linear-gradient(115deg, rgba(45, 212, 191, 0) 8%, rgba(45, 212, 191, 0.22) 34%, rgba(255, 214, 0, 0.09) 52%, rgba(255, 61, 104, 0.13) 72%, rgba(45, 212, 191, 0) 92%);
    filter: blur(48px);
    opacity: 0.85;
    transform: translate3d(-3%, 0, 0);
    animation: greenGradientFlow 16s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

/* Add a large decorative background paw */
.more-than-phone::after {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -100px;
    left: -50px;
    font-size: 40rem;
    color: rgba(255, 255, 255, 0.055);
    z-index: 1;
    pointer-events: none;
}

@keyframes greenGradientFlow {
    0% {
        transform: translate3d(-4%, -1%, 0) scale(1);
    }

    50% {
        transform: translate3d(3%, 2%, 0) scale(1.035);
    }

    100% {
        transform: translate3d(6%, -2%, 0) scale(1.02);
    }
}

@keyframes sectionFlow {
    0% {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }

    50% {
        transform: translate3d(3%, 2%, 0) scale(1.035);
    }

    100% {
        transform: translate3d(6%, -2%, 0) scale(1.015);
    }
}

.more-card {
    background: #fffefd;
    padding: 80px 60px;
    border-radius: 48px;
    box-shadow: 0 42px 110px rgba(2, 17, 32, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.72);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.more-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 254, 253, 0.97) 0%, rgba(255, 254, 253, 0.9) 42%, rgba(255, 254, 253, 0.6) 100%),
        url('/assets/home-v2/optimized/found-pet-phone-bg.jpg') right 8% center / min(360px, 42%) auto no-repeat;
    opacity: 0.78;
    pointer-events: none;
}

.more-content {
    position: relative;
    z-index: 1;
}

.more-than-phone h2 {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 24px;
    line-height: 1.1;
    color: #0f172a;
}

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

.more-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.more-list li i {
    color: #10b981;
    font-size: 1.3rem;
}

.product-phone-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.phone-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Specifications Section Redesign */
.specs-section {
    padding: 120px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 214, 0, 0.16), transparent 25%),
        radial-gradient(circle at 92% 12%, rgba(255, 96, 154, 0.13), transparent 28%),
        linear-gradient(135deg, #fff8fb 0%, #fff7ed 50%, #fff2f8 100%);
    position: relative;
    overflow: hidden;
}

/* Add a large decorative background heart */
.specs-section::before {
    content: '\f004';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    position: absolute;
    top: -50px;
    right: -100px;
    font-size: 35rem;
    color: rgba(255, 96, 154, 0.035);
    z-index: 1;
    pointer-events: none;
}

.specs-section::after {
    content: '';
    position: absolute;
    left: 8%;
    bottom: 4%;
    width: min(54vw, 720px);
    height: 190px;
    border-radius: 999px;
    background: rgba(168, 85, 247, 0.1);
    filter: blur(42px);
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
    animation: sectionFlow 17s ease-in-out infinite alternate;
}

.specs-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4%;
    position: relative;
    z-index: 2;
}

.specs-image {
    flex: 1.4;
    position: relative;
    text-align: center;
}

.specs-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 20px;
    /* Removed tilt and shadow per request */
}

.specs-section:hover .specs-image img {
    transform: scale(1.05);
    /* Subtle zoom on hover */
}

.specs-content {
    flex: 1;
}

.specs-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 40px;
    font-family: var(--font-primary);
    letter-spacing: -0.03em;
}

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

.spec-item {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    border-bottom: 3px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.spec-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-bottom-color: var(--primary);
}

.spec-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 12px;
}

.spec-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
}

/* Premium Showcase Section - Full Page Cinematic */
.premium-showcase {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: #0f172a;
    background-image: url('/assets/home-v2/optimized/premium-banner-bg.jpg');
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; removed per request */
    color: #ffffff;
    overflow: hidden;
}

.premium-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.2), transparent 30%),
        linear-gradient(75deg, rgba(8, 10, 16, 0.88) 0%, rgba(15, 23, 42, 0.62) 54%, rgba(15, 23, 42, 0.3) 100%);
    z-index: 1;
}

.premium-showcase::after {
    content: '';
    position: absolute;
    right: -12%;
    bottom: -10%;
    width: min(56vw, 780px);
    height: 270px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    filter: blur(46px);
    opacity: 0.72;
    z-index: 1;
    pointer-events: none;
    animation: sectionFlow 19s ease-in-out infinite alternate;
}

.premium-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
    width: 100%;
}

.premium-text {
    max-width: 650px;
}

.premium-text h2 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -0.04em;
}

.premium-text h2 span {
    color: #d4af37;
    font-style: italic;
    font-family: serif;
    font-weight: 400;
    display: block;
    margin-top: 10px;
}

.premium-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 56px;
}

.premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d4af37;
    color: #0f172a;
    padding: 11px 20px;
    border-radius: 99px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.26s ease, transform 0.26s ease, box-shadow 0.26s ease;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.premium-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(212, 175, 55, 0.34);
}

/* Premium Products Section */
.premium-products-section {
    display: none;
}

.premium-products-section::before {
    content: '';
    position: absolute;
    left: -14%;
    top: 12%;
    width: min(50vw, 680px);
    height: 220px;
    border-radius: 999px;
    background: rgba(255, 214, 0, 0.16);
    filter: blur(44px);
    opacity: 0.55;
    pointer-events: none;
    animation: sectionFlow 18s ease-in-out infinite alternate;
}

.premium-products-section::after {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -24px;
    bottom: 6%;
    font-size: 12rem;
    color: rgba(30, 18, 68, 0.035);
    pointer-events: none;
}

.premium-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
    position: relative;
    z-index: 10;
}

/* Remove border and zoom images for Premium cards */
.premium-products-section .product-card {
    border: none !important;
    background: #ffffff !important;
    box-shadow: none;
}

.premium-products-section .product-card:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.premium-products-section .product-image {
    background: #ffffff;
    border: none;
    box-shadow: none;
}

.premium-products-section .product-image img {
    transform: scale(1.15);
    /* Zoomed as requested */
}

.premium-products-section .product-card:hover .product-image img {
    transform: scale(1.22);
    /* Extra zoom on hover */
}

@media (max-width: 1100px) {
    .premium-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .premium-products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .premium-showcase {
        height: auto;
        padding: 120px 0;
        background-attachment: scroll;
    }

    .premium-text {
        text-align: center;
    }

    .premium-btn {
        padding: 10px 18px;
        font-size: 0.88rem;
    }
}

@media (max-width: 992px) {
    .specs-container {
        flex-direction: column;
        gap: 60px;
    }

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

@media (max-width: 576px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.step-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.step-card.green {
    border-top-color: #10b981;
}

.step-card.blue {
    border-top-color: #3b82f6;
}

.step-card.gold {
    border-top-color: #f59e0b;
}

.step-card.coral {
    border-top-color: #f43f5e;
}

.more-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.more-text {
    flex: 1;
}

.more-list {
    margin-top: 32px;
}

.more-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 1.1rem;
}

.more-list i {
    color: #059669;
    font-size: 1.2rem;
}

/* More Than Phone final art direction */
.more-than-phone {
    padding: clamp(92px, 9vw, 132px) 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 214, 0, 0.18), transparent 22%),
        radial-gradient(circle at 88% 20%, rgba(255, 61, 104, 0.22), transparent 24%),
        linear-gradient(135deg, #071826 0%, #064f56 48%, #0d332b 100%);
}

.more-card {
    padding: clamp(28px, 4.6vw, 58px);
    border-radius: 36px;
    background:
        linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.94) 52%, rgba(255, 253, 248, 0.08) 53%),
        #fffdf8;
    box-shadow: 0 48px 110px rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.62);
}

.more-card::before {
    display: none;
}

.more-content {
    display: grid;
    grid-template-columns: minmax(340px, 0.92fr) minmax(360px, 1.08fr);
    gap: clamp(32px, 6vw, 84px);
    align-items: center;
    max-width: 1160px;
}

.more-text {
    flex: initial;
    max-width: 560px;
}

.more-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: #e8fff2;
    color: #057a4f;
    font-size: 0.78rem;
    font-weight: 900;
}

.more-than-phone h2 {
    color: #0c1728;
    font-size: clamp(2.4rem, 4.8vw, 4.4rem);
    line-height: 0.98;
    margin-bottom: 18px;
}

.more-summary {
    max-width: 31rem;
    margin: 0 0 28px;
    color: #455166;
    font-size: clamp(1rem, 1.25vw, 1.15rem);
    line-height: 1.5;
    font-weight: 650;
}

.more-list {
    display: grid;
    gap: 10px;
    margin-top: 0;
}

.more-list li {
    min-height: 42px;
    margin-bottom: 0;
    padding: 10px 12px;
    border-radius: 15px;
    background: rgba(7, 95, 99, 0.065);
    color: #142033;
    font-size: clamp(0.92rem, 1.05vw, 1.04rem);
    font-weight: 750;
    line-height: 1.28;
}

.more-list li i {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #13b981;
    color: #fffdf8;
    font-size: 0.76rem;
}

.more-visuals {
    min-height: clamp(450px, 42vw, 610px);
    border-radius: 30px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 24% 24%, rgba(255, 214, 0, 0.28), transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(255, 61, 104, 0.24), transparent 25%),
        linear-gradient(145deg, #073440 0%, #097060 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 28px 70px rgba(5, 39, 43, 0.32);
}

.more-visuals::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -42px;
    bottom: -58px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 16rem;
    transform: rotate(-16deg);
}

.more-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.more-orbit-a {
    width: 360px;
    height: 360px;
    transform: rotate(-18deg) scaleX(1.28);
}

.more-orbit-b {
    width: 250px;
    height: 250px;
    transform: rotate(18deg) scaleX(1.18);
    opacity: 0.72;
}

.phone-image-wrapper {
    width: min(72%, 360px);
    position: relative;
    z-index: 2;
}

.phone-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 9% -18% 7% 18%;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.24);
    transform: rotate(5deg);
    filter: blur(0.2px);
}

.product-phone-img {
    width: 100%;
    max-width: none;
    border-radius: 34px;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
    transform: rotate(-3deg);
    position: relative;
    z-index: 2;
}

.scan-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fffdf8;
    color: #0d332b;
    font-size: 0.8rem;
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.chip-top {
    top: 18%;
    left: 8%;
}

.chip-bottom {
    right: 7%;
    bottom: 17%;
}

.scan-chip i {
    color: #13b981;
}

@media (max-width: 960px) {
    .more-card {
        background: #fffdf8;
    }

    .more-content {
        grid-template-columns: 1fr;
    }

    .more-text {
        max-width: none;
    }

    .more-visuals {
        min-height: 460px;
    }
}

/* More Than Phone restored clean card layout */
.more-than-phone {
    padding: 120px 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 214, 0, 0.18), transparent 24%),
        radial-gradient(circle at 84% 18%, rgba(255, 61, 104, 0.17), transparent 26%),
        linear-gradient(135deg, #102a43 0%, #075f63 48%, #123b34 100%);
}

.more-card {
    background: #fffefd;
    padding: 80px 60px;
    border-radius: 48px;
    box-shadow: 0 42px 110px rgba(2, 17, 32, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.72);
    overflow: hidden;
}

.more-card::before {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 254, 253, 0.97) 0%, rgba(255, 254, 253, 0.9) 42%, rgba(255, 254, 253, 0.6) 100%),
        url('/assets/home-v2/optimized/found-pet-phone-bg.jpg') right 8% center / min(360px, 42%) auto no-repeat;
    opacity: 0.34;
    pointer-events: none;
}

.more-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.more-text {
    flex: 1;
    max-width: none;
}

.more-than-phone h2 {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 24px;
    line-height: 1.1;
    color: #0f172a;
}

.more-summary,
.more-kicker,
.more-orbit,
.scan-chip {
    display: none;
}

.more-list {
    display: block;
    margin-top: 32px;
}

.more-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 0;
    margin-bottom: 16px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.45;
}

.more-list li i {
    flex: initial;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #059669;
    font-size: 1.2rem;
}

.more-visuals {
    min-height: auto;
    border-radius: 0;
    display: block;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    position: relative;
}

.more-visuals::before {
    display: none;
}

.phone-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.phone-image-wrapper::before {
    display: none;
}

.product-phone-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
    transform: none;
}

@media (max-width: 1024px) {
    .more-content {
        flex-direction: column;
    }
}

/* More Than Phone background image layout */
.more-than-phone {
    min-height: min(920px, 100vh);
    padding: clamp(78px, 8vw, 124px) 0;
    background:
        linear-gradient(90deg, rgba(12, 20, 34, 0.2), rgba(12, 20, 34, 0.03) 48%, rgba(12, 20, 34, 0.12)),
        url('/assets/home-v2/optimized/Morethan-bg.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
}

.more-than-phone .container {
    width: 100%;
    max-width: none;
    padding: 0 4vw;
}

.more-than-phone::before,
.more-than-phone::after {
    display: none;
}

.more-card {
    width: min(1320px, 92vw);
    margin: 0 auto;
    padding: clamp(42px, 5vw, 74px) clamp(38px, 5.4vw, 86px);
    border-radius: 34px;
    background: rgba(20, 24, 28, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 30px 90px rgba(12, 14, 16, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(15px) saturate(1.05);
    -webkit-backdrop-filter: blur(15px) saturate(1.05);
    position: relative;
    overflow: hidden;
}

.more-card::before {
    display: none;
}

.more-content {
    display: grid;
    grid-template-columns: minmax(340px, 0.95fr) minmax(280px, 0.72fr);
    gap: clamp(34px, 5vw, 68px);
    align-items: center;
    max-width: none;
    position: relative;
    z-index: 1;
}

.more-text {
    max-width: 620px;
}

.more-than-phone h2 {
    max-width: 520px;
    font-size: clamp(2.25rem, 3.6vw, 3.55rem);
    line-height: 1.12;
    color: #fff8ec;
    margin-bottom: clamp(24px, 3vw, 34px);
}

.more-list {
    display: grid;
    gap: 15px;
    margin-top: 0;
}

.more-list li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    margin: 0;
    padding: 0;
    color: #fff8ec;
    font-size: clamp(0.98rem, 1.2vw, 1.14rem);
    font-weight: 600;
    line-height: 1.38;
}

.more-list li i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #13b981;
    color: #fffaf1;
    font-size: 0.8rem;
    box-shadow: 0 8px 18px rgba(18, 168, 111, 0.2);
}

.more-visuals {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    min-height: 0;
    overflow: visible;
}

.phone-image-wrapper {
    width: min(100%, 320px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-phone-img {
    width: 100%;
    max-width: 320px;
    border-radius: 34px;
    box-shadow: 0 22px 58px rgba(25, 38, 56, 0.2);
    transform: none;
}

@media (max-width: 900px) {
    .more-than-phone {
        min-height: auto;
    }

    .more-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .more-text {
        max-width: none;
    }

    .more-card {
        border-radius: 30px;
    }

    .more-card::after {
        display: none;
    }

    .phone-image-wrapper {
        width: min(72%, 300px);
        margin: 0 auto;
    }
}

.more-visuals {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

.poster-card {
    background: white;
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: rotate(5deg);
    position: absolute;
    right: -20px;
    top: 50%;
    margin-top: -120px;
    width: 200px;
}

.poster-card h3 {
    color: red;
    margin-bottom: 8px;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.poster-image {
    width: 100%;
    height: 120px;
    background: var(--pastel-yellow);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== Specifications Section ========== */
.specs-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 214, 0, 0.16), transparent 25%),
        radial-gradient(circle at 92% 12%, rgba(255, 96, 154, 0.13), transparent 28%),
        linear-gradient(135deg, #fff8fb 0%, #fff7ed 50%, #fff2f8 100%);
    position: relative;
    overflow: hidden;
}

.specs-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.specs-image {
    flex: 1;
    max-width: 480px;
}

.specs-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.specs-content {
    flex: 1;
}

.specs-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.spec-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.spec-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.spec-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
}

.spec-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
}

/* Spec Color Personalities */
.spec-purple {
    background: linear-gradient(135deg, rgba(243, 232, 255, 0.8), rgba(255, 255, 255, 0.9));
}

.spec-purple .spec-icon {
    background: #ede9fe;
    color: #7c3aed;
}

.spec-purple .spec-label {
    color: #7c3aed;
}

.spec-pink {
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.8), rgba(255, 255, 255, 0.9));
}

.spec-pink .spec-icon {
    background: #fce7f3;
    color: #db2777;
}

.spec-pink .spec-label {
    color: #db2777;
}

.spec-yellow {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.8), rgba(255, 255, 255, 0.9));
}

.spec-yellow .spec-icon {
    background: #fef3c7;
    color: #d97706;
}

.spec-yellow .spec-label {
    color: #d97706;
}

.spec-blue {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.8), rgba(255, 255, 255, 0.9));
}

.spec-blue .spec-icon {
    background: #dbeafe;
    color: #2563eb;
}

.spec-blue .spec-label {
    color: #2563eb;
}

.spec-green {
    background: linear-gradient(135deg, rgba(220, 252, 231, 0.8), rgba(255, 255, 255, 0.9));
}

.spec-green .spec-icon {
    background: #dcfce7;
    color: #16a34a;
}

.spec-green .spec-label {
    color: #16a34a;
}

.spec-orange {
    background: linear-gradient(135deg, rgba(255, 237, 213, 0.8), rgba(255, 255, 255, 0.9));
}

.spec-orange .spec-icon {
    background: #ffedd5;
    color: #ea580c;
}

.spec-orange .spec-label {
    color: #ea580c;
}

/* Specs Responsive */
@media (max-width: 1024px) {
    .specs-container {
        flex-direction: column;
        text-align: center;
    }

    .specs-image {
        max-width: 360px;
    }

    .specs-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 580px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section Redesign */
/* Reference FAQ Redesign */
.faq {
    padding: 120px 0 180px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 96, 154, 0.08) 0%, rgba(255, 182, 193, 0.03) 50%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq-badge {
    display: table;
    margin: 0 auto 14px;
    padding: 8px 24px;
    background: rgba(255, 96, 154, 0.1);
    color: #ff609a;
    border: 1.5px solid rgba(255, 96, 154, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-title {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 50px;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 45px;
}

/* Heart-dotted line below title */
.faq-title::after {
    content: '── ── ── ── ♡ ── ── ── ──';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: #e2e8f0;
    letter-spacing: 2px;
    white-space: nowrap;
    font-weight: 400;
}

.faq-title .pink-text {
    background: linear-gradient(135deg, #ff609a, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-grid {
    column-count: 2;
    column-gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.faq-grid::before {
    display: none;
}

.faq-item {
    break-inside: avoid;
    margin-bottom: 24px;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.faq-item:last-child {
    /* No bottom border needed in grid */
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    background: #ffffff;
    border-color: #e2e8f0;
}

.faq-question-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.faq-question {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.15rem;
    color: #0f172a;
    gap: 12px;
}

.faq-arrow {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Color Personalities (Removed main background for premium white card look) */

.faq-yellow .faq-icon-circle {
    background: #fef3c7;
    color: #d97706;
}

.faq-yellow .faq-arrow {
    background: #fbbf24;
}

.faq-purple .faq-icon-circle {
    background: #f3e8ff;
    color: #9333ea;
}

.faq-purple .faq-arrow {
    background: #a855f7;
}

.faq-pink .faq-icon-circle {
    background: #fce7f3;
    color: #db2777;
}

.faq-pink .faq-arrow {
    background: #ec4899;
}

.faq-green .faq-icon-circle {
    background: #dcfce7;
    color: #16a34a;
}

.faq-green .faq-arrow {
    background: #22c55e;
}

.faq-blue .faq-icon-circle {
    background: #dbeafe;
    color: #2563eb;
}

.faq-blue .faq-arrow {
    background: #3b82f6;
}

.faq-orange .faq-icon-circle {
    background: #ffedd5;
    color: #ea580c;
}

.faq-orange .faq-arrow {
    background: #f97316;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 16px 0 64px;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    display: block !important;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 16px 16px 0 64px;
    opacity: 1;
    animation: none;
}

/* Bottom Wavy Border */
.faq-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,160L48,176C96,192,192,224,288,229.3C384,235,480,213,576,192C672,171,768,149,864,154.7C960,160,1056,192,1152,192C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-grid {
        column-count: 1;
        max-width: 400px;
        padding: 0 20px;
    }
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #FDE047 0%, #F59E0B 100%);
    /* Clean, sunny gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Premium Pet Background Elements */
.cta-banner::before {
    content: '\f1b0  \f1b0  \f1b0';
    /* Three paws */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    letter-spacing: 100px;
    color: rgba(255, 255, 255, 0.15);
    /* Faint white paws */
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.cta-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.cta-banner h2 {
    margin-bottom: 0;
    max-width: 500px;
    text-align: left;
}

.cta-pets {
    display: flex;
    gap: -20px;
}

.cta-pet {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    border: 8px solid var(--pastel-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* Footer Redesign */
.footer {
    background: #020617;
    color: #ffffff;
    padding: 120px 0 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Subtle brand glow for luxury feel */
.footer::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(199, 76, 122, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 64px;
    align-items: start;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .footer-logo {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 24px;
}

.footer h4 {
    color: #f8fafc;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

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

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-block;
}

.footer-links a:hover {
    color: #FF3D68;
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    font-size: 0.9rem;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-right {
    display: flex;
    gap: 14px;
    align-items: center;
}

.footer-bottom-right a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-right a:hover {
    color: #ffffff;
}

.footer-bottom-right span {
    color: #475569;
}

.footer-brand .social-links {
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: #94a3b8;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #FF3D68 0%, #8B5CF6 100%);
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.25);
    transform: translateY(-3px);
}

/* See You Soon Strip */
.see-you-soon-strip {
    width: 100%;
    line-height: 0;
    background-color: #fdf6f0;
}

.strip-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.see-you-soon-strip img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-message-strip {
    width: 100%;
    min-height: clamp(28px, 2.6vw, 38px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.4vw, 16px);
    padding: 5px 4%;
    background: #4f438e;
    color: #fffafa;
    font-size: clamp(0.78rem, 1.35vw, 1.2rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0;
    text-align: center;
}

.footer-message-strip i {
    flex: 0 0 auto;
    color: rgba(255, 250, 250, 0.9);
    font-size: 0.72em;
    filter: drop-shadow(0 2px 2px rgba(30, 18, 68, 0.25));
}

.footer-message-strip span {
    display: inline-block;
    text-shadow: 0 2px 2px rgba(30, 18, 68, 0.22);
}

.strip-main-text {
    text-align: center;
    margin-top: -3%;
    z-index: 5;
}

.strip-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: #3b2b85;
    /* Deep purple */
    margin-bottom: 0px;
    letter-spacing: -2px;
    transform: perspective(400px) rotateX(4deg);
    /* Simulates the subtle curve pop */
    position: relative;
    display: inline-block;
}

/* Decorative Sparklines from reference */
.strip-title::before,
.strip-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background-image: radial-gradient(circle at center, #3b2b85 1px, transparent 1px);
    background-size: 8px 8px;
    /* Placeholder for the 3-line spark look */
    opacity: 0.3;
}

/* Using actual lines for sparks */
.strip-title::before {
    content: '≡';
    left: -50px;
    font-size: 2rem;
    transform: translateY(-50%) rotate(-20deg);
}

.strip-title::after {
    content: '≡';
    right: -50px;
    font-size: 2rem;
    transform: translateY(-50%) rotate(20deg);
}

.strip-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.8rem);
    font-weight: 800;
    color: #3b2b85;
    opacity: 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: -5px;
}

.pink-heart {
    color: #ff8fb1;
    font-size: 0.9em;
    filter: drop-shadow(0 2px 4px rgba(255, 143, 177, 0.3));
}

.strip-bottom-bar {
    width: 100%;
    background: #4c3a8e;
    /* Rich purple bar */
    padding: 18px 0;
    border-top: 2px dashed rgba(255, 255, 255, 0.2);
}

.bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #ffffff;
    font-size: clamp(0.9rem, 1.5vw, 1.3rem);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bar-content i {
    opacity: 0.8;
}

.btn-contrast {
    background: #FFD600;
    /* Vibrant Brand Yellow */
    color: #000000;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(255, 214, 0, 0.2);
    border: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-contrast:hover {
    background: #ffcc00;
    box-shadow: 0 15px 35px rgba(255, 214, 0, 0.4);
    transform: translateY(-2px);
}

.btn-contrast:active {
    transform: scale(0.96);
    transition: all 0.1s ease;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .lost-pet-container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .lost-pet-copy {
        max-width: 720px;
    }

    .hero .container {
        flex-direction: column;
        text-align: left;
    }

    .hero-content {
        max-width: 680px;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

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

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

    .how-container {
        flex-direction: column;
    }

    .how-steps {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .more-content {
        flex-direction: column;
    }

    .cta-banner .container {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .cta-banner h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .lost-pet-problem {
        padding: 58px 0 68px;
    }

    .lost-pet-image {
        min-height: 320px;
        border-radius: 26px;
    }

    .lost-pet-copy h2 {
        font-size: clamp(2.25rem, 12vw, 3.4rem);
    }

    .lost-pet-btn {
        padding: 12px 18px;
    }

    .nav-links,
    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        background: none;
        border: none;
        cursor: pointer;
        color: #ffffff;
    }

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

    .why-visual {
        border-radius: 24px;
    }

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

    h1 {
        font-size: 2.5rem;
    }
}

@media (max-height: 650px) and (min-width: 769px) {
    .hero {
        min-height: auto;
        grid-template-rows: auto auto;
        padding-top: 62px;
        overflow: visible;
    }

    .hero .container {
        align-items: flex-start;
        padding-top: 12px;
        padding-bottom: 18px;
    }

    .hero-content {
        max-width: 560px;
    }

    .hero-badge {
        padding: 7px 14px;
        margin-bottom: 10px;
        font-size: 0.82rem;
    }

    .hero-title-new {
        font-size: clamp(2.4rem, 3.5vw, 3.2rem);
        line-height: 1;
        margin-bottom: 10px;
    }

    .script-text {
        font-size: clamp(2rem, 3vw, 2.45rem);
        margin-top: 4px;
    }

    .hero-subtitle-new {
        max-width: 520px;
        font-size: 0.98rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .hero-actions-new {
        gap: 14px;
        margin-bottom: 14px;
    }

    .btn-yellow-large,
    .btn-video {
        padding: 10px 18px;
        font-size: 0.92rem;
    }

    .hero-checkmarks {
        gap: 8px;
        font-size: 0.92rem;
    }

    .trust-banner {
        padding: 10px 0;
    }
}

@media (max-width: 900px) {
    .trust-banner {
        padding: 32px 0;
    }

    .trust-banner .container {
        flex-direction: column;
        gap: 22px;
        align-items: center;
        text-align: center;
    }

    .trust-item {
        white-space: normal;
        text-align: center;
        justify-content: center;
        width: 100%;
        font-size: 1rem;
        padding: 2px 0;
    }
}

@media (max-width: 1024px) {
    .why-it-matters {
        padding: 76px 0 88px;
    }

    .why-title {
        margin-bottom: 30px;
    }

    .why-visual {
        overflow: visible;
    }

    .why-grid {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        transform: none;
        width: auto;
        max-width: none;
        margin: 22px 0 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .why-it-matters {
        padding: 64px 0 74px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-card {
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 14px;
        padding: 18px 0;
    }

    .why-icon {
        width: 38px;
        height: 38px;
        font-size: 0.82rem;
    }
}

/* Final requested homepage order polish */
.hero-actions-new {
    align-items: center;
}

.lost-pet-problem {
    background: #fff7f2;
}

.lost-pet-container {
    max-width: 1440px;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
}

.lost-pet-image {
    width: 100%;
    min-height: clamp(420px, 42vw, 640px);
    border-radius: 28px;
}

.lost-pet-copy h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.04;
}

.lost-pet-lead {
    margin-bottom: 12px;
}

.lost-pet-text {
    color: #1e293b;
}

.how-step-card {
    background: rgba(255, 250, 240, 0.08);
    border: 1px solid rgba(255, 250, 240, 0.14);
    padding: 10px;
    border-radius: 34px;
}

.how-photo-frame {
    height: clamp(320px, 30vw, 410px);
    border-radius: 28px;
}

.how-step-copy {
    padding: 18px 8px 8px;
}

.how-step-copy h3 {
    font-size: clamp(1.18rem, 1.5vw, 1.45rem);
    font-weight: 900;
}

.how-video-cta p {
    font-size: clamp(1rem, 1.25vw, 1.16rem);
    font-weight: 650;
}

.products {
    background: #E60936;
}

.products-grid {
    gap: clamp(28px, 2.4vw, 38px);
}

.products .product-card {
    background: #fffdf8 !important;
    border-radius: 30px;
    box-shadow: 0 18px 48px rgba(73, 9, 22, 0.14);
}

.more-card {
    background: rgba(13, 20, 31, 0.76);
    border: 1px solid rgba(255, 250, 240, 0.34);
    box-shadow: 0 34px 96px rgba(2, 10, 18, 0.34);
}

.more-card::before {
    background: rgba(4, 9, 16, 0.34);
    opacity: 1;
}

.more-than-phone h2,
.more-list li {
    color: #fffaf2;
}

.more-list {
    gap: 12px;
}

.more-list li {
    margin-bottom: 14px;
    line-height: 1.35;
}

.more-list li i {
    background: #13b981;
    color: #fffaf2;
}

.safety {
    background: #FFF1E4;
}

.specs-section {
    background: #FFF7F2;
}

.spec-card {
    background: #fffdf8;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.faq {
    padding-top: 92px;
    padding-bottom: 104px;
}

.faq-grid {
    gap: 18px;
}

.final-cta-strip {
    line-height: normal;
    background: #E60936;
    padding: clamp(46px, 6vw, 76px) 4%;
}

.final-cta-strip .strip-container {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.final-cta-strip h2 {
    margin: 0;
    color: #fffaf2;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.05;
    max-width: 760px;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 auto;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: #fffaf2;
    color: #111827;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(73, 9, 22, 0.18);
}

@media (max-width: 1024px) {
    .lost-pet-container {
        grid-template-columns: 1fr;
    }

    .lost-pet-copy {
        max-width: 760px;
    }
}

@media (max-width: 768px) {
    .hero-actions-new {
        align-items: stretch;
    }

    .hero-actions-new a {
        justify-content: center;
    }

    .lost-pet-image {
        min-height: 300px;
        border-radius: 22px;
    }

    .products-grid,
    .reviews-grid {
        gap: 22px;
    }

    .more-card {
        padding: 48px 24px;
    }

    .final-cta-strip .strip-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Lost pet section full-width image treatment */
.lost-pet-problem {
    min-height: clamp(620px, 72vh, 820px);
    padding: clamp(86px, 9vw, 136px) 4%;
    background: url('/assets/home-v2/optimized/Secondsec-bg.jpg') left center / cover no-repeat;
    display: flex;
    align-items: center;
}

.lost-pet-problem::before,
.lost-pet-problem::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: clamp(360px, 30vw, 520px);
    display: block;
    pointer-events: none;
    z-index: 0;
}

.lost-pet-problem::before {
    background: linear-gradient(90deg, rgba(8, 15, 28, 0) 0%, rgba(8, 15, 28, 0.38) 14%, rgba(8, 15, 28, 0.72) 38%, rgba(8, 15, 28, 0.9) 100%);
}

.lost-pet-problem::after {
    display: none;
}

.lost-pet-container {
    width: min(1440px, 100%);
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lost-pet-copy {
    width: min(520px, 100%);
    max-width: 520px;
    padding: clamp(24px, 3vw, 42px) 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.58);
}

.lost-pet-kicker {
    background: rgba(8, 15, 28, 0.48);
    color: #fffaf2;
}

.lost-pet-copy h2,
.lost-pet-lead,
.lost-pet-text {
    color: #fffaf2;
}

.lost-pet-text {
    color: rgba(255, 250, 242, 0.86);
    max-width: 46ch;
}

@media (max-width: 768px) {
    .lost-pet-problem {
        min-height: auto;
        padding: 420px 5% 54px;
        background:
            url('/assets/home-v2/optimized/Secondsec-bg.jpg') left top / auto 460px no-repeat,
            #101827;
        align-items: flex-end;
    }

    .lost-pet-problem::before {
        inset: 220px 0 0 0;
        background: linear-gradient(180deg, rgba(16, 24, 39, 0) 0%, rgba(16, 24, 39, 0.82) 45%, rgba(16, 24, 39, 0.96) 100%);
    }

    .lost-pet-container {
        justify-content: center;
    }

    .lost-pet-copy {
        padding: 28px 0;
        border-radius: 0;
    }
}

/* Product card spacing refinement */
.products {
    background: #E91645;
}

.products-grid {
    gap: clamp(26px, 2.2vw, 34px);
}

.products .product-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 18px 18px 20px;
    background: #ffffff !important;
    border: 0;
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(88, 12, 28, 0.14);
}

.products .product-image {
    margin: 0 auto 16px;
    aspect-ratio: 1 / 0.74;
    border-radius: 22px;
    background: #ffffff;
}

.products .product-card h3 {
    min-height: 0;
    margin: 0 0 8px;
    font-size: 1.14rem;
    line-height: 1.24;
}

.products .product-meta {
    margin: 0 0 18px;
    color: #475569;
    line-height: 1.35;
}

.products .product-buy-row {
    margin-top: auto;
}

.products .product-price,
.products .product-cart-btn {
    color: #E91645;
}

/* Text-only gradient for lost pet section */
.lost-pet-problem::before,
.lost-pet-problem::after {
    display: none !important;
}

.lost-pet-copy {
    position: relative;
    isolation: isolate;
}

.lost-pet-copy::before {
    content: '';
    position: absolute;
    inset: -28px -42px -30px -34px;
    border-radius: 28px;
    background: linear-gradient(90deg, rgba(8, 15, 28, 0.86) 0%, rgba(8, 15, 28, 0.66) 58%, rgba(8, 15, 28, 0.16) 100%);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .lost-pet-copy::before {
        inset: -22px -18px -24px;
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(8, 15, 28, 0.86) 0%, rgba(8, 15, 28, 0.72) 100%);
    }
}

/* Restore original dog image strip before footer */
.see-you-soon-strip:not(.final-cta-strip) {
    padding: 0;
    background: #fdf6f0;
    line-height: 0;
}

.see-you-soon-strip:not(.final-cta-strip) .strip-container {
    max-width: none;
    width: 100%;
    display: block;
    overflow: hidden;
}

.see-you-soon-strip:not(.final-cta-strip) img {
    width: 100%;
    height: auto;
    display: block;
}

/* Zero Hassle cards inside image section */
.why-title {
    color: #c0265a;
}

.why-icon {
    font-size: 1rem;
    letter-spacing: 0;
}

.why-grid {
    grid-template-columns: repeat(5, minmax(140px, 1fr));
    gap: clamp(14px, 1.6vw, 22px);
}

.why-card {
    display: flex;
    min-height: 126px;
    padding: 22px 18px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    border: 0;
    border-radius: 22px;
}

.why-card:nth-child(1) {
    background: #68c7e7;
}

.why-card:nth-child(2) {
    background: #ffc08b;
}

.why-card:nth-child(3) {
    background: #80cf98;
}

.why-card:nth-child(4) {
    background: #bea6e6;
}

.why-card:nth-child(5) {
    background: #fb9caf;
}

.why-card h4 {
    margin: 0;
    color: #101827;
    font-size: 0.98rem;
    line-height: 1.15;
}

.why-card p {
    display: none;
}

.why-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.58);
    color: #101827;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Compact Zero Hassle feature tiles */
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    gap: clamp(16px, 1.8vw, 26px);
    margin-top: 26px;
}

.why-card {
    position: relative;
    min-height: 132px;
    padding: 24px 18px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(92, 33, 53, 0.10);
    text-align: center;
}

.why-card::after {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.06);
}

.why-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: rgba(255, 255, 255, 0.62);
    color: #102235;
    font-size: 1rem;
    box-shadow: none;
    grid-row: auto;
}

.why-card h4 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #0f172a;
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: 900;
    line-height: 1.1;
}

.why-card p {
    display: none !important;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: 112px;
    }
}

/* Specifications image and alignment polish */
.specs-container {
    display: grid;
    grid-template-columns: minmax(420px, 0.9fr) minmax(540px, 1fr);
    align-items: center;
    gap: clamp(42px, 5vw, 72px);
}

.specs-image {
    max-width: none;
    width: 100%;
}

.specs-image img {
    width: 100%;
    min-height: clamp(300px, 28vw, 430px);
    object-fit: cover;
    border-radius: 30px;
}

.specs-content {
    text-align: left;
}

.specs-title {
    text-align: left;
    margin-left: 0;
}

.specs-grid {
    justify-items: stretch;
}

@media (max-width: 1024px) {
    .specs-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .specs-content,
    .specs-title {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .specs-image img {
        min-height: 260px;
    }
}

/* Full image specifications section */
.specs-section {
    padding: clamp(60px, 6vw, 100px) 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Colorful floating elements */
.specs-deco {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

.specs-deco-1 {
    color: #fecaca;
    top: 15%;
    left: 6%;
    font-size: 3rem;
    transform: rotate(-15deg);
}

.specs-deco-2 {
    color: #fed7aa;
    bottom: 12%;
    left: 14%;
    font-size: 3.5rem;
    transform: rotate(20deg);
}

.specs-deco-3 {
    color: #bbf7d0;
    top: 12%;
    left: 38%;
    font-size: 2rem;
    transform: rotate(10deg);
}

.specs-deco-4 {
    color: #bfdbfe;
    bottom: 20%;
    left: 40%;
    font-size: 2.8rem;
    transform: rotate(-25deg);
}

.specs-deco-5 {
    color: #e9d5ff;
    top: 50%;
    left: -2%;
    font-size: 5rem;
    transform: rotate(15deg);
    opacity: 0.4;
}

.specs-section::before,
.specs-section::after {
    display: none;
}

.specs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.specs-image-box {
    flex: 1;
    max-width: 540px;
    background: linear-gradient(145deg, #ffffff, #fcfafc);
    border-radius: 40px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1.5px solid #dcd0ef;
    box-shadow: 0 24px 60px rgba(220, 208, 239, 0.4), inset 0 0 0 4px rgba(255, 255, 255, 0.5);
    margin-left: auto;
}

.specs-image-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

.specs-content {
    width: max-content;
    max-width: 90vw;
}

.specs-title {
    margin-bottom: 24px;
    text-align: left;
    font-size: clamp(2.2rem, 4vw, 3rem);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 16px;
}

.spec-card {
    min-width: 240px;
    min-height: auto;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

@media (max-width: 900px) {
    .specs-section {
        min-height: auto;
        padding: 56px 5%;
        background-color: #ffffff;
    }

    .specs-container {
        flex-direction: column-reverse;
        justify-content: center;
        gap: 30px;
    }

    .specs-image-box {
        margin-left: 0;
        width: 100%;
        max-width: 400px;
        padding: 15px;
    }

    .specs-content {
        width: 100%;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }
}

@media (max-width: 640px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile hero image and alignment */
@media (max-width: 768px) {
    .hero {
        min-height: 100svh !important;
        height: auto;
        aspect-ratio: unset;
        padding-top: 60px;
        background-color: #2e8bd6;
        background-image: image-set(
            url('/assets/home-v2/optimized/hero-image-new-phone-1419.avif') type('image/avif'),
            url('/assets/home-v2/optimized/hero-image-new-phone-bg.jpg') type('image/jpeg')
        ) !important;
        background-size: cover !important;
        background-position: center bottom !important;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
    }

    .hero .container {
        align-items: flex-start;
        justify-content: center;
        min-height: auto;
        padding-top: 1vh;
        padding-bottom: 1vh;
        flex: 1;
    }

    .hero-content {
        width: min(100%, 430px);
        max-width: 430px;
        text-align: center;
        padding: 0 10px;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }

    .hero-badge {
        display: none !important;
    }

    .hero-title-new {
        font-size: 2.8rem;
        line-height: 1.05;
        margin-bottom: 2px;
        color: #ffffff;
        text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    }

    .script-text {
        font-size: 2.6rem;
        display: block;
        margin-bottom: 24px;
        color: #FFD100;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    }

    .hero-subtitle-new {
        display: none !important;
    }

    .hero-actions-new {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-bottom: 24px;
    }

    .btn-yellow-large,
    .btn-video {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1.05rem;
    }
    
    .btn-video {
        background: rgba(255, 255, 255, 0.9) !important;
        color: #0f172a !important;
        border: none !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
    }

    .hero-checkmarks {
        gap: 8px;
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-checkmarks span {
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 6px 14px;
        backdrop-filter: blur(8px);
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
}

/* More than phone small polish */
.more-card {
    background: rgba(14, 22, 34, 0.78);
}

.more-card::after {
    content: '';
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19, 185, 129, 0.34) 0%, rgba(19, 185, 129, 0.13) 36%, rgba(19, 185, 129, 0) 70%);
    pointer-events: none;
}

.more-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(19, 185, 129, 0.16);
    color: #bdf8df;
    font-size: 0.86rem;
    font-weight: 800;
}

.more-summary {
    max-width: 48ch;
    margin: -16px 0 26px;
    color: rgba(255, 250, 242, 0.78);
    font-size: clamp(0.98rem, 1.15vw, 1.1rem);
    font-weight: 600;
    line-height: 1.55;
}

.more-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.08);
}

.more-list li:last-child {
    border-bottom: 0;
}

.phone-image-wrapper {
    position: relative;
}

.phone-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 12% -22% 8%;
    border-radius: 42px;
    background: linear-gradient(145deg, rgba(19, 185, 129, 0.28), rgba(255, 250, 242, 0.08));
    filter: blur(28px);
}

.product-phone-img {
    position: relative;
    z-index: 1;
}

/* Final Mobile Polish - Grid and Spacing */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 10px !important;
    }

    .products .product-card {
        padding: 12px 10px 14px !important;
        border-radius: 20px !important;
    }

    .products .product-card h3 {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
    }

    .products .product-meta {
        font-size: 0.7rem !important;
        margin-bottom: 12px !important;
    }

    .products .product-price {
        font-size: 1rem !important;
    }

    .products .product-cart-btn {
        font-size: 0.8rem !important;
        padding: 6px 10px !important;
    }

    .products .product-cart-btn i {
        display: none !important;
    }

    /* Fix custom tag card on mobile */
    .custom-tag-card {
        padding: 20px 10px !important;
    }

    .custom-tag-icon {
        font-size: 2rem !important;
        margin-bottom: 8px !important;
    }

    .custom-tag-title {
        font-size: 0.9rem !important;
        margin-bottom: 4px !important;
    }

    .custom-tag-text {
        font-size: 0.72rem !important;
        margin-bottom: 12px !important;
    }

    .custom-tag-btn {
        font-size: 0.78rem !important;
        padding: 8px 10px !important;
        white-space: nowrap;
    }

    /* Small top padding on reviews so it looks like a section */
    .reviews {
        padding-top: 6px !important;
    }

    /* Reviews 2-column grid on mobile */
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .review-card {
        padding: 14px 12px !important;
        border-radius: 18px !important;
    }

    .review-pet {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto 10px !important;
    }

    .review-title {
        font-size: 0.82rem !important;
        margin-bottom: 4px !important;
    }

    .review-text {
        font-size: 0.72rem !important;
        line-height: 1.4 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 4 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .review-author {
        font-size: 0.72rem !important;
        margin-top: 6px !important;
    }

    .review-stars {
        font-size: 0.7rem !important;
        margin-bottom: 4px !important;
    }

    .reviews-hero-image {
        margin-top: 0 !important;
        margin-bottom: 20px !important;
    }
}

/* Metal Tags Section */
.metal-tags-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
    position: relative;
    overflow: hidden;
}

.metal-tags-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.metal-tags-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 50%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(192, 192, 192, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.metal-tags-section .section-header h2 {
    color: #ffffff;
}

.metal-tags-section .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.metal-tags-section .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.metal-tags-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.metal-tags-section .product-card {
    border: 0 !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25) !important;
}

.metal-tags-section .product-price,
.metal-tags-section .product-cart-btn {
    color: #1a1a2e !important;
}

.metal-tags-section .product-cart-btn:hover {
    color: #D4AF37 !important;
}

/* Strikethrough old price */
.price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-weight: 500;
    font-size: 0.85em;
    margin-right: 4px;
}

/* Amazon Verification Link in Reviews */
.review-amazon-link {
    position: absolute;
    bottom: 15px;
    right: 18px;
    color: #ff9900;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 5;
    opacity: 0.5;
}

.review-amazon-link:hover {
    transform: translateY(-2px);
    opacity: 1;
}

@media (max-width: 768px) {
    .review-amazon-link {
        bottom: 12px;
        right: 14px;
        font-size: 1.1rem;
    }
}

/* Amazon Verified Pill (real reviews only) */
.review-amazon-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.2s ease;
}
.review-amazon-pill i { color: #b8a88a; font-size: 0.85rem; }
.review-amazon-pill:hover { color: #475569; }
.review-amazon-pill:hover i { color: #ff9900; }

/* === Lost Pet Problem Section v3 — editorial, stats-led === */
.lost-pet-problem {
    position: relative;
    min-height: clamp(660px, 82vh, 920px);
    padding: clamp(72px, 7vw, 112px) clamp(20px, 4vw, 64px);
    background: #0b0e16 url('/assets/home-v2/optimized/Secondsec-bg.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fffaf2;
}

.lost-pet-problem::before,
.lost-pet-problem::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    display: block !important;
}

/* Soft horizontal fade so the right side reads cleanly */
.lost-pet-problem::before {
    background: linear-gradient(90deg, rgba(8,11,20,0) 0%, rgba(8,11,20,0) 30%, rgba(8,11,20,0.55) 55%, rgba(8,11,20,0.86) 100%);
}

.lost-pet-problem::after {
    background: linear-gradient(180deg, rgba(8,11,20,0.18) 0%, rgba(8,11,20,0) 30%);
}

.lost-pet-container {
    width: min(1320px, 100%);
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Solid editorial card — flat, no glass blur, single accent rule on top */
.lost-pet-copy {
    width: min(640px, 100%);
    max-width: 640px;
    padding: clamp(32px, 3vw, 48px) clamp(28px, 3vw, 44px) clamp(28px, 3vw, 40px);
    background: rgba(11, 14, 22, 0.92);
    border: 0;
    border-top: 3px solid #FF3D68;
    border-radius: 4px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    text-shadow: none;
    isolation: isolate;
}

.lost-pet-copy::before {
    display: none !important;
    content: none;
}

/* Plain editorial label — small caps, no pill */
.lost-pet-kicker {
    display: block;
    margin: 0 0 22px;
    padding: 0;
    background: none;
    border: 0;
    color: rgba(255, 250, 242, 0.62);
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.4;
}

.lost-pet-kicker i {
    display: none;
}

.lost-pet-copy h2 {
    margin: 0 0 36px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 3.4vw, 2.85rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #fffaf2;
}

.lost-pet-highlight {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: currentColor;
    color: #fffaf2;
    font-style: italic;
    font-weight: 700;
}

/* Stats — editorial, BIG numbers, divider rules between them */
.lost-pet-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0 0 32px;
    border-top: 1px solid rgba(255, 250, 242, 0.14);
    border-bottom: 1px solid rgba(255, 250, 242, 0.14);
}

.lost-pet-stat {
    padding: 22px 18px 22px 0;
    background: none;
    border: 0;
    border-right: 1px solid rgba(255, 250, 242, 0.14);
    border-radius: 0;
    transition: none;
}

.lost-pet-stat:nth-child(2) {
    padding-left: 18px;
}

.lost-pet-stat:last-child {
    border-right: 0;
    padding-left: 18px;
    padding-right: 0;
}

.lost-pet-stat:hover {
    background: none;
    transform: none;
}

.lost-pet-stat-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1;
    color: #fffaf2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.lost-pet-stat-label {
    font-size: 0.84rem;
    line-height: 1.45;
    color: rgba(255, 250, 242, 0.7);
    font-weight: 400;
}

/* Third stat highlighted with accent color on number only */
.lost-pet-stat-accent {
    background: none;
    border-color: rgba(255, 250, 242, 0.14);
}

.lost-pet-stat-accent .lost-pet-stat-num {
    color: #FF6B86;
}

.lost-pet-stat-accent .lost-pet-stat-label {
    color: rgba(255, 250, 242, 0.85);
}

/* Solution line — quiet, indented, italic, no card */
.lost-pet-solution {
    display: block;
    margin: 0 0 28px;
    padding: 0;
    background: none;
    border: 0;
    color: rgba(255, 250, 242, 0.92);
    font-size: 1rem;
    line-height: 1.55;
    max-width: 52ch;
    font-weight: 400;
}

.lost-pet-solution i {
    display: none;
}

/* CTA — flat solid, no gradient */
.lost-pet-cta-row {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.lost-pet-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 2px;
    background: #FF3D68;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: none;
    transition: background 0.2s ease;
    border: 0;
}

.lost-pet-btn:hover {
    transform: none;
    box-shadow: none;
    background: #E11D48;
}

.lost-pet-btn i {
    font-size: 0.82rem;
    transition: transform 0.2s ease;
}

.lost-pet-btn:hover i {
    transform: translateX(3px);
}

.lost-pet-source {
    font-size: 0.72rem;
    color: rgba(255, 250, 242, 0.42);
    letter-spacing: 0.02em;
    line-height: 1.4;
    max-width: 240px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 980px) {
    .lost-pet-problem {
        min-height: auto;
        padding: clamp(360px, 56vw, 440px) 5% 56px;
        background:
            url('/assets/home-v2/optimized/Secondsec-bg.jpg') center 22% / cover no-repeat,
            #0b0e16;
        align-items: flex-end;
    }

    .lost-pet-problem::before {
        background: linear-gradient(180deg, rgba(8,11,20,0) 0%, rgba(8,11,20,0) 35%, rgba(8,11,20,0.7) 60%, rgba(8,11,20,0.96) 100%);
    }

    .lost-pet-container {
        justify-content: center;
    }

    .lost-pet-copy {
        width: 100%;
        max-width: 640px;
    }
}

@media (max-width: 640px) {
    .lost-pet-stats {
        grid-template-columns: 1fr;
        border-bottom: 0;
    }

    .lost-pet-stat {
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 250, 242, 0.14);
    }

    .lost-pet-stat:nth-child(2),
    .lost-pet-stat:last-child {
        padding-left: 0;
    }

    .lost-pet-cta-row {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .lost-pet-btn {
        justify-content: center;
    }

    .lost-pet-source {
        max-width: 100%;
        text-align: left;
    }

    .lost-pet-copy h2 {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
    }

    .lost-pet-stat-num {
        font-size: 1.85rem;
    }
}


/* === Lost Pet Problem — card style variants (data-style on .lost-pet-copy) === */

/* Warm cream — default, matches the warm pet-friendly tone of the site */
.lost-pet-copy[data-style="warm-cream"] {
    background: #FDF6EE;
    border-top: 0;
    border-radius: 24px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(0, 0, 0, 0.18);
    color: #2B1812;
    overflow: hidden;
    position: relative;
}

.lost-pet-copy[data-style="warm-cream"]::after {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 1.5rem;
    color: #FF3D68;
    opacity: 0.18;
    transform: rotate(-12deg);
}

.lost-pet-copy[data-style="warm-cream"] .lost-pet-kicker {
    color: #FF3D68;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.lost-pet-copy[data-style="warm-cream"] .lost-pet-kicker::before {
    content: '\f111';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: inline-block;
    width: 6px;
    height: 6px;
    font-size: 0.4rem;
    margin-right: 10px;
    transform: translateY(-3px);
}

.lost-pet-copy[data-style="warm-cream"] h2 {
    color: #2B1812;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.1rem, 3.6vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
}

.lost-pet-copy[data-style="warm-cream"] .lost-pet-highlight {
    font-family: 'Dancing Script', cursive;
    font-style: normal;
    font-weight: 700;
    color: #FF3D68;
    font-size: 1.15em;
    line-height: 0.9;
    display: inline-block;
}

.lost-pet-copy[data-style="warm-cream"] .lost-pet-stats {
    border-top: 1px dashed rgba(43, 24, 18, 0.18);
    border-bottom: 1px dashed rgba(43, 24, 18, 0.18);
}

.lost-pet-copy[data-style="warm-cream"] .lost-pet-stat {
    border-right: 1px dashed rgba(43, 24, 18, 0.18);
}

.lost-pet-copy[data-style="warm-cream"] .lost-pet-stat:last-child {
    border-right: 0;
}

.lost-pet-copy[data-style="warm-cream"] .lost-pet-stat-num {
    color: #2B1812;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.7rem, 2.7vw, 2.3rem);
}

.lost-pet-copy[data-style="warm-cream"] .lost-pet-stat-label {
    color: rgba(43, 24, 18, 0.72);
}

.lost-pet-copy[data-style="warm-cream"] .lost-pet-stat-accent .lost-pet-stat-num {
    color: #FF3D68;
}

.lost-pet-copy[data-style="warm-cream"] .lost-pet-stat-accent .lost-pet-stat-label {
    color: rgba(43, 24, 18, 0.92);
}

.lost-pet-copy[data-style="warm-cream"] .lost-pet-solution {
    color: rgba(43, 24, 18, 0.88);
    font-family: 'Outfit', sans-serif;
    padding: 14px 18px;
    background: rgba(255, 61, 104, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.lost-pet-copy[data-style="warm-cream"] .lost-pet-solution i {
    display: inline-block;
    color: #FF3D68;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.lost-pet-copy[data-style="warm-cream"] .lost-pet-btn {
    border-radius: 999px;
    padding: 14px 28px;
}

.lost-pet-copy[data-style="warm-cream"] .lost-pet-source {
    color: rgba(43, 24, 18, 0.55);
}

/* Soft peach variant */
.lost-pet-copy[data-style="peach"] {
    background: linear-gradient(165deg, #FFE8DD 0%, #FFD9C7 100%);
    border-top: 0;
    border-radius: 24px;
    color: #4A1F12;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
}

.lost-pet-copy[data-style="peach"] .lost-pet-kicker {
    color: #C2410C;
    font-weight: 600;
}

.lost-pet-copy[data-style="peach"] h2,
.lost-pet-copy[data-style="peach"] .lost-pet-stat-num {
    color: #4A1F12;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.lost-pet-copy[data-style="peach"] .lost-pet-highlight {
    color: #FF3D68;
    font-style: italic;
}

.lost-pet-copy[data-style="peach"] .lost-pet-stats {
    border-color: rgba(74, 31, 18, 0.18);
}

.lost-pet-copy[data-style="peach"] .lost-pet-stat {
    border-right-color: rgba(74, 31, 18, 0.18);
}

.lost-pet-copy[data-style="peach"] .lost-pet-stat-label,
.lost-pet-copy[data-style="peach"] .lost-pet-solution {
    color: rgba(74, 31, 18, 0.78);
}

.lost-pet-copy[data-style="peach"] .lost-pet-stat-accent .lost-pet-stat-num {
    color: #FF3D68;
}

.lost-pet-copy[data-style="peach"] .lost-pet-btn {
    border-radius: 999px;
}

.lost-pet-copy[data-style="peach"] .lost-pet-source {
    color: rgba(74, 31, 18, 0.55);
}

/* Pink (brand) variant — saturated, white text */
.lost-pet-copy[data-style="pink"] {
    background: linear-gradient(165deg, #FF3D68 0%, #E11D48 100%);
    border-top: 0;
    border-radius: 24px;
    color: #FFF;
    box-shadow: 0 30px 60px -20px rgba(225, 29, 72, 0.5);
}

.lost-pet-copy[data-style="pink"] .lost-pet-kicker {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.lost-pet-copy[data-style="pink"] h2 {
    color: #FFF;
    font-family: 'Playfair Display', serif;
}

.lost-pet-copy[data-style="pink"] .lost-pet-highlight {
    color: #FFE39F;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 1.15em;
    font-style: normal;
}

.lost-pet-copy[data-style="pink"] .lost-pet-stats {
    border-color: rgba(255, 255, 255, 0.28);
}

.lost-pet-copy[data-style="pink"] .lost-pet-stat {
    border-right-color: rgba(255, 255, 255, 0.28);
}

.lost-pet-copy[data-style="pink"] .lost-pet-stat-num {
    color: #FFF;
    font-family: 'Playfair Display', serif;
}

.lost-pet-copy[data-style="pink"] .lost-pet-stat-label,
.lost-pet-copy[data-style="pink"] .lost-pet-solution {
    color: rgba(255, 255, 255, 0.85);
}

.lost-pet-copy[data-style="pink"] .lost-pet-stat-accent .lost-pet-stat-num {
    color: #FFE39F;
}

.lost-pet-copy[data-style="pink"] .lost-pet-btn {
    background: #FFF;
    color: #E11D48;
    border-radius: 999px;
}

.lost-pet-copy[data-style="pink"] .lost-pet-btn:hover {
    background: #FFE39F;
    color: #2B1812;
}

.lost-pet-copy[data-style="pink"] .lost-pet-source {
    color: rgba(255, 255, 255, 0.65);
}

/* Mobile tweaks */
@media (max-width: 640px) {
    .lost-pet-copy[data-style="warm-cream"] .lost-pet-stat,
    .lost-pet-copy[data-style="peach"] .lost-pet-stat,
    .lost-pet-copy[data-style="pink"] .lost-pet-stat {
        border-right: 0;
        border-bottom: 1px dashed rgba(43, 24, 18, 0.18);
    }
    .lost-pet-copy[data-style="pink"] .lost-pet-stat {
        border-bottom-color: rgba(255, 255, 255, 0.28);
    }
}


/* === Metal Collection — three variants, soft corners === */
.metal-collection {
    position: relative;
    background: #0E0D0B;
    color: #E9E2D5;
    padding: 88px clamp(20px, 4vw, 56px) 104px;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

.metal-collection .mc-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(180deg, rgba(14,13,11,0.82) 0%, rgba(14,13,11,0.55) 40%, rgba(14,13,11,0.78) 100%),
        url('/assets/home-v2/optimized/premium-banner-bg.jpg');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    z-index: 0;
}
.metal-collection .mc-grain::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 12% 8%, rgba(201, 165, 92, 0.10) 0%, transparent 45%),
        radial-gradient(ellipse at 88% 92%, rgba(201, 165, 92, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.mc-container {
    position: relative;
    z-index: 1;
    width: min(1320px, 100%);
    margin: 0 auto;
}

/* Show only the active variant */
.mc-variant { display: none; }
.metal-collection[data-variant="compact"] .mc-variant-compact,
.metal-collection[data-variant="showcase"] .mc-variant-showcase,
.metal-collection[data-variant="trio"] .mc-variant-trio { display: block; }

/* Shared type tokens */
.mc-eyebrow {
    display: inline-block;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C9A55C;
    font-weight: 500;
    margin-bottom: 16px;
}
.mc-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #F5EFE2;
    margin: 0 0 14px;
}
.mc-title em { font-style: italic; color: #C9A55C; }
.mc-sub {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(233, 226, 213, 0.65);
    max-width: 56ch;
}

/* Shared CTA */
.mc-cellar-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: transparent;
    border: 1px solid rgba(201, 165, 92, 0.55);
    border-radius: 999px;
    color: #C9A55C;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.mc-cellar-cta:hover { background: #C9A55C; color: #0E0D0B; border-color: #C9A55C; }
.mc-cellar-cta:hover span { transform: translateX(3px); }
.mc-cellar-cta span { transition: transform 0.3s ease; }

/* === Variant A: Compact gallery — matches acrylic card sizing === */
.mc-variant-compact .mc-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 44px;
}
.mc-variant-compact .mc-sub { margin-left: auto; margin-right: auto; }

.mc-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2vw, 30px);
    margin-bottom: 36px;
}

.mc-tile {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-radius: 38px;
    padding: 14px 14px 22px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 18px 38px rgba(0, 0, 0, 0.45);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.mc-tile:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(201, 165, 92, 0.45);
}
.mc-tile:hover {
    transform: translateY(-6px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 28px 56px rgba(0, 0, 0, 0.55);
}

.mc-tile-photo {
    border-radius: 28px;
    aspect-ratio: 1 / 0.95;
    margin: 0 0 20px;
    position: relative;
    background: #FFFFFF !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.mc-tile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
    border-radius: 28px;
    transition: transform 0.5s ease;
}
.mc-tile:hover .mc-tile-photo img { transform: scale(1.04); }

.mc-tile h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.22rem;
    font-weight: 600;
    color: #F5EFE2;
    margin: 0 0 6px;
    letter-spacing: -0.005em;
    padding: 0 8px;
    line-height: 1.25;
}
.mc-tile-meta {
    margin: 0 0 22px;
    padding: 0 8px;
    font-size: 0.78rem;
    color: rgba(233, 226, 213, 0.55);
    letter-spacing: 0.02em;
}

.mc-tile-buy {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
}
.mc-tile-price {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.18rem;
    color: #F5EFE2;
}
.mc-tile-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: #C9A55C;
    color: #0E0D0B;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
}
.mc-tile-cart:hover {
    background: #F5EFE2;
    transform: translateY(-1px);
}
.mc-tile-cart i { font-size: 0.78rem; }

/* tone backdrops apply to inner photo wells */
/* tone backdrops removed — product photo white bg shows through */

.mc-foot-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    padding: 22px 28px;
    background: rgba(20, 18, 14, 0.7);
    border: 1px solid rgba(201, 165, 92, 0.18);
    border-radius: 28px;
}
.mc-engrave-chip {
    font-size: 0.86rem;
    color: rgba(233, 226, 213, 0.85);
    letter-spacing: 0.02em;
}
.mc-engrave-chip:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C9A55C;
    margin-right: 10px;
    transform: translateY(-2px);
}

/* === Variant B: Showcase strip === */
.mc-show {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 60px);
    align-items: center;
    background: rgba(20, 18, 14, 0.55);
    border: 1px solid rgba(201, 165, 92, 0.18);
    border-radius: 36px;
    padding: clamp(24px, 3vw, 44px);
    overflow: hidden;
}
.mc-show-photo {
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background 0.5s ease;
}
.mc-show-photo img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
    transition: opacity 0.3s ease;
}
.mc-show-text { padding: 8px 0; }
.mc-show-swatches {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0 28px;
}
.mc-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(233, 226, 213, 0.18);
    background: transparent;
    cursor: pointer;
    padding: 3px;
    transition: all 0.25s ease;
}
.mc-swatch span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.mc-swatch-gold span { background: linear-gradient(135deg, #E2C181 0%, #B8893A 100%); }
.mc-swatch-black span { background: linear-gradient(135deg, #2A2A2A 0%, #0A0A0A 100%); }
.mc-swatch-silver span { background: linear-gradient(135deg, #DCDFE3 0%, #888B8E 100%); }
.mc-swatch:hover { border-color: rgba(201, 165, 92, 0.5); }
.mc-swatch.is-active { border-color: #C9A55C; }
.mc-show-label {
    margin-left: 6px;
    font-size: 0.82rem;
    color: rgba(233, 226, 213, 0.72);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.mc-show-meta {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.mc-show-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #F5EFE2;
    font-weight: 600;
}

/* === Variant C: Trio cards === */
.mc-variant-trio .mc-head-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 44px;
}
.mc-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2vw, 26px);
    margin-bottom: 36px;
}
.mc-trio-card {
    text-decoration: none;
    color: inherit;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(20, 18, 14, 0.7);
    border: 1px solid rgba(233, 226, 213, 0.08);
    padding: 0 0 22px;
    text-align: center;
    transition: all 0.4s ease;
}
.mc-trio-card:hover {
    border-color: rgba(201, 165, 92, 0.45);
    transform: translateY(-3px);
}
.mc-trio-photo {
    aspect-ratio: 1 / 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 32px 32px 0 0;
    margin-bottom: 22px;
}
.mc-trio-photo img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.55));
    transition: transform 0.5s ease;
}
.mc-trio-card:hover .mc-trio-photo img { transform: scale(1.05); }
.mc-trio-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #F5EFE2;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.mc-trio-price {
    display: block;
    font-size: 0.84rem;
    color: rgba(201, 165, 92, 0.85);
    letter-spacing: 0.06em;
}
.mc-trio-foot { text-align: center; }

@media (max-width: 880px) {
    .mc-show { grid-template-columns: 1fr; }
    .mc-show-photo { max-width: 380px; margin: 0 auto; }
}
@media (max-width: 720px) {
    .mc-gallery, .mc-trio { grid-template-columns: 1fr; }
    .mc-foot-strip { flex-direction: column; align-items: stretch; }
    .mc-foot-strip .mc-cellar-cta { justify-content: center; }
}


/* Engraved discount strike */
.mc-tile-price s {
    color: rgba(233, 226, 213, 0.32);
    font-size: 0.78rem;
    margin-left: 4px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
}

/* Name pill on engraved tiles */
.mc-name-pill {
    position: absolute;
    bottom: 14px;
    right: 16px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: #F5EFE2;
    padding: 5px 12px;
    border: 1px solid rgba(14, 13, 11, 0.15);
    border-radius: 999px;
    background: rgba(14, 13, 11, 0.78);
    backdrop-filter: blur(6px);
    z-index: 2;
}

/* Bigger, more breathing-room head */
.mc-variant-compact .mc-head {
    margin-bottom: 56px;
}

/* Gallery: 3 cols, 2 rows of 3 */
.mc-gallery {
    grid-template-columns: repeat(3, 1fr);
    row-gap: clamp(28px, 2.6vw, 38px);
}

@media (max-width: 980px) {
    .mc-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .mc-gallery { grid-template-columns: 1fr; }
}

/* === Lost Pet Problem — quiet, editorial pass === */
/* Let the image lead. No card, no pitch — just the problem in a quiet voice. */
.lost-pet-copy.lost-pet-copy--quiet {
    background: rgba(14, 18, 28, 0.28) !important;
    border: 0 !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25) !important;
    padding: clamp(28px, 3vw, 44px) clamp(26px, 2.6vw, 40px) !important;
    border-radius: 22px !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
    backdrop-filter: blur(18px) saturate(1.1);
    width: min(560px, 100%);
    max-width: 560px;
}

.lost-pet-copy.lost-pet-copy--quiet::before,
.lost-pet-copy.lost-pet-copy--quiet::after {
    display: none !important;
    content: none !important;
}

.lost-pet-copy.lost-pet-copy--quiet .lost-pet-kicker {
    display: inline-block;
    background: transparent;
    color: #FFD9A8;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0;
    margin: 0 0 22px;
    border: 0;
}

.lost-pet-copy.lost-pet-copy--quiet .lost-pet-kicker::before,
.lost-pet-copy.lost-pet-copy--quiet .lost-pet-kicker i {
    display: none !important;
    content: none !important;
}

.lost-pet-copy.lost-pet-copy--quiet h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 36px;
    letter-spacing: -0.01em;
}

.lost-pet-copy.lost-pet-copy--quiet .lost-pet-highlight {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #FFD9A8 !important;
    color: #FFD9A8 !important;
    font-style: normal;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}

.lost-pet-copy.lost-pet-copy--quiet .lost-pet-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 44px);
    border-top: 1px solid rgba(255, 250, 242, 0.22);
    border-bottom: 1px solid rgba(255, 250, 242, 0.22);
    padding: clamp(22px, 2.4vw, 30px) 0;
    margin: 0 0 22px;
}

.lost-pet-copy.lost-pet-copy--quiet .lost-pet-stat {
    background: none !important;
    border: 0 !important;
    padding: 0 !important;
}

.lost-pet-copy.lost-pet-copy--quiet .lost-pet-stat-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 5.4vw, 4.6rem);
    line-height: 0.95;
    color: #FFD9A8;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    font-feature-settings: "lnum", "tnum";
}

.lost-pet-copy.lost-pet-copy--quiet .lost-pet-stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.18rem);
    line-height: 1.4;
    color: #ffffff;
    font-weight: 500;
}

.lost-pet-copy.lost-pet-copy--quiet .lost-pet-source {
    display: block;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    white-space: nowrap;
}

.lost-pet-copy.lost-pet-copy--quiet .lost-pet-source a {
    color: #FFD9A8;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    white-space: nowrap;
    transition: color 0.15s ease;
}

.lost-pet-copy.lost-pet-copy--quiet .lost-pet-source a:hover {
    color: #ffffff;
}

@media (max-width: 640px) {
    .lost-pet-copy.lost-pet-copy--quiet .lost-pet-stats {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}


/* === Products section — desaturated, warmer ground === */
.products {
    background: #F4E7D9 !important;
    position: relative;
}

.products::before,
.products::after {
    opacity: 0.5;
}

.products .section-header h2,
.products h2 {
    color: #2B1812 !important;
}

.products .section-header p,
.products .section-subtitle,
.products .products-subtitle {
    color: rgba(43, 24, 18, 0.7) !important;
}

.products .product-card {
    background: #ffffff !important;
    box-shadow: 0 4px 18px rgba(43, 24, 18, 0.06);
}

.products .product-float,
.products .product-float i {
    color: rgba(43, 24, 18, 0.08) !important;
}


/* ============================================================
   === Lost Pet Problem v4 — Editorial "Missing Poster"  ====
   Replaces v3 stats card. The hero image moves INTO the layout
   as a taped-up flyer; the right column tells the story with
   one big visualized stat and a clear bridge to the product.
   Loaded LAST so it overrides earlier .lost-pet-* rules.
   ============================================================ */

.lost-pet-problem.lpv4 {
    position: relative;
    min-height: auto;
    padding: clamp(80px, 9vw, 132px) clamp(20px, 5vw, 72px);
    background: #14110d;
    background-image:
        radial-gradient(ellipse 70% 55% at 78% 30%, rgba(255, 217, 168, 0.06), transparent 60%),
        radial-gradient(ellipse 90% 70% at 15% 110%, rgba(255, 61, 104, 0.05), transparent 65%),
        linear-gradient(180deg, #14110d 0%, #0e0c09 100%);
    display: block;
    overflow: hidden;
    color: #fff7ec;
    isolation: isolate;
}

/* Kill the v3 dark gradients + paw-glyph overlays */
.lost-pet-problem.lpv4::before,
.lost-pet-problem.lpv4::after {
    content: '' !important;
    background: none !important;
    display: none !important;
}

/* Subtle paper-grain noise, baked as inline SVG */
.lost-pet-problem.lpv4 > .lpv4-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.9  0 0 0 0 0.75  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    mix-blend-mode: screen;
    z-index: 0;
}

.lpv4 .lpv4-wrap {
    position: relative;
    z-index: 1;
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}

/* ---------- Left: the MISSING flyer ---------- */
.lpv4 .lpv4-flyer {
    position: relative;
    justify-self: center;
    width: min(440px, 100%);
    transform: rotate(-2.1deg);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55));
}

.lpv4 .lpv4-flyer-card {
    position: relative;
    background: #f4ead7;
    color: #1a1308;
    padding: 22px 22px 18px;
    border-radius: 2px;
    background-image:
        radial-gradient(circle at 20% 8%, rgba(0,0,0,0.06), transparent 35%),
        radial-gradient(circle at 90% 95%, rgba(0,0,0,0.05), transparent 40%);
}

/* Tape pieces */
.lpv4 .lpv4-flyer-tape {
    position: absolute;
    width: 92px;
    height: 22px;
    background: rgba(255, 250, 230, 0.42);
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    z-index: 3;
    backdrop-filter: blur(1px);
}
.lpv4 .lpv4-flyer-tape--tl { top: -10px; left: -18px; transform: rotate(-18deg); }
.lpv4 .lpv4-flyer-tape--br { bottom: -10px; right: -18px; transform: rotate(-12deg); }

.lpv4 .lpv4-flyer-stamp {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    text-align: center;
    color: #c8202a;
    border-top: 3px solid #1a1308;
    border-bottom: 3px solid #1a1308;
    padding: 8px 0 6px;
    margin: 0 0 16px;
    line-height: 1;
    font-feature-settings: "ss01";
}

.lpv4 .lpv4-flyer-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #1a1308;
    margin: 0 0 16px;
}
.lpv4 .lpv4-flyer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.55) contrast(1.05) brightness(0.92);
}
.lpv4 .lpv4-flyer-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 3px),
        linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.15));
    mix-blend-mode: multiply;
}

.lpv4 .lpv4-flyer-meta {
    font-family: 'Outfit', sans-serif;
}

.lpv4 .lpv4-flyer-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(26, 19, 8, 0.35);
}

.lpv4 .lpv4-flyer-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.82rem;
    line-height: 1.5;
    padding: 3px 0;
}
.lpv4 .lpv4-flyer-row span {
    color: rgba(26, 19, 8, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
}
.lpv4 .lpv4-flyer-row b {
    color: #1a1308;
    font-weight: 600;
    text-align: right;
}
.lpv4 .lpv4-flyer-row--warn b {
    color: #c8202a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---------- Right: the editorial copy ---------- */
.lpv4 .lpv4-copy {
    max-width: 580px;
    color: #fff7ec;
}

.lpv4 .lpv4-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #FFD9A8;
    margin: 0 0 28px;
}
.lpv4 .lpv4-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF3D68;
    box-shadow: 0 0 0 4px rgba(255, 61, 104, 0.18);
    animation: lpv4-pulse 2.4s ease-in-out infinite;
}
@keyframes lpv4-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 61, 104, 0.18); }
    50%      { box-shadow: 0 0 0 9px rgba(255, 61, 104, 0.05); }
}

.lpv4 .lpv4-h {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 5.4vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.015em;
    margin: 0 0 26px;
    color: #fff7ec;
    text-wrap: balance;
}
.lpv4 .lpv4-h-soft {
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 247, 236, 0.7);
}
.lpv4 .lpv4-h-em {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: #FFD9A8;
    font-size: 1.05em;
    display: inline-block;
    transform: translateY(0.06em);
}

.lpv4 .lpv4-lede {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    line-height: 1.6;
    color: rgba(255, 247, 236, 0.74);
    margin: 0 0 36px;
    max-width: 48ch;
}

/* ---------- The single, visualized stat ---------- */
.lpv4 .lpv4-bar {
    margin: 0 0 36px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 247, 236, 0.14);
    border-bottom: 1px solid rgba(255, 247, 236, 0.14);
}
.lpv4 .lpv4-bar-cap {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin: 0 0 18px;
    flex-wrap: wrap;
}
.lpv4 .lpv4-bar-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(3.4rem, 6vw, 5rem);
    line-height: 0.9;
    color: #FF3D68;
    letter-spacing: -0.03em;
    font-feature-settings: "lnum", "tnum";
}
.lpv4 .lpv4-bar-num small {
    font-size: 0.5em;
    font-weight: 600;
    color: rgba(255, 61, 104, 0.7);
    margin-left: 4px;
}
.lpv4 .lpv4-bar-label {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.05rem, 1.3vw, 1.22rem);
    font-weight: 500;
    line-height: 1.35;
    color: #fff7ec;
    max-width: 28ch;
}

/* Stacked-bar showing 60% lost / 40% found */
.lpv4 .lpv4-bar-track {
    position: relative;
    height: 14px;
    background: rgba(255, 247, 236, 0.08);
    border-radius: 999px;
    overflow: hidden;
    margin: 0 0 12px;
}
.lpv4 .lpv4-bar-fill {
    position: absolute;
    inset: 0 40% 0 0;            /* 60% wide */
    background: linear-gradient(90deg, #c8202a 0%, #FF3D68 100%);
    border-radius: 999px 0 0 999px;
    box-shadow: 0 0 24px rgba(255, 61, 104, 0.4);
    animation: lpv4-fill 1.6s cubic-bezier(.2,.7,.2,1) both;
    transform-origin: left center;
}
@keyframes lpv4-fill {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}
.lpv4 .lpv4-bar-ticks {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1px;
    pointer-events: none;
}
.lpv4 .lpv4-bar-ticks i {
    width: 1px;
    background: rgba(255, 247, 236, 0.18);
    mix-blend-mode: overlay;
}

.lpv4 .lpv4-bar-legend {
    display: flex;
    gap: 22px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    color: rgba(255, 247, 236, 0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.lpv4 .lpv4-bar-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.lpv4 .lpv4-sw {
    width: 10px;
    height: 10px;
    border-radius: 2px;
}
.lpv4 .lpv4-sw--lost { background: #FF3D68; }
.lpv4 .lpv4-sw--home { background: rgba(255, 247, 236, 0.22); }

/* ---------- Bridge + foot ---------- */
.lpv4 .lpv4-bridge {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 1.7vw, 1.55rem);
    line-height: 1.45;
    color: rgba(255, 247, 236, 0.78);
    font-style: italic;
    margin: 0 0 32px;
    padding-left: 18px;
    border-left: 2px solid #FFD9A8;
}
.lpv4 .lpv4-bridge strong {
    color: #fff7ec;
    font-style: normal;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.lpv4 .lpv4-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: wrap;
}

.lpv4 .lpv4-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    color: #14110d;
    background: #FFD9A8;
    padding: 16px 24px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px -10px rgba(255, 217, 168, 0.6);
}
.lpv4 .lpv4-cta:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px rgba(255, 255, 255, 0.45);
}
.lpv4 .lpv4-cta-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}
.lpv4 .lpv4-cta:hover .lpv4-cta-arrow { transform: translateX(4px); }

.lpv4 .lpv4-source {
    font-family: 'Outfit', sans-serif;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 247, 236, 0.42);
}
.lpv4 .lpv4-source a {
    color: rgba(255, 247, 236, 0.65);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.15s ease;
}
.lpv4 .lpv4-source a:hover { color: #FFD9A8; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .lpv4 .lpv4-wrap {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .lpv4 .lpv4-flyer {
        width: min(360px, 86%);
        transform: rotate(-1.6deg);
    }
    .lpv4 .lpv4-copy { margin: 0 auto; }
}
@media (max-width: 560px) {
    .lost-pet-problem.lpv4 {
        padding: 64px 20px 72px;
    }
    .lpv4 .lpv4-h { font-size: clamp(2rem, 9vw, 2.8rem); }
    .lpv4 .lpv4-flyer-stamp { font-size: 2rem; letter-spacing: 0.24em; }
    .lpv4 .lpv4-bar-cap { gap: 12px; }
    .lpv4 .lpv4-bar-num { font-size: 3rem; }
    .lpv4 .lpv4-foot {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }
    .lpv4 .lpv4-cta { justify-content: center; }
}


/* ============================================================
   === Lost Pet Problem v5 — Hybrid: cinematic puppy +     ===
   === small evidence fragment + minimal copy panel        ===
   Loaded LAST so it overrides v3/v4 rules.
   ============================================================ */

.lost-pet-problem.lpv5 {
    position: relative;
    min-height: clamp(620px, 80vh, 880px);
    padding: clamp(72px, 8vw, 120px) clamp(20px, 5vw, 64px);
    background:
        url('/assets/home-v2/optimized/Secondsec-bg.jpg') center center / cover no-repeat,
        #0a0805;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff7ec;
    isolation: isolate;
}

/* Neutralise v3 ::before/::after */
.lost-pet-problem.lpv5::before,
.lost-pet-problem.lpv5::after {
    content: '' !important;
    background: none !important;
    display: none !important;
}

/* Soft asymmetric scrim — left stays clean for the puppy, right darkens for copy */
.lpv5 .lpv5-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(8, 6, 4, 0)     0%,
            rgba(8, 6, 4, 0)     38%,
            rgba(8, 6, 4, 0.45) 60%,
            rgba(8, 6, 4, 0.78) 100%);
    pointer-events: none;
}

/* Subtle corner vignette for cinematic feel */
.lpv5 .lpv5-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 110% 80% at 50% 50%, transparent 55%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
}

.lpv5 .lpv5-wrap {
    position: relative;
    z-index: 2;
    width: min(1320px, 100%);
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* ---------- The copy panel (smaller, less corporate) ---------- */
.lpv5 .lpv5-panel {
    position: relative;
    width: min(460px, 100%);
    padding: clamp(28px, 2.6vw, 38px) clamp(26px, 2.4vw, 36px) clamp(28px, 2.6vw, 36px);
    color: #fff7ec;
    /* No big rounded glass card — quieter treatment */
    background: linear-gradient(180deg, rgba(8, 6, 4, 0.42) 0%, rgba(8, 6, 4, 0.58) 100%);
    -webkit-backdrop-filter: blur(8px) saturate(1.05);
    backdrop-filter: blur(8px) saturate(1.05);
    border-left: 2px solid #FFD9A8;
    border-radius: 2px;
    box-shadow:
        0 30px 60px -30px rgba(0,0,0,0.55),
        inset 0 1px 0 rgba(255, 247, 236, 0.04);
}

/* ---------- Small torn 'evidence' fragment ---------- */
.lpv5 .lpv5-frag {
    position: absolute;
    top: -34px;
    right: -22px;
    width: 174px;
    padding: 14px 14px 12px;
    background: #f1e4cb;
    color: #1a1308;
    transform: rotate(4.5deg);
    z-index: 4;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.55));
    font-family: 'Outfit', sans-serif;
    /* Torn bottom edge */
    clip-path: polygon(
        0 0, 100% 0, 100% 88%,
        96% 91%, 92% 85%, 86% 92%, 80% 88%, 74% 93%, 68% 87%,
        60% 92%, 52% 88%, 44% 93%, 36% 87%, 28% 92%, 20% 88%,
        12% 93%, 6% 90%, 0 95%
    );
    background-image:
        radial-gradient(circle at 15% 12%, rgba(0,0,0,0.05), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(0,0,0,0.05), transparent 45%);
}

.lpv5 .lpv5-frag-tape {
    position: absolute;
    width: 64px;
    height: 18px;
    background: rgba(255, 250, 230, 0.4);
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    z-index: 5;
}
.lpv5 .lpv5-frag-tape--tl { top: -8px; left: -14px; transform: rotate(-20deg); }
.lpv5 .lpv5-frag-tape--br { bottom: 18px; right: -12px; transform: rotate(18deg); }

.lpv5 .lpv5-frag-stamp {
    display: block;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #c8202a;
    text-align: center;
    border-top: 2px solid #1a1308;
    border-bottom: 2px solid #1a1308;
    padding: 5px 0 4px;
    margin: 0 0 10px;
    line-height: 1;
}

.lpv5 .lpv5-frag-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lpv5 .lpv5-frag-list li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.66rem;
    line-height: 1.5;
    padding: 2px 0;
    border-bottom: 1px dashed rgba(26, 19, 8, 0.28);
}
.lpv5 .lpv5-frag-list li:last-child { border-bottom: 0; }
.lpv5 .lpv5-frag-list span {
    color: rgba(26, 19, 8, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.lpv5 .lpv5-frag-list b {
    color: #1a1308;
    font-weight: 700;
    text-align: right;
}

/* ---------- Kicker ---------- */
.lpv5 .lpv5-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #FFD9A8;
    margin: 0 0 22px;
}
.lpv5 .lpv5-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #FF3D68;
    box-shadow: 0 0 0 4px rgba(255, 61, 104, 0.18);
    animation: lpv5-pulse 2.4s ease-in-out infinite;
}
@keyframes lpv5-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 61, 104, 0.18); }
    50%      { box-shadow: 0 0 0 9px rgba(255, 61, 104, 0.05); }
}

/* ---------- Headline ---------- */
.lpv5 .lpv5-h {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.85rem, 2.6vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: #fff7ec;
    margin: 0 0 22px;
    text-wrap: balance;
}
.lpv5 .lpv5-h-em {
    font-style: italic;
    color: #FFD9A8;
    font-weight: 700;
}

/* ---------- Body + insight ---------- */
.lpv5 .lpv5-body {
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem;
    line-height: 1.6;
    color: rgba(255, 247, 236, 0.78);
    margin: 0 0 24px;
    max-width: 36ch;
}

.lpv5 .lpv5-insight {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 247, 236, 0.72);
    margin: 0 0 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 247, 236, 0.16);
    max-width: 38ch;
}
.lpv5 .lpv5-insight strong {
    display: inline-block;
    margin-top: 4px;
    color: #fff7ec;
    font-weight: 600;
}

/* ---------- CTA (soft, educational, not salesy) ---------- */
.lpv5 .lpv5-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    color: #FFD9A8;
    background: transparent;
    padding: 6px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 217, 168, 0.4);
    transition: color 0.2s ease, border-color 0.2s ease;
}
.lpv5 .lpv5-cta:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}
.lpv5 .lpv5-cta-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}
.lpv5 .lpv5-cta:hover .lpv5-cta-arrow { transform: translateX(4px); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .lost-pet-problem.lpv5 {
        min-height: auto;
        padding: clamp(360px, 56vw, 480px) 20px 64px;
        background:
            url('/assets/home-v2/optimized/Secondsec-mobile-puppy-bg.jpg') 68% top / cover no-repeat,
            #0a0805;
        align-items: flex-end;
    }
    .lpv5 .lpv5-scrim {
        background: linear-gradient(180deg,
            rgba(8, 6, 4, 0)    0%,
            rgba(8, 6, 4, 0)    40%,
            rgba(8, 6, 4, 0.7) 65%,
            rgba(8, 6, 4, 0.92) 100%);
    }
    .lpv5 .lpv5-wrap { justify-content: center; }
    .lpv5 .lpv5-panel {
        width: min(540px, 100%);
        margin: 0 auto;
    }
    .lpv5 .lpv5-frag {
        top: -28px;
        right: 14px;
        width: 158px;
    }
}
@media (max-width: 560px) {
    .lost-pet-problem.lpv5 {
        background-position: 68% top;
    }
    .lpv5 .lpv5-frag {
        right: auto;
        left: 14px;
        top: -30px;
        width: 136px;
        transform: rotate(-3deg);
    }
    .lpv5 .lpv5-h {
        font-size: clamp(1.55rem, 6.5vw, 1.95rem);
    }
}


/* === Lost Pet Problem v5 — stats-led pass (problem-only) === */
.lpv5 .lpv5-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 2.4vw, 32px);
    padding: 24px 0 22px;
    margin: 0 0 18px;
    border-top: 1px solid rgba(255, 247, 236, 0.16);
    border-bottom: 1px solid rgba(255, 247, 236, 0.16);
}
.lpv5 .lpv5-stat {
    min-width: 0;
}
.lpv5 .lpv5-stat-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.1rem, 3.4vw, 2.9rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 8px;
    font-feature-settings: "lnum", "tnum";
}
.lpv5 .lpv5-stat-num small {
    font-size: 0.55em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    margin-left: 1px;
}
.lpv5 .lpv5-stat--accent .lpv5-stat-num {
    color: #FF6B86;
}
.lpv5 .lpv5-stat--accent .lpv5-stat-num small {
    color: rgba(255, 107, 134, 0.7);
}
.lpv5 .lpv5-stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.86rem;
    line-height: 1.45;
    color: rgba(255, 247, 236, 0.74);
    max-width: 22ch;
}
.lpv5 .lpv5-source {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 247, 236, 0.42);
    margin: 0;
}
.lpv5 .lpv5-source a {
    color: rgba(255, 247, 236, 0.62);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.15s ease;
}
.lpv5 .lpv5-source a:hover { color: #FFD9A8; }

@media (max-width: 560px) {
    .lpv5 .lpv5-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}


/* === Lost Pet Problem v5 — .lpv5-frag--near variant ===
   Poster pinned to the wall near the puppy, larger so ID + Contact
   lines read clearly at a glance. */
.lpv5 .lpv5-frag--near {
    position: absolute;
    top: clamp(150px, 22vh, 260px);
    left: clamp(20px, 6vw, 88px);
    right: auto;
    width: clamp(220px, 22vw, 270px);
    padding: 18px 18px 22px;
    transform: rotate(-3.2deg);
    z-index: 3;
    filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.7));
}

.lpv5 .lpv5-frag--near .lpv5-frag-stamp {
    font-size: clamp(1.45rem, 1.7vw, 1.7rem);
    letter-spacing: 0.3em;
    padding: 7px 0 6px;
    margin: 0 0 14px;
}

.lpv5 .lpv5-frag--near .lpv5-frag-list li {
    font-size: 0.85rem;
    line-height: 1.55;
    padding: 6px 0;
}
.lpv5 .lpv5-frag--near .lpv5-frag-list span {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
}
.lpv5 .lpv5-frag--near .lpv5-frag-list b {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Warn rows — ID + Contact in red so they jump out as 'the problem' */
.lpv5 .lpv5-frag-warn b {
    color: #c8202a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
}

.lpv5 .lpv5-frag--near .lpv5-frag-tape {
    width: 78px;
    height: 22px;
}

/* Responsive: tuck the poster above the panel on smaller screens.
   The section is display:flex (row); switch it to column here so the
   relative-positioned poster stacks above .lpv5-wrap instead of
   landing next to it. */
@media (max-width: 980px) {
    .lost-pet-problem.lpv5 {
        flex-direction: column;
        justify-content: flex-end;
    }
    .lpv5 .lpv5-frag--near {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto 28px;
        width: min(280px, 80%);
        transform: rotate(-2.4deg);
        align-self: center;
    }
}

@media (max-width: 560px) {
    .lpv5 .lpv5-frag--near {
        margin: 22px auto 22px 12px;
        width: min(212px, 66%);
        align-self: flex-start;
    }
}

/* Mobile audit remediation: keep narrow phones readable and tappable. */
.hero-title-new {
    text-wrap: balance;
}

.product-cart-btn,
.mc-tile-cart {
    white-space: nowrap;
}

.reveal {
    opacity: 0.04;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.active {
    opacity: 1;
}

.lpv5 .lpv5-stat-num {
    white-space: nowrap;
}

.footer-links a,
.footer-bottom-right a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
}

.social-links a {
    width: 44px;
    height: 44px;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 768px) {
    .header .btn-sm {
        min-height: 44px;
        padding: 10px 18px;
    }

    .mobile-menu-btn {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: -8px;
        border-radius: 999px;
        line-height: 1;
    }

    .mobile-menu-btn i {
        pointer-events: none;
    }

    .products .product-buy-row,
    .metal-tags-section .product-buy-row {
        flex-wrap: wrap;
        gap: 6px 8px;
    }

    .products .product-price,
    .metal-tags-section .product-price {
        line-height: 1;
    }

    .products .product-cart-btn,
    .metal-tags-section .product-cart-btn {
        min-height: 44px !important;
        padding: 8px 0 !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .products-grid > a.product-card .product-cart-btn {
        width: 100%;
        justify-content: center;
        margin-top: 6px;
    }

    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .review-card {
        padding: 18px 16px !important;
        border-radius: 20px !important;
    }

    .review-text {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    .review-author,
    .review-meta,
    .review-amazon-pill {
        font-size: 0.875rem !important;
        line-height: 1.4 !important;
    }

    .review-amazon-pill {
        min-height: 32px;
    }
}

@media (max-width: 600px) {
    .faq-grid {
        column-count: 1 !important;
        column-gap: 0 !important;
    }

    .faq-item {
        padding: 18px 16px !important;
        border-radius: 18px !important;
    }

    .faq-question-wrap {
        gap: 10px !important;
    }

    .faq-icon-circle {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        font-size: 0.95rem !important;
    }

    .faq-question {
        min-width: 0;
        gap: 8px !important;
        font-size: 1rem !important;
        line-height: 1.28 !important;
    }

    .faq-question span {
        min-width: 0;
        text-wrap: pretty;
    }

    .faq-arrow {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
    }

    .faq-answer,
    .faq-item.active .faq-answer {
        padding-left: 46px !important;
        padding-right: 0 !important;
    }

    .lpv5 .lpv5-kicker,
    .lpv5 .lpv5-source,
    .lpv5 .lpv5-frag-list span {
        font-size: 0.8125rem;
        letter-spacing: 0.08em;
    }

    .lpv5 .lpv5-source a {
        display: inline-flex;
        align-items: center;
        min-height: 32px;
        padding: 4px 3px;
    }

    .lpv5 .lpv5-frag--near {
        width: min(284px, 88%);
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .hero {
        row-gap: 14px;
    }

    .trust-banner {
        padding: 12px 0;
    }

    .trust-banner .container {
        flex-direction: column;
        gap: 8px;
        padding: 0 16px;
    }

    .trust-item {
        width: 100%;
        white-space: normal;
        line-height: 1.3;
        font-size: 0.82rem;
    }

    .products .product-card h3 {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 360px) {
    .products-grid {
        grid-template-columns: 1fr !important;
        padding: 0 12px !important;
    }

    .products .product-card {
        padding: 14px 12px 16px !important;
    }

    .products .product-buy-row {
        flex-wrap: nowrap;
    }
}
