/* Patilink landing — modern, warm, pet-friendly (2025+) */

:root {
    --bg: #fdf8f6;
    --bg-soft: #fff5f0;
    --bg-muted: #f3ece8;
    --surface: #ffffff;
    --text: #1a1412;
    --text-muted: #5c534f;
    --border: rgba(26, 20, 18, 0.08);
    --accent: #e91e63;
    --accent-dark: #c2185b;
    --accent-soft: #fdeef4;
    --shadow-sm: 0 2px 12px rgba(26, 20, 18, 0.06);
    --shadow-md: 0 12px 40px rgba(26, 20, 18, 0.1);
    --shadow-lg: 0 24px 60px rgba(233, 30, 99, 0.18);
    --radius: 16px;
    --radius-lg: 24px;
    --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
    --header-h: 72px;
    --container: min(1120px, 100% - 2.5rem);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero__scroll-line {
        animation: none !important;
    }
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-dark);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--accent);
}

button {
    font-family: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -100px;
    padding: 10px 16px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    z-index: 9999;
    transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
    top: 16px;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(253, 248, 246, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.site-header[data-scrolled="true"] {
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--border);
}

.header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: inherit;
    text-decoration: none;
}

.brand:hover {
    color: inherit;
}

.brand__logo {
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.brand__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 12px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    border-radius: 2px;
}

.nav-toggle__bar {
    position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
    content: "";
    position: absolute;
    left: 0;
    transition: transform 0.2s var(--ease-out);
}

.nav-toggle__bar::before {
    top: -6px;
}

.nav-toggle__bar::after {
    top: 6px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.site-nav__list a:hover {
    color: var(--text);
}

.site-nav__cta {
    display: flex;
    gap: 0.5rem;
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out),
        background 0.18s ease;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent) 0%, #ff6090 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.35);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.btn--secondary {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}

.btn--ghost:hover {
    background: var(--surface);
}

.btn--sm {
    padding: 0.45rem 0.95rem;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
}

[data-animate-hover]:active {
    transform: translateY(0) scale(0.98);
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    min-height: min(92vh, 880px);
    padding: clamp(2rem, 6vw, 5rem) 0 4rem;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(253, 248, 246, 0.92) 0%,
        rgba(253, 248, 246, 0.76) 42%,
        rgba(253, 248, 246, 0.55) 100%
    );
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero__copy {
    max-width: 560px;
}

.hero__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.1rem, 4.2vw, 3.35rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
}

.text-gradient {
    background: linear-gradient(120deg, var(--accent-dark), #ff8a65);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__lead {
    margin: 0 0 1.75rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero__stats li {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.hero__stats strong {
    display: block;
    font-size: 1.35rem;
    color: var(--text);
}

.hero__mock {
    display: flex;
    justify-content: center;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid rgba(26, 20, 18, 0.2);
    opacity: 0.7;
}

.hero__scroll-line {
    position: absolute;
    left: 50%;
    top: 10px;
    width: 4px;
    height: 10px;
    margin-left: -2px;
    border-radius: 4px;
    background: var(--accent);
    animation: scrollLine 1.6s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    40% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(14px);
    }
}

/* ---------- Phone frame + mock UI ---------- */

.phone-frame {
    position: relative;
    width: min(280px, 100%);
    aspect-ratio: 9 / 19;
    background: #111;
    border-radius: 36px;
    padding: 10px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    transform: rotate(-3deg);
    transition: transform 0.4s var(--ease-out);
}

.phone-frame:hover {
    transform: rotate(0deg) translateY(-4px);
}

.phone-frame--sm {
    transform: rotate(4deg);
    width: min(230px, 100%);
}

.phone-frame--sm:hover {
    transform: rotate(0deg) translateY(-4px);
}

.phone-frame__notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 34%;
    height: 24px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    z-index: 3;
}

.phone-frame__screen {
    position: relative;
    height: calc(100% - 8px);
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
}

.phone-frame__screen--gradient-1 {
    background: linear-gradient(160deg, #e3f6ff 0%, #fdeef4 55%, #fff 100%);
}

.phone-frame__screen--gradient-2 {
    background: linear-gradient(180deg, #fff8f6 0%, #fdeef4 50%, #e8f8ff 100%);
}

.phone-frame__screen--gradient-3 {
    background: linear-gradient(145deg, #ffe4ec 0%, #fff 45%, #e3f6ff 100%);
}

.mock-feed {
    padding: 44px 12px 12px;
    height: 100%;
}

.mock-feed__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.mock-feed__logo {
    width: 72px;
    height: 10px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--accent), #ffb199);
}

.mock-feed__icons span {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.08);
    margin-left: 6px;
}

.mock-feed__story-row {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.mock-feed__story-row span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(233, 30, 99, 0.35);
    background: rgba(255, 255, 255, 0.7);
}

.mock-feed__post {
    display: flex;
    gap: 10px;
}

.mock-feed__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #90caf9, var(--accent));
    flex-shrink: 0;
}

.mock-feed__body {
    flex: 1;
}

.mock-feed__line--title {
    width: 40%;
    height: 8px;
    margin-bottom: 10px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.1);
}

