/* ============================================
   ROOLI Landing Page — Styles
   Фирменный стиль: коралловый/оранжевый + белый
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #F5845E;
    --primary-light: #F8A468;
    --primary-dark: #E8734D;
    --accent: #FF6B3D;
    --accent-hover: #FF5722;
    --bg-white: #FFFFFF;
    --bg-warm: #FFF8F5;
    --bg-peach: #FFF0EB;
    --bg-dark: #2D1F1A;
    --text-dark: #2D2D2D;
    --text-secondary: #666666;
    --text-light: #FFFFFF;
    --text-muted: #999999;
    --shadow-sm: 0 2px 8px rgba(245,132,94,0.1);
    --shadow-md: 0 4px 20px rgba(245,132,94,0.15);
    --shadow-lg: 0 8px 40px rgba(245,132,94,0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --gradient: linear-gradient(135deg, var(--primary), var(--primary-light));
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(245,132,94,0.25);
    color: var(--text-dark);
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-warm);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

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

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.2;
}
.section-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gradient);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(245,132,94,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245,132,94,0.4);
}
.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}
.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}
.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
.btn-white {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.35s ease;
    background: transparent;
}
.header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 10px 0;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 24px;
    color: var(--text-dark);
    z-index: 10;
}
.logo-icon {
    width: 40px;
    height: 40px;
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    transition: color 0.3s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
}
.nav-cta { z-index: 10; }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.burger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu.active {
    transform: translateX(0);
}
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.mobile-link {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.3s;
}
.mobile-link:hover {
    color: var(--primary);
}

/* === HERO === */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: linear-gradient(160deg, var(--bg-white) 0%, var(--bg-warm) 40%, var(--bg-peach) 100%);
    position: relative;
    overflow: hidden;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text {
    z-index: 2;
}
.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,107,61,0.1);
    color: var(--accent);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse 3s ease infinite;
}
.hero-text h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}
.hero-text h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.store-badges {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.store-badge {
    display: block;
    transition: transform 0.3s;
}
.store-badge svg {
    height: 44px;
    width: auto;
}
.store-badge:hover {
    transform: scale(1.05);
}
.store-badge-sm svg {
    height: 36px;
}

/* Hero Image / Phone Mockup */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}
.phone-mockup {
    width: 280px;
    background: #fff;
    border-radius: 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 2px rgba(0,0,0,0.05);
    overflow: hidden;
    transform: rotate(3deg);
    transition: transform 0.5s ease;
    position: relative;
}
.phone-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}
.phone-screen {
    padding: 20px 16px;
}
.phone-header-bar {
    background: var(--gradient);
    margin: -20px -16px 16px;
    padding: 28px 16px 14px;
    text-align: center;
}
.phone-app-name {
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
}
.phone-profile {
    text-align: center;
    margin-bottom: 16px;
}
.phone-avatar {
    width: 56px;
    height: 56px;
    margin: 0 auto 8px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--bg-peach);
}
.phone-avatar svg {
    width: 100%;
    height: 100%;
}
.phone-username {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}
.phone-stats {
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid var(--bg-peach);
    border-bottom: 1px solid var(--bg-peach);
    margin-bottom: 14px;
}
.phone-stats div {
    text-align: center;
}
.phone-stats strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
}
.phone-stats small {
    font-size: 9px;
    color: var(--text-muted);
}
.phone-pets-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}
.phone-pets {
    display: flex;
    gap: 12px;
}
.phone-pet {
    text-align: center;
}
.phone-pet-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-peach);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 4px;
}
.phone-pet-avatar.add {
    border: 2px dashed var(--text-muted);
    background: transparent;
    font-size: 18px;
    color: var(--text-muted);
}
.phone-pet small {
    font-size: 10px;
    color: var(--text-secondary);
}

/* Hero floating elements */
.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    z-index: 3;
    white-space: nowrap;
}
.hero-float svg { flex-shrink: 0; }
.hero-float-1 {
    top: 20%;
    right: -10px;
    animation: float 5s ease-in-out infinite;
}
.hero-float-2 {
    bottom: 30%;
    right: 0;
    animation: float 6s ease-in-out infinite 1s;
}
.hero-float-3 {
    bottom: 15%;
    left: 55%;
    animation: float 5.5s ease-in-out infinite 0.5s;
}

/* === PROBLEM SECTION === */
.problem {
    padding: 100px 0;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
}
.problem-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}
.problems-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.problem-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.problem-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.problem-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.problem-icon svg {
    width: 28px;
    height: 28px;
}
.problem-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
.problem-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.arrow-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}
.solution-card {
    padding: 40px;
    background: var(--gradient);
    color: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.solution-icon {
    margin-bottom: 20px;
}
.solution-icon svg {
    width: 64px;
    height: 64px;
    margin: 0 auto;
}
.solution-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}
.solution-card p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* === FEATURES === */
.features {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    padding: 32px;
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.feature-card.highlighted {
    border: 2px solid var(--primary);
    background: linear-gradient(160deg, var(--bg-peach), var(--bg-warm));
}
.feature-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon svg {
    width: 36px;
    height: 36px;
}
.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* === STEPS === */
.steps {
    padding: 100px 0;
    background: var(--bg-peach);
    position: relative;
    overflow: hidden;
}
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}
.step-card {
    text-align: center;
    flex: 1;
    max-width: 320px;
}
.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(245,132,94,0.3);
}
.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}
.step-icon svg {
    width: 100%;
    height: 100%;
}
.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.step-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}
.step-connector {
    display: flex;
    align-items: center;
    padding-top: 24px;
    flex-shrink: 0;
}

