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

:root {
    --blue: #1565c0;
    --blue-light: #1e88e5;
    --blue-soft: #e3edf9;
    --green: #00897b;
    --green-light: #26a69a;
    --teal: #0277bd;
    --silver: #b0bec5;
    --silver-light: #eceff1;
    --dark: #0d1b2a;
    --dark2: #162336;
    --text: #1a2535;
    --text-muted: #546070;
    --white: #ffffff;
    --border: #c5d3e2;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(21,101,192,0.10);
    --shadow-lg: 0 12px 48px rgba(21,101,192,0.18);
    --pearl: linear-gradient(135deg, #1565c0 0%, #00897b 50%, #90caf9 100%);
    --pearl2: linear-gradient(135deg, #1e88e5, #00897b);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
    border-color: var(--border);
    box-shadow: 0 2px 20px rgba(21,101,192,0.08);
}
.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-paw { font-size: 1.4rem; }
.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--pearl);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links {
    display: flex;
    gap: clamp(8px, 1.2vw, 20px);
    margin-left: auto;
    flex-shrink: 1;
    min-width: 0;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: clamp(0.78rem, 0.8vw + 0.7rem, 0.88rem);
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--blue); }
.nav-trailing {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.lang-toggle-nav {
    display: inline-flex;
    align-items: center;
    background: rgba(21, 101, 192, 0.06);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 2px 3px;
    gap: 0;
    flex-shrink: 0;
}
.lang-toggle-nav .lt-btn {
    background: transparent;
    border: none;
    border-radius: 50px;
    padding: 4px 8px;
    font-size: 0.68rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    color: var(--text);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
}
.lang-toggle-nav .lt-btn .fi {
    width: 14px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(21, 38, 53, 0.12);
}
@media (min-width: 1200px) {
    .lang-toggle-nav .lt-btn {
        font-size: 0.72rem;
        padding: 5px 10px;
    }
    .lang-toggle-nav .lt-btn .fi {
        width: 16px;
        height: 12px;
    }
}
.lang-toggle-nav .lt-btn:hover {
    color: var(--blue);
    background: rgba(21, 101, 192, 0.06);
}
.lang-toggle-nav .lt-btn.active {
    background: var(--pearl2);
    color: #fff;
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.25);
}
.lang-toggle-nav .lt-btn.active .fi {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.lang-toggle-nav .lt-btn:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}
.nav-cta {
    padding: 9px 20px;
    background: var(--pearl2);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.86rem;
    font-weight: 600;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    flex-shrink: 0;
}
@media (min-width: 901px) {
    .lang-toggle-nav .lt-label { display: inline; }
}
@media (max-width: 900px) {
    .lang-toggle-nav .lt-label { display: none; }
    .lang-toggle-nav .lt-btn { padding: 5px 8px; }
}
@media (max-width: 400px) {
    .lang-toggle-nav .lt-btn { padding: 5px 6px; }
}
.nav-mobile {
    display: none;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 20px 18px;
    gap: 2px;
    border-top: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 12px 32px rgba(13, 27, 42, 0.06);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    padding: 12px 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}
.mobile-cta {
    margin-top: 8px;
    color: var(--blue) !important;
    font-weight: 700 !important;
    border-bottom: none !important;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px;
    background: linear-gradient(160deg, #0d1b2a 0%, #162a48 55%, #0a2a20 100%);
    position: relative;
    overflow: hidden;
}
.hero-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}
.orb1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #1565c0, transparent);
    top: -100px; left: -100px;
}
.orb2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #00897b, transparent);
    bottom: -80px; right: -80px;
}
.orb3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #90caf9, transparent);
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
}
.hero-content { text-align: center; position: relative; z-index: 1; }
.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: #90caf9;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.75rem, 4.2vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 24px;
    padding: 0 8px;
    box-sizing: border-box;
    word-wrap: break-word;
}
.gradient-text {
    background: linear-gradient(135deg, #42a5f5, #4db6ac, #90caf9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.72);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.65;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--pearl2);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(21,101,192,0.4);
    border: none;
    cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(21,101,192,0.5); }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 16px 28px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.25);
    transition: background 0.2s, transform 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.hero-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #42a5f5, #4db6ac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}
.stat-div {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--blue-soft);
    color: var(--blue);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.25;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 56px;
    max-width: 600px;
}