.mock-feed__photo {
    height: 88px;
    border-radius: 12px;
    background: linear-gradient(120deg, #ffd6e8, #c5e8ff);
    margin-bottom: 8px;
}

.mock-feed__actions {
    display: flex;
    gap: 10px;
}

.mock-feed__actions span {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.07);
}

.mock-map__search {
    height: 28px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    margin: 44px 12px 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.mock-map__tiles {
    position: relative;
    height: 120px;
    margin: 0 12px;
    border-radius: 14px;
    background: linear-gradient(145deg, #d0efff 0%, #fdeef4 100%);
    overflow: hidden;
}

.mock-map__pin {
    position: absolute;
    top: 45%;
    left: 52%;
    width: 16px;
    height: 16px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: var(--accent);
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.4);
}

.mock-map__cards {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
}

.mock-map__cards span {
    flex: 1;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
}

.mock-discovery {
    padding: 48px 12px 12px;
    height: 100%;
}

.mock-discovery__tabs {
    height: 10px;
    width: 50%;
    margin: 0 auto 14px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.08);
}

.mock-discovery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mock-discovery__grid span {
    aspect-ratio: 1;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mock-profile {
    padding: 44px 0 0;
    text-align: center;
}

.mock-profile__cover {
    height: 70px;
    background: linear-gradient(90deg, #ff9a9e, #fad0c4);
}

.mock-profile__avatar {
    width: 64px;
    height: 64px;
    margin: -32px auto 10px;
    border-radius: 50%;
    border: 4px solid #fff;
    background: linear-gradient(135deg, #e0f7fa, var(--accent));
}

.mock-profile__lines {
    padding: 0 20px;
}

.mock-profile__lines span {
    display: block;
    height: 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.08);
    margin: 8px auto;
    width: 70%;
}

.mock-profile__lines span:nth-child(2) {
    width: 50%;
}

.mock-profile__lines span:nth-child(3) {
    width: 35%;
}

/* ---------- Sections ---------- */

.section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.section--soft {
    background: var(--bg-soft);
}

.section--muted {
    background: var(--bg-muted);
}

.section--accent {
    background: radial-gradient(120% 120% at 10% 20%, #4a1942 0%, #1a0f18 55%, #120a10 100%);
    color: #f8f0ec;
}

.section__head {
    max-width: 640px;
    margin-bottom: 3rem;
}

.section__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin: 0 0 0.5rem;
}

.section__eyebrow--on-dark {
    color: #ffb8d9;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 600;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.section__title--on-dark {
    color: #fff;
}

.section__lead {
    margin: 0;
    font-size: 1.08rem;
    color: var(--text-muted);
}

.section--accent .section__lead,
.vet-block__lead {
    color: rgba(248, 240, 236, 0.88);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.35rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    margin-bottom: 1rem;
}

.feature-card__title {
    font-size: 1.08rem;
    margin: 0 0 0.5rem;
}

.feature-card__text {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.96rem;
}

/* How it works — steps */

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    counter-reset: step;
}

.steps__item {
    position: relative;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem 1.5rem 3.25rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.steps__badge {
    position: absolute;
    left: 1rem;
    top: 1.35rem;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), #ff6090);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.steps__icon {
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
}

.steps__title {
    font-size: 1.05rem;
    margin: 0 0 0.35rem;
}

.steps__text {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Screenshots strip */

.shots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
}

.shots__item {
    margin: 0;
    text-align: center;
}

.shots .phone-frame {
    position: relative;
}

.shots__caption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Vet block */

.vet-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vet-block__lead {
    font-size: 1.05rem;
    margin: 0 0 1.25rem;
}

.vet-block__list {
    margin: 0;
    padding-left: 1.1rem;
    color: rgba(248, 240, 236, 0.92);
}

.vet-block__list li {
    margin-bottom: 0.5rem;
}

.map-illustration {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-illustration__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.5;
}

.map-illustration__pin {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: #ff6090;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.map-illustration__pin--a {
    top: 38%;
    left: 48%;
}

.map-illustration__pin--b {
    top: 55%;
    left: 62%;
    background: #80deea;
}

.map-illustration__pin--c {
    top: 48%;
    left: 34%;
    background: #ffd54f;
}

.map-illustration__card {
    position: absolute;
    bottom: 12%;
    left: 8%;
    right: 12%;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1412;
    box-shadow: var(--shadow-md);
    text-align: left;
}

.map-illustration__card strong {
    display: block;
    font-size: 0.95rem;
}

.map-illustration__card small {
    color: var(--text-muted);
}

/* CTA */

.cta {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--accent-soft) 100%);
}

