/* [Claude Code] Full redesign stylesheet — Warm & Modern theme */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --primary: #6cab5e; /* [Claude Code] changed from #3d1f14 (dark brown) to green */
    --accent: #2c87b3; /* [Claude Code] changed from #8edbf5 (light blue) to mid blue */
    --accent-hover: #246f93; /* [Claude Code] changed from #62c5e8 */
    --accent-glow: rgba(44, 135, 179, 0.12); /* [Claude Code] changed from rgba(142,219,245,0.12) */
    --accent-light: #6aafc8; /* [Claude Code] changed from #bbecfb */
    --bg: #ffffff; /* [Claude Code] changed from #f2faf0 back to plain white */
    --bg-warm: #f0f7f9; /* [Claude Code] reverted to light-blue tint */
    --bg-warmer: #dff0f5; /* [Claude Code] reverted to light-blue tint */
    --bg-dark: #1a3040; /* [Claude Code] changed from #2a1510 (brown) to deep navy */
    --border: rgba(108, 171, 94, 0.15); /* [Claude Code] changed from brown-based */
    --border-warm: rgba(44, 135, 179, 0.1); /* [Claude Code] changed from brown-based */
    --text: #1e2d24; /* [Claude Code] changed from #2a1510 to dark green-tinted */
    --text-muted: #5a7a6a; /* [Claude Code] changed from #8c6b60 to green-tinted grey */
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(44, 135, 179, 0.07); /* [Claude Code] changed from brown-based */
    --shadow: 0 4px 24px rgba(44, 135, 179, 0.1); /* [Claude Code] changed from brown-based */
    --shadow-lg: 0 8px 48px rgba(44, 135, 179, 0.15); /* [Claude Code] changed from brown-based */
    --shadow-accent: 0 8px 32px rgba(44, 135, 179, 0.25); /* [Claude Code] changed from rgba(142,219,245,0.25) */
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;
    --nav-h: 72px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s var(--ease);
    --max-w: 1200px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    font-family:
        "Nunito",
        system-ui,
        -apple-system,
        sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--accent-hover);
}
ul {
    list-style: none;
}
h1,
h2,
h3,
h4 {
    line-height: 1.2;
}
strong {
    font-weight: 700;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s var(--ease),
        transform 0.65s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================================
   REUSABLE COMPONENTS
   ============================================================ */

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}
.badge--light {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius-pill);
    font-family: inherit;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-lg {
    padding: 15px 32px;
    font-size: 16px;
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(44, 135, 179, 0.35); /* [Claude Code] changed from rgba(142,219,245,0.35) */
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2.5px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2.5px solid rgba(255, 255, 255, 0.35);
}
.btn-outline-light:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section structure */
.section {
    padding: 96px 24px;
}
.section--warm {
    background: var(--bg-warm);
}
.section--dark {
    background: var(--bg-dark);
    color: var(--white);
}
.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.section-header {
    margin-bottom: 56px;
}
.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 14px;
    line-height: 1.15;
}
.section-title--light {
    color: var(--white);
}
.section-lead {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 620px;
}
.section-lead--light {
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: var(--transition);
    overflow: visible; /* [Claude Code] allow oversized logo to spill below the bar */
    background: #f0f7f9; /* [Claude Code] matches hero gradient start so nav blends at top of page */
}
.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}
/* [Claude Code] backdrop-filter moved to ::before so it doesn't make site-header a containing block
   for the nav-menu's position:fixed — which collapsed the menu to zero height when scrolled */
.site-header.scrolled::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: -1;
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    overflow: visible; /* [Claude Code] allow logo to overflow below bar */
}

/* [Claude Code] wrapper div keeps logo + name reliably side-by-side on all devices */
.nav-brand-group {
    display: flex;
    align-items: center;
    gap: 12px;
}
/* [Claude Code] oversized logo floats below the navbar */
.nav-brand {
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
    text-decoration: none;
}
/* [Claude Code] company name next to logo */
.nav-brand-name {
    font-size: 1.35rem; /* [Claude Code] bumped up from 1.1rem */
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
    white-space: nowrap;
}
.nav-brand img {
    height: 96px;
    width: auto;
    margin-top: 30px; /* [Claude Code] shift logo down so top edge isn't clipped by nav */
    filter: drop-shadow(0 4px 12px rgba(61, 31, 20, 0.2));
    transition: var(--transition);
}
.nav-brand img:hover {
    filter: drop-shadow(0 6px 18px rgba(61, 31, 20, 0.28));
    transform: translateY(-2px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 7px 11px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}
.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: var(--accent-glow);
}