/* ===== FEATURES ===== */
.features-section { background: var(--silver-light); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border-top: 4px solid transparent;
    transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-blue  { border-top-color: #1565c0; }
.feature-purple { border-top-color: #6a1b9a; }
.feature-teal  { border-top-color: #00897b; }
.feature-green { border-top-color: #2e7d32; }
.feature-silver { border-top-color: #78909c; }
.feature-blue2 { border-top-color: #0277bd; }
.feature-icon { font-size: 2.2rem; margin-bottom: 16px; }
.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-section { background: #fff; }
.steps { display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; }
.step {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}
.step-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--pearl2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}
.step-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}
.step-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-light), var(--green-light));
    margin-top: 24px;
    flex-shrink: 0;
    opacity: 0.5;
}

/* ===== PETS ===== */
.pets-section { background: var(--silver-light); }
.pets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}
.pet-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.pet-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pet-emoji { font-size: 2.8rem; display: block; margin-bottom: 12px; }
.pet-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.pet-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ===== UV SECTION ===== */
.uv-section {
    background: linear-gradient(160deg, #0d1b2a 0%, #0f2a40 50%, #0a1e10 100%);
    padding: 96px 0;
    overflow: hidden;
}
.uv-inner {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}
.uv-text { flex: 1; min-width: 300px; }
.uv-text .section-tag {
    background: rgba(255,255,255,0.1);
    color: #90caf9;
}
.uv-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}
.uv-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.uv-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.uv-badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
.uv-badge.green  { background: rgba(0,200,100,0.15); color: #69f0ae; border: 1px solid rgba(0,200,100,0.25); }
.uv-badge.coral  { background: rgba(255,82,82,0.12); color: #ff8a80; border: 1px solid rgba(255,82,82,0.2); }
.uv-badge.blue   { background: rgba(100,180,255,0.12); color: #82b1ff; border: 1px solid rgba(100,180,255,0.2); }
.uv-badge.yellow { background: rgba(255,220,50,0.12); color: #ffe57f; border: 1px solid rgba(255,220,50,0.2); }

.uv-visual { flex: 1; min-width: 260px; display: flex; justify-content: center; }
.uv-phone {
    width: 260px;
    height: 380px;
    background: #0a1520;
    border-radius: 36px;
    border: 2px solid rgba(66,165,245,0.3);
    box-shadow: 0 0 60px rgba(66,165,245,0.15), inset 0 0 40px rgba(0,137,123,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}
.uv-phone::before {
    content: '';
    position: absolute;
    top: -40px; left: 50%;
    transform: translateX(-50%);
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(105,240,174,0.2), transparent 70%);
    pointer-events: none;
}
.uv-screen {
    width: 100%;
    border-radius: 20px;
    background: rgba(10,25,40,0.8);
    border: 1px solid rgba(66,165,245,0.2);
    padding: 20px;
    text-align: center;
}
.uv-glow {
    width: 80px; height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(105,240,174,0.8), rgba(0,200,130,0.3), transparent);
    box-shadow: 0 0 30px rgba(105,240,174,0.4);
    animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.08); opacity: 1; }
}
.uv-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #42a5f5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.uv-result {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, #1565c0 0%, #00897b 100%);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-orb {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
}
.cta-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
}
.cta-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
}
.cta-section .btn-primary {
    background: #fff;
    color: var(--blue);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.cta-section .btn-primary:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

/* ===== TEAM (сетка как Crafter) ===== */
.team-section { background: var(--silver-light); }
.section-title--team {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.team-content { margin-top: 8px; }
.team-description {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}
.team-description p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}
.team-members { margin: 2.5rem 0; text-align: center; }
.team-members h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.75rem;
}
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.member-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
}
.member-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    overflow: hidden;
    border: 3px solid var(--blue-light);
    box-shadow: 0 4px 16px rgba(21, 101, 192, 0.25);
}
.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.member-card:hover .member-photo img { transform: scale(1.06); }
.member-photo-fallback {
    width: 100%;
    height: 100%;
    background: var(--pearl2);
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.2rem;
    border-radius: 50%;
}
.member-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--text);
}
.member-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 0.75rem;
}
.member-highlights {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    text-align: left;
}
.member-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}
.member-highlights li i {
    margin-top: 0.2rem;
    color: var(--green);
    flex-shrink: 0;
    font-size: 0.85rem;
}
.values-title {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin: 2.5rem 0 1.5rem;
}
.expertise-grid-lp {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}
.expertise-card-lp {
    background: #fff;
    padding: 1.75rem 1.4rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: border-color 0.25s, transform 0.25s;
}
.expertise-card-lp:hover {
    transform: translateY(-3px);
    border-color: var(--blue-light);
    box-shadow: var(--shadow-lg);
}
.expertise-icon-lp {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--pearl2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.9rem;
    color: #fff;
    font-size: 1.2rem;
}
.expertise-card-lp h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
    color: var(--text);
}
.expertise-card-lp p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== CONTACT ===== */
.contact-section { background: var(--silver-light); }
.contact-form {
    max-width: 680px;
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text);
    background: #fff;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form > .form-group { margin-bottom: 20px; }
.form-submit {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1rem;
}
.form-result {
    margin-top: 14px;
    font-size: 0.9rem;
    text-align: center;
}
.form-result.success { color: #00897b; font-weight: 600; }
.form-result.error { color: #c62828; }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 48px 0 32px;
    color: rgba(255,255,255,0.6);
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer .logo-paw { font-size: 1.3rem; }
.footer .logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    background: var(--pearl);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-desc { font-size: 0.88rem; }
.footer-legal-kz {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    max-width: 520px;
    margin: 0;
}
.footer-bottom-lp {
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 720px;
}
.footer-rivixi {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
    margin: 0;
}
.footer-privacy-link {
    color: rgba(144, 202, 249, 0.95);
    text-decoration: none;
    border-bottom: 1px solid rgba(144, 202, 249, 0.35);
    transition: color 0.2s, border-color 0.2s;
}
.footer-privacy-link:hover {
    color: #e3f2fd;
    border-bottom-color: rgba(227, 242, 253, 0.6);
}
.footer-vet {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    line-height: 1.45;
}
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: #90caf9; }
.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-trailing { margin-left: auto; }
    .nav-trailing .nav-cta { display: none; }
    .nav-burger { display: block; }
    .nav-inner { gap: 12px; }
    .steps { flex-direction: column; align-items: center; }
    .step-connector { width: 2px; height: 32px; margin: 0; }
    .uv-inner { flex-direction: column; }
    .member-highlights { font-size: 0.86rem; }
}
@media (max-width: 600px) {
    .section { padding: 64px 0; }
    .features-grid { grid-template-columns: 1fr; }
    .pets-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px 20px; }
    .hero { padding: 90px 0 50px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
}