/* === TRUST === */
.trust {
    padding: 100px 0;
    background: var(--bg-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.trust-card {
    padding: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
}
.trust-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.08);
}
.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(245,132,94,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-icon svg {
    width: 32px;
    height: 32px;
}
.trust-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}
.trust-card p {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.6;
}
.disclaimer {
    margin-top: 48px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.disclaimer svg { flex-shrink: 0; margin-top: 2px; }
.disclaimer p {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    line-height: 1.6;
}

/* === AUDIENCE === */
.audience {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.audience-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-warm);
    transition: transform 0.3s;
}
.audience-card:hover {
    transform: translateY(-4px);
}
.audience-illustration {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
}
.audience-illustration svg {
    width: 100%;
    height: 100%;
}
.audience-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.audience-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* === REVIEWS === */
.reviews {
    padding: 100px 0;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}
.stat-item { text-align: center; }
.stat-number {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}
.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    padding: 32px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.stars {
    color: #FFB800;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.review-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.review-author strong {
    display: block;
    font-size: 15px;
}
.review-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* === FAQ === */
.faq {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 12px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-warm);
    transition: box-shadow 0.3s;
}
.faq-item:hover {
    box-shadow: var(--shadow-sm);
}
.faq-item.active {
    box-shadow: var(--shadow-md);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    text-align: left;
    color: var(--text-dark);
    gap: 16px;
}
.faq-question span { flex: 1; }
.faq-icon {
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    padding: 0 24px 22px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* === FINAL CTA === */
.final-cta {
    padding: 100px 0;
    background: var(--gradient);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta-content {
    position: relative;
    z-index: 2;
}
.final-cta h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.2;
}
.final-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.final-cta-buttons {
    margin-bottom: 24px;
}
.final-store-badges {
    justify-content: center;
}

/* === FOOTER === */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}
.footer-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.55);
}
.footer-store-badges {
    margin-top: 0;
}
.footer-column h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer-column a {
    color: rgba(255,255,255,0.55);
    display: block;
    padding: 5px 0;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-column a:hover {
    color: #fff;
}
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 12px;
}

/* === DECORATIONS === */
.decoration {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    color: var(--primary);
}
.decoration svg { width: 100%; height: 100%; }
.deco-paw-1 { width: 120px; top: 10%; left: 5%; animation: float 7s ease-in-out infinite; }
.deco-bone-1 { width: 100px; top: 60%; right: 3%; animation: wiggle 8s ease-in-out infinite; transform: rotate(25deg); }
.deco-fish-1 { width: 90px; bottom: 8%; left: 15%; animation: float 6s ease-in-out infinite 2s; }
.deco-duck-1 { width: 110px; top: 15%; right: 8%; animation: float 7s ease-in-out infinite 1s; }
.deco-chameleon-1 { width: 140px; top: 10%; right: 5%; animation: wiggle 9s ease-in-out infinite; }
.deco-snake-1 { width: 130px; bottom: 10%; left: 5%; animation: float 8s ease-in-out infinite 1.5s; }
.deco-paw-2 { width: 100px; bottom: 8%; right: 8%; animation: float 6s ease-in-out infinite; }
.deco-bone-2 { width: 90px; bottom: 10%; right: 10%; animation: wiggle 7s ease-in-out infinite; }
.deco-lizard-1 { width: 120px; bottom: 5%; right: 5%; animation: float 7s ease-in-out infinite 2s; }
.deco-fish-2 { width: 80px; top: 10%; left: 5%; animation: float 6s ease-in-out infinite; }
.deco-paw-3 { width: 90px; top: 10%; right: 10%; animation: wiggle 7s ease-in-out infinite; }
.deco-bone-3 { width: 100px; top: 20%; left: 5%; animation: float 6s ease-in-out infinite; }
.deco-paw-4 { width: 80px; bottom: 15%; right: 10%; animation: wiggle 8s ease-in-out infinite; }

/* === ANIMATIONS === */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.15s; }
.fade-in:nth-child(6) { transition-delay: 0.25s; }

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .burger { display: flex; }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-text p { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .store-badges { justify-content: center; }
    .hero-image { order: -1; }
    .phone-mockup { width: 240px; transform: rotate(0); }
    .hero-float { display: none; }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .arrow-divider {
        transform: rotate(90deg);
    }

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

    .steps-grid { flex-direction: column; align-items: center; }
    .step-connector { display: none; }

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

    .audience-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

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

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

/* Mobile */
@media (max-width: 640px) {
    .hero { padding: 80px 0 40px; }
    .hero-text h1 { font-size: 32px; }
    .hero-text p { font-size: 16px; }
    .phone-mockup { width: 220px; }
    .badge { font-size: 13px; padding: 6px 16px; }

    .features-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 24px; }

    .section-title { font-size: 26px; }
    .section-subtitle { font-size: 16px; margin-bottom: 32px; }

    .problem, .features, .steps, .trust, .audience, .reviews, .faq, .final-cta {
        padding: 60px 0;
    }

    .trust-card, .review-card { padding: 24px; }
    .stats-grid { gap: 20px; }
    .stat-number { font-size: 32px; }

    .solution-card { padding: 28px; }
    .solution-card h3 { font-size: 20px; }

    .final-cta h2 { font-size: 26px; }
    .final-cta p { font-size: 16px; }

    .btn-lg { padding: 16px 32px; font-size: 16px; }

    .disclaimer { flex-direction: column; gap: 8px; }

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

@media (max-width: 380px) {
    .hero-text h1 { font-size: 28px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .store-badges { flex-direction: column; align-items: center; }
}
