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

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

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

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--spacing-xl) 0;
}

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

.flex {
    display: flex;
}

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

.justify-between {
    justify-content: space-between;
}

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

.grid {
    display: grid;
}

.hidden {
    display: none;
}

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

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    color: var(--text-medium);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

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

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

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-normal);
    background: rgba(255, 255, 255, 0.8);
    /* Add initial background to prevent text overlap */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

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

.logo-img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
    /* Prevent logo from shrinking */
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    white-space: nowrap;
    /* Prevent wrapping */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width var(--transition-fast);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    /* Prevent actions from shrinking */
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-btn {
    background: none;
    color: var(--text-light);
    padding: 0;
    transition: color var(--transition-fast);
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--primary-green);
}

.divider {
    color: var(--text-light);
    opacity: 0.5;
}

.hamburger {
    display: none;
    background: none;
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* =====================================================
   HERO SECTION 3.0 - AWWWARDS LEVEL EXCELLENCE
   ===================================================== */

.hero-awwwards {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(165deg, #f8fcf9 0%, #eef7f1 40%, #e8f4ec 70%, #fff 100%);
}

/* ===== ANIMATED AURORA BACKGROUND ===== */
.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.7;
    will-change: transform;
}

.aurora-1 {
    width: 70vw;
    height: 70vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle, rgba(49, 181, 86, 0.25) 0%, transparent 70%);
    top: -20%;
    left: -15%;
    animation: aurora-drift 25s ease-in-out infinite;
}

.aurora-2 {
    width: 60vw;
    height: 60vw;
    max-width: 750px;
    max-height: 750px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
    animation: aurora-drift 20s ease-in-out infinite reverse;
    animation-delay: -5s;
}

.aurora-3 {
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.18) 0%, transparent 70%);
    top: 30%;
    left: 30%;
    animation: aurora-pulse 18s ease-in-out infinite;
    animation-delay: -8s;
}

.aurora-4 {
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.15) 0%, transparent 70%);
    top: 50%;
    right: 20%;
    animation: aurora-drift 22s ease-in-out infinite;
    animation-delay: -12s;
}

@keyframes aurora-drift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 40px) scale(0.95);
    }

    75% {
        transform: translate(40px, 20px) scale(1.02);
    }
}

@keyframes aurora-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.5;
    }
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.5;
    mix-blend-mode: overlay;
}

/* ===== FLOATING DECORATIONS ===== */
.hero-decorations {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.floating-paw,
.floating-heart {
    position: absolute;
    opacity: 0.12;
    animation: float-deco 8s ease-in-out infinite;
}

.floating-paw i {
    font-size: 2.5rem;
    color: var(--primary-green);
}

.floating-heart i {
    font-size: 2rem;
    color: #f472b6;
}

.paw-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.paw-2 {
    bottom: 20%;
    right: 8%;
    animation-delay: -3s;
    transform: rotate(25deg);
}

.heart-1 {
    top: 25%;
    right: 15%;
    animation-delay: -1.5s;
}

.heart-2 {
    bottom: 30%;
    left: 12%;
    animation-delay: -4.5s;
}

@keyframes float-deco {

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

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

/* ===== MAIN LAYOUT ===== */
.hero-main {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 200px);
}

/* ===== CONTENT COLUMN ===== */
.hero-content-col {
    max-width: 580px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem 0.5rem 0.75rem;
    background: rgba(49, 181, 86, 0.1);
    border: 1px solid rgba(49, 181, 86, 0.2);
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    border-radius: 50%;
    color: white;
    font-size: 0.75rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.02em;
}

/* Headline */
.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.headline-line {
    display: block;
}

.headline-gradient {
    background: linear-gradient(135deg,
            #10b981 0%,
            #31B556 25%,
            #3b82f6 50%,
            #10b981 75%,
            #31B556 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Description */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

/* ===== CTA BUTTONS ===== */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #31B556 0%, #28a048 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 4px 15px rgba(49, 181, 86, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(49, 181, 86, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-primary i {
    font-size: 1.25rem;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    transition: left 0.6s ease;
}

.cta-primary:hover .cta-glow {
    left: 100%;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cta-secondary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.cta-secondary i {
    font-size: 1.25rem;
    color: var(--primary-green);
}

/* ===== SOCIAL PROOF ===== */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    width: fit-content;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.proof-avatar:first-child {
    margin-left: 0;
}

.proof-avatar:hover {
    transform: scale(1.1) translateY(-2px);
    z-index: 10;
}

.avatar-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 3px solid white;
    margin-left: -12px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-green);
}

.proof-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.proof-stars {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    color: #f59e0b;
    font-size: 0.875rem;
}

.rating-num {
    margin-left: 0.5rem;
    font-weight: 700;
    color: #1e293b;
}

.proof-text {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* ===== VISUAL COLUMN ===== */
.hero-visual-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.visual-composition {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 600px;
}

/* Landing Image */
.landing-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 100%;
    z-index: 1;
}

.landing-image-mask {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.08);
}