.nav-portal-btn {
    margin-left: 12px;
    padding: 9px 20px;
    font-size: 13.5px;
}

/* Hamburger toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-toggle:hover {
    background: var(--accent-glow);
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-h);
    background: linear-gradient(140deg, #f0f7f9 0%, #dff0f5 45%, #eef6f9 100%); /* [Claude Code] reverted hero gradient to light-blue */
    overflow: hidden;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -180px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(44, 135, 179, 0.07) 0%, /* [Claude Code] changed from rgba(142,219,245,0.07) */
        transparent 70%
    );
    pointer-events: none;
}

.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 72px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    min-height: calc(100vh - var(--nav-h));
}

/* Hero text side */
.hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero-text h1 em {
    font-style: normal;
    color: var(--accent);
}
.hero-text > p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 460px;
    margin-bottom: 36px;
    font-weight: 500;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}
.hero-social {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}
.hero-social a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--border);
    transition: var(--transition);
}
.hero-social a:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-glow);
}
.hero-insurance {
    margin-top: 20px;
}
.hero-insurance a {
    display: inline-block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}
.hero-insurance a:hover {
    transform: scale(1.04);
}
.hero-insurance img {
    width: 140px;
    border-radius: var(--radius-sm);
}

/* Hero visuals — 3 floating circle photos */
.hero-visuals {
    position: relative;
    height: 500px;
}

.pet-circle {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
}
.pet-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pet-circle--large {
    width: 230px;
    height: 230px;
    top: 0;
    left: 5%;
    animation: float 7s ease-in-out infinite;
    border-color: var(--accent-light);
    border-width: 5px;
}
.pet-circle--medium {
    width: 200px;
    height: 200px;
    top: 130px;
    right: 0;
    animation: float 7s ease-in-out infinite 2.3s;
    border-color: var(--accent-light); /* [Claude Code] changed from --white to match large circle */
}
.pet-circle--small {
    width: 170px;
    height: 170px;
    bottom: 30px;
    left: 28%;
    animation: float 7s ease-in-out infinite 4.6s;
    border-color: var(--accent-light); /* [Claude Code] changed from --bg-warmer to match large circle */
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-14px);
    }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
    background: var(--bg-dark);
    padding: 0 24px;
}
.stats-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat:last-child {
    border-right: none;
}
.stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 4px;
    line-height: 1.2;
}
.stat span {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: start;
}
.about-story h2 {
    margin-bottom: 24px;
}
.about-story p {
    color: var(--text-muted);
    font-size: 1.02rem;
    margin-bottom: 18px;
    line-height: 1.75;
}
.about-story p strong {
    color: var(--primary);
}
.about-features h3 {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 24px;
}
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(106, 175, 200, 0.12); /* [Claude Code] lightened from 0.18 */
    border-radius: var(--radius);
    border: 1.5px solid var(--border-warm);
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    transition: var(--transition);
}
.feature-list li:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}
.feature-list li strong {
    color: var(--primary);
}
.feature-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */

/* What we offer highlights */
.service-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.highlight {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    border: 1.5px solid var(--border-warm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.highlight:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.highlight-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 12px;
}
.highlight p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.5;
}

/* Info pills */
.service-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 52px;
}
.info-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
}

/* Pricing grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 22px;
    margin-bottom: 52px;
}
.price-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1.5px solid var(--border-warm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.price-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.price-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.price-card:hover::before {
    transform: scaleX(1);
}

.price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 14px;
}
.price-tag .amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}
.price-tag .dollar {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    align-self: flex-start;
    padding-top: 6px;
}

.price-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}
.price-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}
.price-duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-warm);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

/* Free add-ons */
.addons {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1.5px solid var(--border-warm);
    box-shadow: var(--shadow-sm);
    margin-bottom: 36px;
}
.addons h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
}
.addons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.addons-grid span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg-warm);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--border-warm);
}