.cta__inner {
    background: var(--surface);
    border-radius: calc(var(--radius-lg) + 8px);
    padding: clamp(2rem, 5vw, 3.5rem);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin: 0 0 0.75rem;
}

.cta__lead {
    margin: 0 0 1.75rem;
    color: var(--text-muted);
}

.cta__stores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(0.65rem, 3vw, 1rem);
    margin-bottom: 1rem;
}

/* Resmi Türkçe App Store / Google Play rozet görselleri */
.store-badge-img {
    display: inline-block;
    line-height: 0;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

.store-badge-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.store-badge-img img {
    display: block;
    height: clamp(46px, 10vw, 56px);
    width: auto;
    max-width: min(260px, 100%);
}

.cta__fineprint {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer */

.site-footer {
    padding: 3rem 0 0;
    background: #1a1410;
    color: #e8e0dc;
}

.site-footer a {
    color: #f8b8d8;
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand--footer .brand__name {
    color: #fff;
}

.footer__tagline {
    margin: 1rem 0 0;
    max-width: 320px;
    font-size: 0.92rem;
    color: rgba(232, 224, 220, 0.75);
    line-height: 1.5;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__col li {
    margin-bottom: 0.45rem;
}

.footer__heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 0.85rem;
    color: rgba(232, 224, 220, 0.55);
}

.social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

.social__link {
    font-size: 0.9rem;
}

.newsletter__fields {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.newsletter__input {
    flex: 1;
    min-width: 180px;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.95rem;
}

.newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter__input:focus {
    outline: 2px solid var(--accent);
    border-color: transparent;
}

.newsletter__hint {
    min-height: 1.25rem;
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
    color: #a5e9b5;
}

.footer__bottom {
    padding: 1.25rem 0;
}

.footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer__copy {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(232, 224, 220, 0.55);
}

.footer__to-top {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Reveal animations (JS adds .is-visible) */

.reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal--fade-up {
    transform: translate3d(0, 32px, 0);
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__mock {
        order: -1;
    }

    .phone-frame {
        transform: rotate(0);
    }

    .phone-frame--sm {
        transform: rotate(0);
    }

    .vet-block {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__newsletter {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 1.25rem 1.5rem;
        background: rgba(253, 248, 246, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .site-nav__cta {
        padding-top: 1rem;
        justify-content: stretch;
    }

    .site-nav__cta .btn {
        flex: 1;
    }

    .hero__stats {
        gap: 1rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .map-illustration {
        margin-top: 0.5rem;
    }
}

/* Legal documents (terms / privacy) */

.legal-page {
    min-height: 100vh;
    background: var(--bg);
}

.legal-page__header {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.legal-page__back {
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

.legal-document {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.5rem) 1.25rem 4rem;
}

.legal-document h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin: 0 0 0.5rem;
}

.legal-document .meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.legal-document h2 {
    font-size: 1.15rem;
    margin: 2rem 0 0.65rem;
}

.legal-document p,
.legal-document li {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.legal-document ul {
    padding-left: 1.25rem;
}

[data-reveal-delay] {
    --reveal-delay: 0ms;
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .shots {
        gap: 3rem;
    }
}
