:root {
    --bg: #fafbfc;
    --bg-soft: #f4f6f8;
    --surface: #ffffff;
    --surface-deep: #0f1923;
    --surface-deeper: #0a1119;
    --ink: #111827;
    --ink-soft: #6b7280;
    --ink-softest: rgba(255, 255, 255, 0.7);
    --line: rgba(0, 0, 0, 0.06);
    --line-strong: rgba(0, 0, 0, 0.1);
    --primary: #0ca6bf;
    --primary-strong: #0991a8;
    --primary-soft: rgba(12, 166, 191, 0.08);
    --accent: #57d7eb;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --container: 1200px;
    --header-height: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

main {
    overflow: clip;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

/* ── Support bar ────────────────────────── */

.support-bar {
    background: var(--surface-deep);
    color: rgba(255, 255, 255, 0.9);
}

.support-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.82rem;
}

.support-inner span,
.brand span,
.eyebrow,
.card-kicker,
.screen-kicker,
.segment-index,
.note-kicker,
.info-kicker {
    font-family: "Chakra Petch", sans-serif;
}

.support-inner span {
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.support-inner a {
    font-weight: 600;
    color: var(--accent);
    transition: opacity 150ms ease;
}

.support-inner a:hover {
    opacity: 0.8;
}

/* ── Header ─────────────────────────────── */

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid transparent;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 48px;
}

.brand span {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

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

.site-nav a {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 150ms ease, background 150ms ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--ink);
    background: var(--primary-soft);
}

.site-nav .nav-cta {
    margin-left: 8px;
    color: #ffffff;
    background: var(--primary);
    font-weight: 600;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
    color: #ffffff;
    background: var(--primary-strong);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 150ms ease, opacity 150ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ───────────────────────────────── */

.hero {
    position: relative;
    padding: 80px 0 96px;
    background: var(--surface-deep);
    color: #ffffff;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12, 166, 191, 0.12), transparent 70%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 14px;
    border-radius: 6px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow,
.cta-section .eyebrow {
    background: rgba(87, 215, 235, 0.12);
    color: var(--accent);
}

.hero-copy h1 {
    margin: 20px 0 0;
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.section-heading h2,
.copy-column h2,
.pdv-copy h2,
.control-copy h2,
.cta-copy h2 {
    margin: 16px 0 0;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 700;
}

.hero-text,
.section-heading p,
.section-text,
.mini-list li,
.segment-card p,
.control-card p,
.footer-meta p,
.contact-list span {
    color: var(--ink-soft);
}

.hero-text {
    margin: 20px 0 0;
    max-width: 540px;
    font-size: 1.06rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.section-text {
    margin: 14px 0 0;
    font-size: 1.02rem;
    line-height: 1.7;
}

.section-text-light,
.feature-list-light li {
    color: var(--ink-softest);
}

/* ── Buttons ────────────────────────────── */

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 0.94rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 150ms ease, border-color 150ms ease, opacity 150ms ease;
}

.button:hover {
    opacity: 0.9;
}

.button-primary {
    color: #ffffff;
    background: var(--primary);
}

.button-primary:hover {
    background: var(--primary-strong);
    opacity: 1;
}

.button-secondary {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    opacity: 1;
}

.button-secondary-dark {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.button-secondary-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

/* ── Hero badges & metrics ──────────────── */

.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.hero-badges li {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.5;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.metric-card {
    padding: 18px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.metric-card span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ── Hero visual ────────────────────────── */

.hero-visual {
    display: grid;
    gap: 20px;
    align-content: start;
}

.photo-card,
.screen-card,
.banner-card,
.contact-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.photo-card {
    background: var(--bg-soft);
    box-shadow: var(--shadow-lg);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo-card {
    width: 100%;
    height: 580px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-photo-image {
    object-position: 42% center;
}

/* ── Pill row ───────────────────────────── */

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.pill-row span {
    padding: 8px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ── Sections ───────────────────────────── */

.section {
    padding: 100px 0;
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-pet {
    background: var(--surface);
}

.section-soft {
    background: var(--bg-soft);
}

.section-dark {
    position: relative;
    background: var(--surface-deep);
    color: #ffffff;
    overflow: hidden;
}

.section-dark::before {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12, 166, 191, 0.08), transparent 70%);
    pointer-events: none;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-heading p {
    margin: 14px 0 0;
    font-size: 1.02rem;
    line-height: 1.7;
}

/* ── Split layout ───────────────────────── */

.split-layout,
.pdv-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* ── Pet section ────────────────────────── */

.pet-visual-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    align-items: stretch;
}

.pet-photo-card {
    height: 520px;
    padding: 0;
    background: var(--bg-soft);
}

.pet-photo-image {
    border-radius: 0;
    object-fit: cover !important;
    object-position: center center;
}

.pet-side-stack {
    display: grid;
    height: 520px;
    gap: 16px;
    grid-template-rows: 1fr auto;
}

.screen-card,
.info-card {
    padding: 0;
}

.screen-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.screen-card img {
    width: 100%;
    padding: 10px 16px 16px;
}

.screen-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 0;
}

.screen-kicker,
.note-kicker,
.info-kicker,
.card-kicker {
    display: inline-flex;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.screen-chip {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 6px;
    background: var(--primary-soft);
    color: var(--primary);
    font-family: "Chakra Petch", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Cards (shared) ─────────────────────── */

.info-card,
.capability-card,
.functionality-card,
.segment-card,
.control-card {
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-xs);
    transition: box-shadow 150ms ease, border-color 150ms ease;
}

.info-card:hover,
.capability-card:hover,
.functionality-card:hover,
.segment-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}

.info-card p {
    margin: 8px 0 0;
    color: var(--ink-soft);
    line-height: 1.6;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.capability-card h3,
.functionality-card h3,
.segment-card h3,
.control-card h3,
.contact-brand strong {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.3;
}

.mini-list {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.mini-list li,
.feature-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.92rem;
    line-height: 1.6;
}

.mini-list li::before,
.feature-list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* ── Functionality grid ─────────────────── */

.functionality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.functionality-card {
    height: 100%;
}

.functionality-card h3 {
    margin-top: 8px;
}

/* ── PDV section ────────────────────────── */

.pdv-copy,
.copy-column,
.hero-copy,
.hero-visual,
.visual-column,
.pdv-visual {
    position: relative;
    z-index: 1;
    align-self: start;
}

.feature-list {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.pdv-visual {
    display: grid;
    gap: 16px;
}

.pdv-photo-main {
    height: 400px;
}

.pdv-bottom-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
}

.pdv-terminal-card {
    height: 260px;
}

/* ── Segments ───────────────────────────── */

.section-segments {
    background: var(--surface);
}

.segment-grid,
.control-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.segment-card,
.control-card {
    height: 100%;
}

.segment-index {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    opacity: 0.35;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.segment-card p,
.control-card p {
    margin: 10px 0 0;
    line-height: 1.6;
    font-size: 0.94rem;
}

/* ── Banner card ────────────────────────── */

.banner-card {
    height: 380px;
    margin-top: 24px;
}

.banner-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

.banner-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
}

.banner-caption span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-family: "Chakra Petch", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.banner-caption strong {
    display: block;
    max-width: 420px;
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.35;
}

/* ── Control section ────────────────────── */

.control-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    padding: 40px;
    border-radius: var(--radius-xl);
    background: var(--surface-deep);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.control-shell .eyebrow {
    background: rgba(87, 215, 235, 0.12);
    color: var(--accent);
}

.control-shell .section-text {
    color: rgba(255, 255, 255, 0.65);
}

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

.control-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.control-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.control-card p {
    color: rgba(255, 255, 255, 0.6);
}

/* ── CTA / Contact section ──────────────── */

.cta-section {
    position: relative;
    background: var(--surface-deep);
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12, 166, 191, 0.08), transparent 70%);
    pointer-events: none;
}

.cta-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr minmax(340px, 0.72fr);
    gap: 32px;
    align-items: start;
    padding: 48px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-copy,
.cta-copy h2 {
    color: #ffffff;
}

.contact-panel {
    padding: 28px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.contact-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.contact-brand img {
    width: 48px;
}

.contact-brand span {
    display: block;
    margin-top: 4px;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.contact-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-list span {
    font-size: 0.88rem;
}

.contact-list a,
.contact-list strong {
    color: var(--ink);
    font-weight: 600;
    font-size: 0.92rem;
    text-align: right;
}

/* ── Footer ─────────────────────────────── */

.site-footer {
    padding: 32px 0 48px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.brand-footer img {
    width: 44px;
}

.footer-meta {
    max-width: 640px;
    text-align: right;
}

.footer-meta p {
    margin: 0 0 8px;
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-meta small {
    color: var(--ink-soft);
    font-size: 0.82rem;
}

/* ── Scroll reveal ──────────────────────── */

[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 400ms ease, transform 400ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Reduced motion ─────────────────────── */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* ── Breakpoint: 1180px ─────────────────── */

@media (max-width: 1180px) {
    .hero-grid,
    .split-layout,
    .pdv-layout,
    .control-shell,
    .cta-shell {
        grid-template-columns: 1fr;
    }

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

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

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

    .hero-visual {
        padding-top: 0;
    }

    .hero-photo-card {
        width: 100%;
        max-width: none;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-meta {
        text-align: left;
    }
}

/* ── Breakpoint: 920px ──────────────────── */

@media (max-width: 920px) {
    :root {
        --header-height: 64px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 20px;
        right: 20px;
        display: grid;
        gap: 4px;
        padding: 12px;
        border-radius: var(--radius-md);
        background: var(--surface);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 150ms ease, transform 150ms ease;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 12px 14px;
    }

    .site-nav .nav-cta {
        margin-left: 0;
    }

    .hero {
        padding-top: 48px;
    }

    .hero-metrics,
    .capability-grid,
    .functionality-grid,
    .segment-grid,
    .control-grid,
    .pdv-bottom-grid {
        grid-template-columns: 1fr;
    }

    .pet-visual-grid {
        grid-template-columns: 1fr;
    }

    .pet-side-stack {
        height: auto;
    }

    .hero-badges {
        grid-template-columns: 1fr;
    }

    .contact-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-list a,
    .contact-list strong {
        text-align: left;
    }
}

/* ── Breakpoint: 560px ──────────────────── */

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .support-inner {
        min-height: 44px;
        flex-direction: column;
        justify-content: center;
        padding: 6px 0;
        text-align: center;
        gap: 4px;
    }

    .brand img {
        width: 40px;
    }

    .brand span {
        font-size: 0.72rem;
    }

    .hero-copy h1 {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
    }

    .section-heading h2,
    .copy-column h2,
    .pdv-copy h2,
    .control-copy h2,
    .cta-copy h2 {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }

    .button {
        width: 100%;
    }

    .photo-card,
    .screen-card,
    .info-card,
    .capability-card,
    .functionality-card,
    .segment-card,
    .control-card,
    .control-shell,
    .cta-shell,
    .contact-panel {
        border-radius: var(--radius-md);
    }

    .hero-photo-card {
        height: 360px;
    }

    .pet-photo-card,
    .pdv-photo-main,
    .banner-card {
        height: 280px;
    }

    .pdv-terminal-card {
        height: 220px;
    }

    .section {
        padding: 72px 0;
    }

    .control-shell,
    .cta-shell {
        padding: 24px 20px;
    }
}
