/* ==========================================
   MIND-UR LANDING PAGE - CSS
   Created for: mindur.app
   Author: Amit
   ========================================== */

/* === RESET & VARIABLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sage-mint: #5FB3A2;
    --sage-mint-soft: #9ED6C9;
    --sage-mint-deep: #3E8F7E;
    --sage-mint-glow: rgba(95, 179, 162, 0.4);
    --bg-dark: #070707;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-light: #F2F2F2;
    --text-muted: #999999;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-gradient: linear-gradient(135deg, var(--sage-mint), #8EE4D2);
}

::selection {
    background: var(--sage-mint);
    color: #070707;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sage-mint);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

/* === ANIMATED BACKGROUND === */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, #111 0%, #070707 100%);
    z-index: -3;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.15;
    pointer-events: none;
    z-index: -2;
    filter: contrast(150%) brightness(100%);
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--sage-mint) 0%, transparent 70%);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* === FLOATING PARTICLES === */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--sage-mint);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {

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

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

/* === NAVIGATION (PROFESSIONAL FLOATING GLASS) === */
nav {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 10000;
    padding: 0.8rem 1.5rem;
    background: rgba(14, 14, 14, 0.15);
    backdrop-filter: blur(50px) saturate(210%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
    from {
        transform: translate(-50%, -100%);
        opacity: 0;
    }

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--sage-mint), var(--sage-mint-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--sage-mint);
}

.cta-btn {
    background: var(--accent-gradient);
    color: #070707;
    padding: 0.8rem 2.2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(95, 179, 162, 0.4);
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(95, 179, 162, 0.6);
}

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

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 5% 2rem;
    }
}

.hero-content {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, var(--sage-mint-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(135deg, var(--sage-mint), var(--sage-mint-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-list {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--glass-border);
    transform: translateY(-2px);
}

.download-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--sage-mint), var(--sage-mint-deep));
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(95, 179, 162, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(95, 179, 162, 0.5);
}

.download-btn.secondary {
    background: var(--glass-bg);
    border: 2px solid var(--sage-mint);
    color: var(--sage-mint);
}

.download-btn.white {
    background: white;
    color: var(--sage-mint-deep);
}

/* === HERO IMAGE === */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--sage-mint-glow) 0%, transparent 70%);
    opacity: 0.4;
    filter: blur(60px);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    from {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }

    to {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    animation: float-phone 6s ease-in-out infinite;
}

@keyframes float-phone {

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

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

.phone-frame {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 3px solid #333;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sage-mint-deep), var(--sage-mint));
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.screen-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* === INDIE BADGES SECTION === */
.indie-badges {
    padding: 4rem 5%;
    background: rgba(95, 179, 162, 0.05);
    backdrop-filter: blur(10px);
}

.badges-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.indie-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.indie-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(95, 179, 162, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.indie-badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--sage-mint);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(95, 179, 162, 0.2);
}

.indie-badge:hover::before {
    opacity: 1;
}

.badge-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--sage-mint-glow));
    z-index: 1;
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    z-index: 1;
}

/* === FEATURES SECTION === */
.features {
    padding: 6rem 5%;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

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

/* === FEATURES HORIZONTAL TRACK === */
.features-track-container {
    padding: 2rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    position: relative;
}

.features-track-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.features-track {
    display: flex;
    gap: 2rem;
    padding: 0 5%;
    min-width: max-content;
}

.feature-card {
    width: 100%;
    max-width: 380px;
    min-width: 300px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--sage-mint);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(95, 179, 162, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: inline-block;
    filter: drop-shadow(0 0 10px var(--sage-mint-glow));
}

@keyframes bounce {

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

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

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

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

/* === ACHIEVEMENT BADGES === */
.achievement-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.achievement-badges .badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(95, 179, 162, 0.15);
    border: 1px solid var(--sage-mint);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sage-mint-soft);
    transition: all 0.3s ease;
}

.achievement-badges .badge:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--sage-mint-glow);
}

/* === HERO BADGE === */
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--accent-gradient);
    color: #070707;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(95, 179, 162, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(95, 179, 162, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(95, 179, 162, 0.5);
    }
}

/* === PET COMPANION SECTION === */
.pet-companion-section {
    padding: 6rem 5%;
    background: rgba(95, 179, 162, 0.03);
}

.pet-companions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.pet-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.pet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(95, 179, 162, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pet-card:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--sage-mint);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(95, 179, 162, 0.3);
}