/* Surcharges */
.surcharges {
    background: var(--white); /* [Claude Code] changed to match addons card */
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 36px;
    border: 1.5px solid var(--border-warm); /* [Claude Code] changed to match addons card */
    box-shadow: var(--shadow-sm); /* [Claude Code] added to match addons card */
}
.surcharges h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
}
.surcharges > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.65;
}
.surcharges ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}
.surcharges ul li {
    background: var(--bg-warm); /* [Claude Code] changed to match addons-grid span */
    color: var(--text); /* [Claude Code] changed to match addons-grid span */
    font-size: 0.9rem; /* [Claude Code] changed to match addons-grid span */
    font-weight: 700; /* [Claude Code] changed to match addons-grid span */
    padding: 9px 18px; /* [Claude Code] changed to match addons-grid span */
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--border-warm); /* [Claude Code] changed to match addons-grid span */
}

/* Doc link */
.doc-link {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
}
.doc-link a {
    color: var(--accent);
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}
.doc-link a:hover {
    border-color: var(--accent);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-steps h2 {
    margin-bottom: 16px;
}
.contact-steps .section-lead {
    margin-bottom: 40px;
}

.steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.steps li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: white;
    font-size: 1rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.steps li p {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
}
.steps li p strong {
    color: white;
}

.contact-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(8px);
}
.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}
.contact-card > p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.contact-method:hover {
    background: rgba(44, 135, 179, 0.2); /* [Claude Code] changed from rgba(142,219,245,0.2) */
    border-color: rgba(44, 135, 179, 0.4); /* [Claude Code] changed from rgba(142,219,245,0.4) */
    color: white;
    transform: translateX(4px);
}
.contact-method img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
}
.contact-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-method span:last-child {
    line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #1a0c08;
    padding: 56px 24px 36px;
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.footer-brand {
    text-align: center;
}
.footer-brand img {
    height: 150px;
    margin: 0 auto 12px;
}
/* [Claude Code] company name in footer */
.footer-brand-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    font-weight: 600;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}
.footer-nav a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}
.footer-nav a:hover {
    color: var(--accent);
    background: var(--accent-glow);
}
.footer-copy {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

/* ============================================================
   SCROLL-TO-TOP BUTTON
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-accent);
    opacity: 0;
    transform: translateY(12px) scale(0.85);
    transition: var(--transition);
    pointer-events: none;
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.scroll-top:hover {
    background: var(--accent-hover);
    transform: translateY(-3px) scale(1.05);
}
.scroll-top svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.page-hero {
    background: linear-gradient(140deg, #f0f9ee 0%, #e4f4e0 100%); /* [Claude Code] updated FAQ page hero gradient, white bg version */
    padding: calc(var(--nav-h) + 60px) 24px 72px;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 14px;
}
.page-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.faq-nav {
    background: var(--white);
    border-bottom: 1.5px solid var(--border-warm);
    position: sticky;
    top: var(--nav-h);
    z-index: 100;
    padding: 0 24px;
}
.faq-nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
}
.faq-nav-inner::-webkit-scrollbar {
    display: none;
}
.faq-nav-inner a {
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-warm);
    border: 1.5px solid var(--border-warm);
    transition: var(--transition);
    text-decoration: none;
}
.faq-nav-inner a:hover,
.faq-nav-inner a.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.faq-section {
    padding: 72px 24px;
}
.faq-section--alt {
    background: var(--bg-warm);
}
.faq-section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.faq-section-title {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 2.5px solid var(--accent);
    display: inline-block;
}

.faq-item {
    margin-bottom: 32px;
    scroll-margin-top: calc(var(--nav-h) + 120px);
}
.faq-q {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer; /* [Claude Code] accordion trigger */
    user-select: none;
}
/* [Claude Code] chevron indicator */
.faq-q::after {
    content: "\276F";
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--accent);
    transform: rotate(90deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-top: 5px;
}
.faq-item.faq-open .faq-q::after {
    transform: rotate(270deg);
}
.faq-q::before {
    content: "Q";
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
/* [Claude Code] answers hidden by default; revealed by .faq-open */
.faq-a {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.75;
    padding-left: 36px;
    display: none;
}
.faq-item.faq-open .faq-a {
    display: block;
}
.faq-a p {
    margin-bottom: 12px;
}
.faq-a p:last-child {
    margin-bottom: 0;
}
.faq-a ul {
    list-style: disc;
    padding-left: 20px;
    margin: 10px 0;
}
.faq-a ul li {
    margin-bottom: 6px;
}
.faq-a img {
    max-width: 100%;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    margin: 16px auto;
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   DOCUMENTS & PARTNERS PAGES
   ============================================================ */
.simple-page {
    padding: calc(var(--nav-h) + 64px) 24px 96px;
    min-height: 80vh;
}
.simple-page-inner {
    max-width: 820px;
    margin: 0 auto;
}
.simple-page h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}
.simple-page .page-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.doc-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.doc-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--white);
    border: 1.5px solid var(--border-warm);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: var(--transition);
    color: var(--text);
}
.doc-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateX(6px);
    color: var(--text);
}
.doc-icon {
    width: 52px;
    height: 52px;
    background: rgba(44, 135, 179, 0.08); /* [Claude Code] changed from rgba(142,219,245,0.08) */
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}
.doc-info {
    flex: 1;
}
.doc-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 3px;
}
.doc-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.doc-arrow {
    color: var(--accent);
    font-size: 1.3rem;
}