.landing-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

.landing-image-wrapper:hover .landing-hero-img {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(49, 181, 86, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

/* Phone Mockup */
.phone-float-wrapper {
    position: absolute;
    bottom: 40px;
    left: -30px;
    z-index: 10;
    animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {

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

    50% {
        transform: translateY(-15px) rotate(0deg);
    }
}

.phone-3d-container {
    position: relative;
    transform: perspective(1000px) rotateY(8deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.phone-3d-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.phone-device {
    position: relative;
    width: 200px;
    background: #0f172a;
    border-radius: 36px;
    padding: 8px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-screen-img {
    width: 100%;
    border-radius: 28px;
    display: block;
}

.phone-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.25) 0%, transparent 70%);
    filter: blur(10px);
}

/* ===== FLOATING GLASS STAT CARDS ===== */
.glass-stat-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.04);
    z-index: 15;
    opacity: 0;
    animation: card-appear 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.card-locations {
    top: 30px;
    left: 0;
    animation-delay: 0.5s;
}

.card-caregivers {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    animation-delay: 0.7s;
}

.card-verified {
    bottom: 120px;
    left: 60px;
    animation-delay: 0.9s;
}

@keyframes card-appear {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-caregivers {
    animation-name: card-appear-right;
}

@keyframes card-appear-right {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0) scale(1);
    }
}

.glass-stat-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.1),
        0 6px 16px rgba(0, 0, 0, 0.06);
}

.card-caregivers:hover {
    transform: translateY(calc(-50% - 3px)) scale(1.02);
}

.stat-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-icon-box.icon-love {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    color: #db2777;
}