.pet-card:hover::before {
    opacity: 1;
}

.pet-avatar {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px var(--sage-mint-glow));
    transition: transform 0.3s ease;
}

.pet-card:hover .pet-avatar {
    transform: scale(1.15) rotate(5deg);
}

.pet-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--sage-mint-soft);
}

.pet-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* === AURORA SECTION === */
.aurora-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(95, 179, 162, 0.1), rgba(62, 143, 126, 0.1));
    position: relative;
    overflow: hidden;
}

.aurora-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chat-mockup {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sage-mint), var(--sage-mint-soft));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

.message {
    padding: 1rem 1.5rem;
    border-radius: 16px;
    max-width: 80%;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

.message.user {
    background: linear-gradient(135deg, var(--sage-mint), var(--sage-mint-deep));
    align-self: flex-end;
    margin-left: auto;
}

.message.aurora {
    background: var(--glass-border);
    align-self: flex-start;
}

/* === CTA SECTION === */
.cta-section {
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(135deg, var(--sage-mint-deep), var(--sage-mint));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* === FOOTER === */
/* === FOOTER === */
footer {
    padding: 2rem 5% 1rem;
    margin-top: 2rem;
}

.footer-glass {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(14, 14, 14, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 2.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.footer-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(95, 179, 162, 0.05), transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--sage-mint), var(--sage-mint-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-icon:hover {
    background: var(--sage-mint);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(95, 179, 162, 0.3);
}

.footer-links-group {
    display: flex;
    gap: 4rem;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    width: fit-content;
}

.footer-links a:hover {
    color: var(--sage-mint);
    padding-left: 5px;
}

.footer-links a::after {
    content: '→';
    position: absolute;
    right: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::after {
    opacity: 1;
    right: -15px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--sage-mint);
}

.separator {
    color: rgba(255, 255, 255, 0.1);
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    padding: 8rem 5%;
    background: rgba(95, 179, 162, 0.02);
}

.testimonials-grid {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--sage-mint);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--sage-mint-soft);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* === CONTACT FORM PAGE === */
.contact-hero {
    padding: 12rem 5% 6rem;
    text-align: center;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto 8rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding: 0 5%;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.contact-icon {
    font-size: 2rem;
}

.contact-form-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 40px;
    backdrop-filter: blur(30px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--sage-mint-soft);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-mint);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px var(--sage-mint-glow);
}

/* === POLICY PAGES === */
.policy-hero {
    padding: 12rem 5% 4rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(95, 179, 162, 0.05), transparent);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto 8rem;
    padding: 0 5%;
    line-height: 1.8;
    color: #ccc;
}

.policy-content h2 {
    margin: 3rem 0 1.5rem;
    color: var(--sage-mint-soft);
}

.policy-content p {
    margin-bottom: 1.5rem;
}

/* === PAGE TRANSITIONS === */

/* === SCROLL ANIMATIONS === */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

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

/* === RESPONSIVE & MOBILE NAV === */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10001;
    position: relative;
    padding: 0.5rem;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 968px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
        width: 100%;
        padding: 0 2rem;
    }

    .mobile-only .cta-btn {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 2rem;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
        margin-top: 2rem;
    }

    .phone-mockup {
        max-width: 280px;
    }

    .phone-frame {
        height: 500px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 10000;
        gap: 1.5rem;
        padding-top: 6rem;
        justify-content: flex-start;
        overflow-y: auto;
    }

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

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.3rem;
        display: block;
        padding: 0.5rem;
    }

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

    .download-btns {
        flex-direction: column !important;
        align-items: center;
        gap: 1rem;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

    .feature-tag {
        color: white;
        background: rgba(255, 255, 255, 0.1);
    }

    .aurora-content {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

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

    .aurora-text p {
        color: #eee;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

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

    .pet-companions-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-links-group {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .footer-brand {
        max-width: 100%;
        margin: 0 auto;
    }

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

@media (max-width: 480px) {
    nav {
        width: 92%;
        padding: 0.8rem 1rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .download-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .download-btn {
        justify-content: center;
        width: 100%;
        padding: 1rem;
    }

    .phone-frame {
        height: 420px;
    }

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

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .feature-tag {
        width: 100%;
        justify-content: center;
    }
}

/* === PET AVATAR IMAGES === */
.pet-avatar-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px var(--sage-mint-glow));
    transition: transform 0.3s ease;
}

.pet-card:hover .pet-avatar-img {
    transform: scale(1.15) rotate(5deg);
}