/* Partners */
.partner-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.partner-item {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 32px;
    background: var(--white);
    border: 1.5px solid var(--border-warm);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.partner-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.partner-item img {
    width: 180px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}
.partner-info h3 {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 6px;
}
.partner-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 14px;
}
.promo-code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1.5px dashed var(--accent);
}

/* ============================================================
   PHOTOS PAGE
   ============================================================ */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 40px;
}
.photo-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 3px solid var(--white);
}
.photo-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
    z-index: 1;
    position: relative;
}
.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.photos-refresh {
    text-align: center;
    margin-top: 40px;
}
.photos-refresh a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 12px 24px;
    border: 2px solid var(--accent);
    border-radius: var(--radius-pill);
    transition: var(--transition);
}
.photos-refresh a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
        padding-top: 56px;
    }
    .hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-social {
        justify-content: center;
    }
    .hero-insurance {
        display: flex;
        justify-content: center;
    }

    .hero-visuals {
        height: 320px;
        max-width: 460px;
        margin: 0 auto;
    }
    .pet-circle--large {
        width: 170px;
        height: 170px;
        top: 0;
        left: 5%;
    }
    .pet-circle--medium {
        width: 150px;
        height: 150px;
        top: 80px;
        right: 5%;
    }
    .pet-circle--small {
        width: 130px;
        height: 130px;
        bottom: 0;
        left: 30%;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: none;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .service-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .partner-item {
        flex-direction: column;
        text-align: center;
    }
    .partner-item img {
        width: 200px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
    :root {
        --nav-h: 64px;
    }

    .section {
        padding: 64px 20px;
    }

    /* Mobile nav */
    .nav-brand img {
        height: 72px;
        margin-top: 20px; /* logo top margin position */
    } /* [Claude Code] scale down oversized logo on mobile; margin-top prevents top-edge clipping */
    .nav-brand-name {
        font-size: 1.05rem;
    } /* [Claude Code] slightly smaller on mobile to fit beside logo + hamburger */
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98); /* [Claude Code] updated mobile menu bg to white */
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px;
        transform: translateX(100%);
        transition: transform 0.35s var(--ease);
        overflow-y: auto;
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-links {
        flex-direction: column;
        align-items: stretch;
    }
    .nav-link {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: var(--radius);
        border-bottom: 1.5px solid var(--border-warm);
    }
    .nav-portal-btn {
        margin-left: 0;
        margin-top: 16px;
        padding: 15px 28px;
        font-size: 16px;
        text-align: center;
    }

    .hero-inner {
        padding: 48px 20px 60px;
        min-height: auto;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero-visuals {
        height: 260px;
    }
    .pet-circle--large {
        width: 130px;
        height: 130px;
    }
    .pet-circle--medium {
        width: 120px;
        height: 120px;
        top: 70px;
    }
    .pet-circle--small {
        width: 105px;
        height: 105px;
    }

    .stats-inner {
        grid-template-columns: 1fr;
    }
    .stat {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .stat:last-child {
        border-bottom: none;
    }

    .service-highlights {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .addons {
        padding: 28px 20px;
    }
    .surcharges {
        padding: 28px 20px;
    }
    .contact-card {
        padding: 28px 20px;
    }
    .partner-item {
        padding: 24px;
    }
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .faq-nav-inner {
        padding: 10px 0;
    }
    .doc-item {
        padding: 18px 20px;
        gap: 14px;
    }
}