.stat-icon-box.icon-verified {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.stat-number {
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
}

/* ===== SCROLL INDICATOR ===== */
.hero-scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-scroll-cue:hover {
    opacity: 1;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #94a3b8;
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #94a3b8;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, 8px);
        opacity: 0.3;
    }
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===== FADE UP ANIMATIONS ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

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

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

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

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

/* =====================================================
   HERO RESPONSIVE DESIGN
   ===================================================== */

/* Large Desktop */
@media (min-width: 1440px) {
    .hero-layout {
        gap: 6rem;
    }

    .visual-composition {
        max-width: 720px;
        height: 680px;
    }

    .phone-device {
        width: 230px;
    }
}

/* Tablet Landscape */
@media (max-width: 1200px) {
    .hero-layout {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 4vw, 3.5rem);
    }

    .visual-composition {
        max-width: 500px;
        height: 520px;
    }

    .phone-device {
        width: 170px;
    }

    .phone-float-wrapper {
        left: -20px;
        bottom: 60px;
    }

    .glass-stat-card {
        padding: 0.75rem 1rem;
    }

    .stat-icon-box {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .card-caregivers {
        right: -10px;
    }
}

/* Tablet Portrait */
@media (max-width: 1024px) {
    .hero-awwwards {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
        min-height: auto;
    }

    .hero-content-col {
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-social-proof {
        margin: 0 auto;
    }

    .hero-visual-col {
        min-height: 500px;
        order: -1;
    }

    .visual-composition {
        max-width: 450px;
        height: 480px;
        margin: 0 auto;
    }

    .landing-image-wrapper {
        width: 75%;
        right: 10%;
    }

    .phone-float-wrapper {
        left: 5%;
        bottom: 50px;
    }

    .phone-device {
        width: 160px;
    }

    .card-locations {
        left: 5%;
        top: 20px;
    }

    .card-caregivers {
        right: 0;
    }

    .card-verified {
        left: 15%;
        bottom: 100px;
    }

    /* Decorations - subtle on tablet */
    .floating-paw,
    .floating-heart {
        opacity: 0.08;
    }

    .hero-scroll-cue {
        bottom: 1.5rem;
    }
}

/* Mobile Landscape / Large Mobile */
@media (max-width: 768px) {
    .hero-awwwards {
        padding: 90px 0 50px;
    }

    .hero-layout {
        gap: 3rem;
    }

    .hero-badge {
        padding: 0.4rem 0.875rem 0.4rem 0.625rem;
    }

    .badge-text {
        font-size: 0.8rem;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.75rem);
        margin-bottom: 1.25rem;
    }

    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-bottom: 2rem;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .hero-social-proof {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        border-radius: 20px;
    }

    .proof-info {
        align-items: center;
    }

    .hero-visual-col {
        min-height: 420px;
    }

    .visual-composition {
        max-width: 340px;
        height: 400px;
    }

    .landing-image-wrapper {
        width: 80%;
        right: 5%;
    }

    .landing-image-mask {
        border-radius: 24px;
    }

    .phone-float-wrapper {
        left: 0;
        bottom: 30px;
    }

    .phone-device {
        width: 130px;
        border-radius: 28px;
        padding: 6px;
    }

    .phone-screen-img {
        border-radius: 22px;
    }

    /* Simplify stat cards on mobile */
    .glass-stat-card {
        padding: 0.625rem 0.875rem;
        border-radius: 12px;
    }

    .stat-icon-box {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .stat-number {
        font-size: 0.95rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .card-locations {
        top: 10px;
        left: 0;
    }

    .card-caregivers {
        display: none;
        /* Hide one card on mobile for cleaner look */
    }

    .card-verified {
        bottom: 80px;
        left: 40%;
        transform: translateX(-50%);
    }

    /* Hide decorations on mobile */
    .hero-decorations {
        display: none;
    }

    .aurora-orb {
        opacity: 0.4;
    }

    .scroll-text {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-awwwards {
        padding: 80px 0 40px;
    }

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

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

    .hero-visual-col {
        min-height: 360px;
    }

    .visual-composition {
        max-width: 280px;
        height: 340px;
    }

    .phone-device {
        width: 110px;
    }

    .phone-float-wrapper {
        bottom: 20px;
    }

    .card-locations {
        padding: 0.5rem 0.75rem;
    }

    .card-verified {
        bottom: 60px;
    }

    .hero-social-proof {
        max-width: 280px;
    }

    .proof-avatar {
        width: 36px;
        height: 36px;
        margin-left: -10px;
    }

    .avatar-more {
        width: 36px;
        height: 36px;
        margin-left: -10px;
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-badge {
        margin-bottom: 1rem;
    }

    .visual-composition {
        max-width: 260px;
        height: 300px;
    }

    .phone-device {
        width: 100px;
    }

    .glass-stat-card {
        gap: 0.5rem;
    }
}


/* Trust Section */
.trust-section {
    padding: var(--spacing-lg) 0;
    background: var(--bg-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 1.5rem;
    transition: transform var(--transition-normal);
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.trust-label {
    color: var(--text-medium);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-green-light) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 0;
}

.section-header {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-green-light);
    color: var(--primary-green);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.8;
}

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

.feature-card {
    padding: 2.5rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-green-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--primary-green);
    transform: rotate(5deg);
}

.feature-card:hover .feature-icon i {
    color: #ffffff !important;
}

.feature-title {
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-medium);
}

.feature-card.featured {
    border: 2px solid var(--primary-green);
    background: rgba(255, 255, 255, 0.9);
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-love);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Animations */
.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive */
@media (max-width: 768px) {

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        padding: 5rem 2rem;
        transition: right var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-cta {
        display: none;
        /* Hide CTA in header on mobile, maybe show in menu */
    }

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

    .hero-buttons {
        flex-direction: column;
        padding: 0 2rem;
    }
}

/* How It Works Section */
.how-it-works {
    background-color: var(--bg-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step-card {
    position: relative;
    padding: 2rem;
    text-align: center;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-normal);
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -1rem;
    right: -1rem;
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary-green);
    opacity: 0.1;
    line-height: 1;
    z-index: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step-desc {
    color: var(--text-medium);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* About Page */
.about-hero {
    padding-top: 120px;
    padding-bottom: 2rem;
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
}

/* Mission & Vision */
.mission-vision {
    background-color: var(--bg-white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-box,
.vision-box {
    padding: 3rem;
    text-align: center;
    transition: transform var(--transition-normal);
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-10px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-green);
}

.mission-box h3,
.vision-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.mission-box p,
.vision-box p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* About Story */
.about-story {
    background-color: var(--bg-light);
}

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

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #eaf7ed 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* What We Do */
.what-we-do {
    background-color: var(--bg-white);
}

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

.what-card {
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-normal);
}

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

.what-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.what-icon i {
    font-size: 2rem;
    color: var(--primary-green);
}

.what-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.what-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Our Values */
.our-values {
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    position: relative;
    padding-left: 4rem;
}

.value-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    opacity: 0.2;
    line-height: 1;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Company Overview Table */
.company-overview {
    background-color: var(--bg-white);
}

.company-table-container {
    max-width: 900px;
    margin: 3rem auto 0;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: var(--shadow-sm);
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 0.95rem;
}

.company-table th {
    background-color: #f9f9f9;
    width: 35%;
    font-weight: 600;
    color: var(--text-dark);
    vertical-align: top;
}

.company-table td {
    color: var(--text-medium);
    line-height: 1.6;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 1024px) {

    .mission-vision-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .image-placeholder {
        height: 300px;
    }

    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 1rem;
    }

    .company-table th {
        background-color: #f0f0f0;
        padding-bottom: 0.5rem;
        font-size: 0.85rem;
    }

    .company-table td {
        padding-top: 0.5rem;
        padding-bottom: 1.5rem;
    }

    .value-item {
        padding-left: 3rem;
    }

    .value-number {
        font-size: 2.5rem;
    }
}

/* Map Section */
.map-section {
    padding: var(--spacing-lg) 0;
    background: var(--bg-white);
}

.company-table-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.map-container {
    height: 500px;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

/* Custom Marker Styles */
.custom-marker-icon {
    background: transparent;
    border: none;
}

.marker-pin {
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    background: var(--primary-green);
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-pin::after {
    content: '';
    width: 14px;
    height: 14px;
    margin: 8px 0 0 8px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
}

.marker-icon-inner {
    position: absolute;
    width: 22px;
    height: 22px;
    left: 4px;
    top: 4px;
    z-index: 10;
    color: white;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-icon-inner i {
    font-size: 14px;
}

/* PawSafe Section */
.pawsafe-section {
    padding: var(--spacing-lg) 0;
    background-color: #fff5f5;
    /* Light warm background for love/care */
}

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

.pawsafer-card {
    padding: 2rem;
    transition: all var(--transition-normal);
}

.pawsafer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pawsafer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pawsafer-avatar {
    font-size: 3rem;
    color: var(--text-light);
}

.pawsafer-info {
    flex: 1;
}

.pawsafer-name {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.pawsafer-rating {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.verified-badge {
    color: var(--primary-green);
    font-size: 1.25rem;
}

.pawsafer-bio {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pawsafer-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--bg-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-medium);
    border: 1px solid #eee;
}

.pawsafe-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge i {
    color: var(--primary-green);
    font-size: 1.25rem;
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-lg) 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    padding: 2rem;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-green-light);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-pet {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: #fff;
    padding: 4rem 0 2rem;
    border-top: 1px solid #eee;
}

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

.footer-logo {
    height: 32px;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-green);
    color: white;
}

.footer-heading {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-medium);
}

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

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #eee;
    border-radius: var(--radius-full);
    outline: none;
}

.newsletter-input:focus {
    border-color: var(--primary-green);
}

.newsletter-btn {
    padding: 0.75rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Map */
@media (max-width: 768px) {
    .map-stats-overlay {
        flex-direction: column;
        gap: 1rem;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
}

/* Download Page */
.download-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 50%, #fff0f0 100%);
    position: relative;
    overflow: hidden;
}

.download-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(49, 181, 86, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.download-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-love) 0%, #ff6b7a 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.free-badge i {
    font-size: 1.25rem;
}

.download-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.download-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    background: var(--text-dark);
    color: white;
    transition: all var(--transition-normal);
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.download-btn i {
    font-size: 2.5rem;
}

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

.btn-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.btn-store {
    font-size: 1.125rem;
    font-weight: 600;
}

.apple-btn {
    background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
}

.google-btn {
    background: linear-gradient(135deg, #01875f 0%, #00a86b 100%);
}

.download-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.25rem;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

.phone-showcase {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: var(--text-dark);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eaf7ed 0%, #ffffff 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.floating-badge i {
    color: var(--primary-green);
    font-size: 1.25rem;
}

.badge-1 {
    top: 10%;
    left: -10%;
    animation: float 5s ease-in-out infinite;
}

.badge-2 {
    bottom: 15%;
    right: -15%;
    animation: float 7s ease-in-out infinite 1s;
}

/* Free Forever Section */
.free-forever {
    background: var(--bg-white);
}

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

.free-feature {
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-normal);
}

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

.free-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.free-icon i {
    font-size: 2.5rem;
    color: var(--primary-green);
}

.free-feature h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.free-feature p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Community Powered */
.community-powered {
    background: var(--bg-light);
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.community-illustration {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #eaf7ed 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.community-stats-inline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.inline-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: var(--text-medium);
}

.inline-stat i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.inline-stat strong {
    color: var(--text-dark);
}

/* Features Showcase */
.features-showcase {
    background: var(--bg-white);
}

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

.showcase-card {
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

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

.showcase-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.showcase-icon i {
    font-size: 2rem;
    color: var(--primary-green);
}

.showcase-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.showcase-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #eaf7ed 0%, #ffffff 100%);
}

.cta-box {
    padding: 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.cta-note i {
    color: var(--primary-green);
}

/* Responsive Download Page */
@media (max-width: 1024px) {
    .download-hero-title {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    .download-hero {
        padding-top: 120px;
        text-align: center;
    }

    .download-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .download-hero-title {
        font-size: 2.5rem;
    }

    .download-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

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

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

    .badge-1,
    .badge-2 {
        display: none;
    }

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

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

    .cta-box {
        padding: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .download-btn {
        justify-content: center;
    }
}

/* Pricing Page */
.pricing-hero {
    padding-top: 140px;
    padding-bottom: 3rem;
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
}

.pricing-section {
    background: var(--bg-white);
}

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

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid #eee;
    transition: all var(--transition-normal);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.pricing-card.featured {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.coming-soon {
    opacity: 0.7;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-love) 0%, #ff6b7a 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.pricing-badge.coming-soon-badge {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pricing-icon i {
    font-size: 2.5rem;
    color: var(--primary-green);
}

.pricing-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    display: block;
    line-height: 1;
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-medium);
    display: block;
    margin-top: 0.5rem;
}

.pricing-desc {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-medium);
}

.pricing-features i {
    color: var(--primary-green);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.btn-block {
    width: 100%;
}

/* Why We Charge */
.why-charge {
    background: var(--bg-light);
}

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

.why-card {
    padding: 2.5rem;
    text-align: center;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 2rem;
    color: var(--primary-green);
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* FAQ */
.pricing-faq {
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    padding: 2rem;
}

.faq-question {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-answer {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

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

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

/* PawSafe Page Styles */
.pawsafe-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, #eaf7ed 0%, #ffffff 50%, #f0fff4 100%);
    position: relative;
    overflow: hidden;
}

.pawsafe-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(49, 181, 86, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.pawsafe-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, #28a745 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(49, 181, 86, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.trust-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
}

.trust-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
}

.trust-stats .stat-label {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
}

/* Why Need Section */
.why-need {
    background: var(--bg-white);
}

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

.why-card {
    padding: 2.5rem;
    position: relative;
}

.why-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    opacity: 0.1;
}

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

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

/* PawSafe Features */
.pawsafe-features {
    background: var(--bg-light);
}

.features-showcase {
    margin-top: 4rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 2rem;
}

.feature-row.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.feature-row.reverse .feature-content {
    order: 2;
}

.feature-row.reverse .feature-visual {
    order: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-green);
}

.feature-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.feature-list i {
    color: var(--primary-green);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.visual-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

/* Comparison Table */
.comparison {
    background: var(--bg-white);
}

.comparison-table {
    margin-top: 3rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #f9f9f9;
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table th.highlight {
    background: var(--primary-green-light);
    color: var(--primary-green);
}

.comparison-table td.highlight {
    background: rgba(49, 181, 86, 0.05);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.logo-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.logo-cell i {
    color: #FFD700;
}

.comparison-table .ti-circle-check-filled {
    color: var(--primary-green);
    font-size: 1.5rem;
}

.comparison-table .ti-x {
    color: #dc3545;
    font-size: 1.5rem;
}

.comparison-table .ti-minus {
    color: #ffc107;
    font-size: 1.5rem;
}

/* Connection Section */
.connection {
    background: var(--bg-light);
}

.connection-content {
    margin-top: 3rem;
}

.connection-story {
    padding: 3rem;
    margin-bottom: 4rem;
}

.connection-story h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.connection-story p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.ecosystem-visual {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
}

.ecosystem-circle {
    position: relative;
    width: 600px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-center {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #28a745 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 40px rgba(49, 181, 86, 0.3);
    z-index: 2;
    position: relative;
}

.circle-item {
    width: 130px;
    height: 130px;
    background: white;
    border: 3px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.circle-item:first-child {
    left: 50px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
}

.circle-item:last-child {
    right: 50px;
    left: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}

/* Connectors for ecosystem */
.ecosystem-circle::before,
.ecosystem-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 4px;
    background: var(--primary-green-light);
    z-index: 0;
}

.ecosystem-circle::before {
    left: 115px;
    width: 150px;
}

.ecosystem-circle::after {
    right: 115px;
    width: 150px;
}

.circle-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.circle-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.benefit-card {
    padding: 2rem;
    text-align: center;
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* How It Works Timeline */
.how-pawsafe-works {
    background: var(--bg-white);
}

.steps-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}


.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(49, 181, 86, 0.3);
    z-index: 1;
}

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

.step-content p {
    font-size: 1.075rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Final CTA PawSafe */
.final-cta-pawsafe {
    background: linear-gradient(135deg, #eaf7ed 0%, #ffffff 100%);
}

.final-cta-pawsafe .cta-content {
    padding: 4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive for PawSafe */
@media (max-width: 1024px) {

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
    }

    .feature-row.reverse .feature-content,
    .feature-row.reverse .feature-visual {
        order: initial;
    }

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

@media (max-width: 768px) {
    .pawsafe-hero-content {
        text-align: center;
    }

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

    .trust-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }

    .visual-placeholder {
        border-radius: 16px;
    }

    .ecosystem-circle {
        width: 300px;
        height: 300px;
    }

    .circle-center {
        width: 120px;
        height: 120px;
    }

    .circle-item {
        width: 100px;
        height: 100px;
    }

    .steps-timeline::before {
        left: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* PawSafer Page Styles */
.pawsafer-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, #fff0f3 0%, #ffffff 50%, #fff5f7 100%);
    /* Warmer, loving tone */
    position: relative;
    overflow: hidden;
}

.pawsafer-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.pawsafer-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-pawsafer {
    background: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
    text-align: center;
}

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

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green-light);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.connection-pawsafer {
    background: linear-gradient(135deg, var(--primary-green) 0%, #28a745 100%);
    color: white;
    padding: 6rem 0;
}

.connection-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.connection-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.who-can-join {
    background: var(--bg-light);
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.join-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.join-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

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

.join-card p {
    color: var(--text-medium);
}

.final-cta-pawsafer {
    background: #fff;
    text-align: center;
    padding: 6rem 0;
}

.final-cta-pawsafer h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.final-cta-pawsafer p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

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

    .connection-content h2 {
        font-size: 2rem;
    }
}

/* =========================================
   PawSafer Awwwards Redesign Styles
   ========================================= */

/* Typography Overrides for this page */
.pawsafer-body {
    font-family: 'Outfit', sans-serif;
    background-color: #FAFAFA;
    overflow-x: hidden;
}

.serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
}

/* Immersive Hero */
.pawsafer-hero-immersive {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 182, 193, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(49, 181, 86, 0.1) 0%, transparent 40%);
    z-index: 0;
    animation: pulseGradient 10s ease-in-out infinite alternate;
}

@keyframes pulseGradient {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hero-container-immersive {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.badge-pill .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-green);
}

.hero-title-massive {
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1.1;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-massive .line-2 {
    background: linear-gradient(90deg, var(--primary-green) 0%, #208a38 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc-immersive {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--text-dark);
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    background: black;
}

.btn-glow.white {
    background: white;
    color: var(--text-dark);
}

.btn-glow.white:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-dark);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--text-dark);
    border-radius: 50%;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Emotional Section */
.emotional-section {
    padding: 8rem 0;
    background: #fff;
    overflow: hidden;
}

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

.section-heading-lg {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.highlight-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-green);
}

.section-body-lg {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.emotional-visual {
    position: relative;
    height: 400px;
}

.visual-card {
    position: absolute;
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.5s ease;
    /* Force exact content sizing */
    width: max-content;
    min-width: max-content;
    height: max-content;
    min-height: max-content;
    white-space: nowrap;
}

.visual-card i {
    font-size: 1.5rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.card-1 {
    top: 10%;
    left: 0;
    transform: rotate(-5deg);
    z-index: 1;
}

.card-2 {
    top: 10%;
    right: 0;
    transform: rotate(5deg);
    z-index: 2;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    transform: rotate(-2deg);
    z-index: 3;
}

.emotional-visual:hover .card-1 {
    transform: rotate(-8deg) translateY(-10px);
}

.emotional-visual:hover .card-2 {
    transform: rotate(8deg) translateY(-10px);
}

.emotional-visual:hover .card-3 {
    transform: rotate(-4deg) translateY(-10px);
}

/* Bento Grid */
.benefits-bento {
    padding: 6rem 0;
    background: #FAFAFA;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.tag-outline {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid var(--text-dark);
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.heading-md {
    font-size: 2.5rem;
    font-weight: 700;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.bento-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-income {
    grid-column: span 2;
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
}

.card-security {
    grid-row: span 2;
    background: var(--primary-green);
    color: white;
}

.card-security .icon-box {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.card-security h3,
.card-security p {
    color: white;
}

.card-security p {
    opacity: 0.8;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--primary-green-light);
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.bento-card p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Split Section */
.who-join-split {
    padding: 6rem 0;
}

.split-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.split-card {
    padding: 4rem;
    border-radius: 32px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.split-card:hover {
    border-color: var(--primary-green);
    background: #fcffff;
}

.split-card i {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    display: inline-block;
}

.split-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* CTA Minimal */
.cta-minimal {
    padding: 6rem 0;
    background: var(--primary-green);
    color: white;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: white;
}

.cta-sub {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

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

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

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

/* RWD */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .card-income {
        grid-column: span 2;
    }

    .card-security {
        grid-row: auto;
        grid-column: span 1;
    }

    .card-family {
        grid-column: span 1;
    }

    .card-growth {
        grid-column: span 2;
    }
}

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

    .emotional-visual {
        height: 300px;
        margin-top: 2rem;
    }

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

    .card-income,
    .card-security,
    .card-family,
    .card-growth {
        grid-column: span 1;
        grid-row: auto;
    }

    .split-cards {
        grid-template-columns: 1fr;
    }

    .split-card {
        padding: 2.5rem;
    }
}

/* Accordion for FAQ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background-color var(--transition-fast);
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

.accordion-header i {
    color: var(--primary-green);
    transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    /* Adjust as needed */
}

/* Rules Page Styles */
.rules-section {
    max-width: 1000px;
    margin: 0 auto;
}

.rules-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.8;
}

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

.rule-card {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform var(--transition-normal);
}

.rule-card:hover {
    transform: translateY(-10px);
}

.rule-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.rule-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.rule-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.donation-highlight {
    background: linear-gradient(135deg, #eaf7ed 0%, #ffffff 100%);
    border: 2px solid var(--primary-green);
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(49, 181, 86, 0.15);
}

.donation-highlight::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-green);
    opacity: 0.05;
    border-radius: 50%;
}

.donation-highlight h3 {
    color: var(--primary-green);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.donation-highlight p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Sponsorships Page Styles */
.sponsor-hero {
    padding: 12rem 0 8rem;
    background: radial-gradient(circle at top right, rgba(49, 181, 86, 0.05), transparent 60%);
    overflow: hidden;
    position: relative;
}

.sponsor-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(49, 181, 86, 0.1);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sponsor-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--text-dark) 0%, #555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sponsor-desc {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Infinite Logo Slider */
.logo-slider-container {
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--surface-light);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logo-slider-container::before,
.logo-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logo-slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--surface-light), transparent);
}

.logo-slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--surface-light), transparent);
}

.logo-track {
    display: inline-block;
    animation: scroll 40s linear infinite;
}

.partner-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin: 0 3rem;
    opacity: 0.5;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Placeholder Logo Styling */
.placeholder-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assumes track is duplicated */
}

/* Impact Cards */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.impact-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    display: block;
}

.impact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* CTA Section Override */
.sponsor-cta-section {
    background: var(--text-dark);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    border-radius: var(--radius-lg);
    margin: 6rem auto 0;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.sponsor-cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.sponsor-cta-section p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.btn-glow {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    color: #000 !important;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    display: inline-block;
    border: 2px solid transparent;
}

.btn-glow:hover {
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.4);
    transform: scale(1.05) translateY(-2px);
    background: linear-gradient(135deg, #ffe55e 0%, #ffd000 100%);
    color: #000 !important;
    text-decoration: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .sponsor-title {
        font-size: 3rem;
    }

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

    .sponsor-cta-section {
        margin: 4rem 1rem;
        padding: 4rem 1rem;
    }
}

/* Features Page Styles */
.features-hero {
    padding: 10rem 0 6rem;
    position: relative;
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.features-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, #555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-desc {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-medium);
}

.section-tag-wrapper {
    text-align: center;
    margin-bottom: 0rem;
}

.feature-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5%;
}

.tag-now {
    background: rgba(49, 181, 86, 0.1);
    color: var(--primary-green);
}

.tag-wip {
    background: rgba(85, 88, 255, 0.1);
    color: #5558ff;
}

.tag-future {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    /* Needs dark background */
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

/* Phase 1: Foundation */
.foundation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.foundation-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

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

.foundation-icon {
    width: 60px;
    height: 60px;
    background: var(--surface-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.foundation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Phase 2: Intelligence (PawsAI) */
#intelligence {
    background: #f0f4ff;
    padding: 6rem 0;
    overflow: hidden;
}

.wip-container {
    background: #fff;
    border-radius: 2rem;
    padding: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(85, 88, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 4rem;
}

.wip-content {
    flex: 1;
}

.wip-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
    background: linear-gradient(135deg, #5558ff 0%, #00c6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-visual {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #e0eaff 0%, #f0f4ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ai-icon {
    font-size: 5rem;
    color: #5558ff;
    z-index: 2;
}

.ai-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #5558ff;
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Phase 3: The Vision (Future) */
.future-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 8rem 0;
    overflow: hidden;
}

.future-heading {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
}

.future-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.future-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.full-width-card {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.future-icon {
    font-size: 2rem;
    color: #a5b4fc;
    margin-bottom: 1rem;
}

.love-visual {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 105, 180, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff69b4;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.future-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.future-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Mobile Responsiveness for Features */
@media (max-width: 768px) {
    .features-title {
        font-size: 3rem;
    }

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

    .wip-container {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .wip-title {
        font-size: 2.5rem;
    }

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

    .full-width-card {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }
}