/* KeepCard — Shared Stylesheet */

:root {
  --primary: #6C63FF;
  --primary-dark: #5548E0;
  --primary-light: #EEEEFF;
  --dark: #0F0E1A;
  --dark-mid: #2D2B4E;
  --gray: #6B7280;
  --light-gray: #F9FAFB;
  --border: #E5E7EB;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(108, 99, 255, 0.12);
  --shadow-lg: 0 20px 60px rgba(108, 99, 255, 0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.22s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--dark);
  line-height: 1.65;
  background: var(--white);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 600; line-height: 1.35; }
p { color: var(--gray); line-height: 1.7; }
a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ─── NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.2rem; color: var(--dark); text-decoration: none;
}
.logo-icon {
  width: 34px; height: 34px;
  background: var(--primary);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-links a { color: var(--gray); font-weight: 500; font-size: 0.95rem; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.btn-nav-dl {
  background: var(--dark); color: var(--white) !important;
  padding: 9px 18px; border-radius: 999px;
  font-size: 0.875rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 7px;
  transition: var(--transition);
}
.btn-nav-dl:hover { background: var(--primary); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(108,99,255,0.3); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  z-index: 199;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid var(--border); }
.mobile-menu ul li:last-child { border-bottom: none; }
.mobile-menu ul li a {
  display: block; padding: 14px 0; color: var(--dark);
  font-weight: 500; transition: var(--transition);
}
.mobile-menu ul li a:hover { color: var(--primary); }
.mobile-menu .btn-mobile-dl {
  display: block; width: 100%; margin-top: 16px; text-align: center;
  background: var(--dark); color: var(--white);
  padding: 13px; border-radius: 12px; font-weight: 700;
  transition: var(--transition);
}
.mobile-menu .btn-mobile-dl:hover { background: var(--primary); }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-appstore {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--dark); color: var(--white);
  padding: 13px 22px; border-radius: 14px;
  font-weight: 700; text-decoration: none;
  transition: var(--transition);
}
.btn-appstore:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(108,99,255,0.35);
}
.btn-appstore-text { line-height: 1.2; }
.btn-appstore-sub { font-size: 0.68rem; font-weight: 400; opacity: 0.75; display: block; }
.btn-appstore-main { font-size: 1rem; display: block; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dark); color: var(--white);
  padding: 14px 28px; border-radius: 14px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none; transition: var(--transition);
}
.btn-primary:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(108,99,255,0.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--border); color: var(--dark);
  padding: 13px 26px; border-radius: 14px;
  font-weight: 600; font-size: 1rem;
  text-decoration: none; transition: var(--transition);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ─── SECTION BASICS ──────────────────────────────────── */
section { padding: 80px 0; }
.section-label {
  display: inline-block;
  background: var(--primary-light); color: var(--primary);
  padding: 4px 14px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ─── HERO ────────────────────────────────────────────── */
.hero { padding: 72px 0 56px; overflow: hidden; position: relative; }
.hero::before {
  content: '';
  position: absolute; top: -160px; right: -180px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(108,99,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--primary-light); color: var(--primary);
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 700; margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--primary); }
.hero-desc { font-size: 1.1rem; margin-bottom: 36px; max-width: 500px; }
.hero-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--gray); }
.stars { color: #F59E0B; letter-spacing: -1px; }

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 256px; height: 520px;
  background: #111; border-radius: 46px;
  padding: 11px;
  box-shadow: 0 48px 96px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08),
              inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.phone-screen { background: #F6F6FF; border-radius: 37px; height: 100%; overflow: hidden; }
.phone-top { height: 44px; background: white; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 2px; }
.phone-pill { width: 100px; height: 28px; background: #111; border-radius: 0 0 20px 20px; }
.phone-app-header {
  background: white; padding: 10px 16px 6px;
  display: flex; align-items: center; justify-content: space-between;
}
.phone-app-title { font-size: 19px; font-weight: 800; color: var(--dark); }
.phone-add { width: 28px; height: 28px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.phone-search {
  margin: 6px 12px; background: #EDEDF5; border-radius: 10px;
  padding: 7px 11px; display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: #9CA3AF;
}
.phone-cards { padding: 8px 12px; display: flex; flex-direction: column; gap: 9px; }
.phone-card {
  border-radius: 14px; padding: 12px 14px; height: 62px;
  display: flex; align-items: center; justify-content: space-between;
}
.pc1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.pc2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.pc3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.pc4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.pc-name { color: rgba(255,255,255,0.95); font-size: 12px; font-weight: 700; }
.pc-badge {
  background: rgba(255,255,255,0.22); color: white;
  font-size: 9px; padding: 3px 8px; border-radius: 6px; font-weight: 600;
}

/* ─── FEATURES GRID ───────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-3px);
}
.feature-icon {
  width: 48px; height: 48px; background: var(--primary-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.feature-card h3 { color: var(--dark); margin-bottom: 8px; }

/* ─── HIGHLIGHT (Fast Checkout) ───────────────────────── */
.highlight-wrap { padding: 0 24px 80px; max-width: 1100px; margin: 0 auto; }
.highlight {
  background: var(--primary); border-radius: 28px; padding: 60px 56px;
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
}
.highlight .section-label { background: rgba(255,255,255,0.18); color: white; }
.highlight h2 { color: white; margin: 8px 0 14px; }
.highlight > div > p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 28px; }
.hl-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.hl-list li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: 0.95rem; }
.hl-list li::before {
  content: '✓'; width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800;
}

/* Checkout card demo */
.checkout-demo { flex-shrink: 0; }
.checkout-card {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 20px; padding: 22px; width: 190px; text-align: center;
}
.cc-name { color: white; font-weight: 700; font-size: 0.95rem; margin-bottom: 12px; }
.cc-barcode { background: white; border-radius: 10px; padding: 10px 8px; margin-bottom: 8px; }
.barcode-bars { display: flex; gap: 2.5px; justify-content: center; height: 42px; align-items: stretch; }
.barcode-bars span { display: block; background: #111; border-radius: 1px; }
.cc-num { color: rgba(255,255,255,0.65); font-size: 0.72rem; font-family: monospace; }

/* ─── CARD TYPES ──────────────────────────────────────── */
.card-types-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.card-type {
  background: var(--light-gray); border-radius: var(--radius-sm);
  padding: 20px 12px; text-align: center; transition: var(--transition);
}
.card-type:hover { background: var(--primary-light); transform: translateY(-2px); }
.ct-icon { font-size: 1.8rem; margin-bottom: 8px; }
.card-type p { font-size: 0.82rem; color: var(--dark); font-weight: 500; }

/* ─── TESTIMONIALS ────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.t-stars { color: #F59E0B; font-size: 0.95rem; margin-bottom: 12px; letter-spacing: -1px; }
.t-text { color: var(--dark); font-size: 0.93rem; line-height: 1.65; margin-bottom: 16px; }
.t-author { font-size: 0.82rem; color: var(--gray); font-weight: 500; }

/* ─── LANGUAGES ───────────────────────────────────────── */
.languages-section { background: var(--light-gray); }
.lang-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.lang-tag {
  background: white; border: 1px solid var(--border);
  border-radius: 999px; padding: 7px 18px;
  font-size: 0.88rem; color: var(--dark); font-weight: 500;
}

/* ─── CTA SECTION ─────────────────────────────────────── */
.cta-section { text-align: center; padding: 80px 24px; }
.cta-inner { max-width: 580px; margin: 0 auto; }
.cta-section h2 { margin-bottom: 14px; }
.cta-section > .cta-inner > p { font-size: 1.05rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ──────────────────────────────────────────── */
footer { background: var(--dark); color: rgba(255,255,255,0.55); padding: 52px 0 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-brand .logo { color: white; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); max-width: 280px; }
.footer-col h4 {
  color: white; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; font-size: 0.82rem;
  display: flex; justify-content: space-between; align-items: center;
}

/* ─── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero { padding: 64px 0 56px; text-align: center; background: var(--light-gray); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ─── BREADCRUMBS ─────────────────────────────────────── */
.breadcrumbs { padding: 14px 0; font-size: 0.82rem; color: var(--gray); }
.breadcrumbs a { color: var(--gray); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { margin: 0 6px; opacity: 0.5; }

/* ─── FEATURES PAGE ───────────────────────────────────── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 64px 0; border-top: 1px solid var(--border);
}
.feature-row:first-child { border-top: none; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row-icon {
  width: 56px; height: 56px; background: var(--primary-light); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 18px;
}
.feature-row h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 14px; }
.feature-row p { font-size: 1rem; margin-bottom: 12px; }
.feature-row ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.feature-row ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.94rem; color: var(--gray);
}
.feature-row ul li::before {
  content: '✓'; color: var(--primary); font-weight: 800;
  font-size: 0.8rem; margin-top: 3px; flex-shrink: 0;
}
.feature-visual {
  background: var(--light-gray); border-radius: 20px;
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; overflow: hidden; position: relative;
}
/* Screenshot overrides — real App Store screenshots */
.feature-visual.screenshot {
  background: transparent;
  aspect-ratio: auto;
  border-radius: 0;
  overflow: visible;
  padding: 0;
}
.feature-visual.screenshot img {
  max-width: 250px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 24px 56px rgba(0,0,0,0.13), 0 0 0 1px rgba(0,0,0,0.04);
  display: block;
  margin: 0 auto;
}
.feature-visual-inner {
  display: flex; flex-direction: column; gap: 10px; width: 80%; padding: 16px 0;
}
.mini-card {
  border-radius: 12px; padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.mc1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.mc2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.mc3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.mc-name { color: white; font-size: 13px; font-weight: 700; }
.mc-code { background: rgba(255,255,255,0.25); color: white; font-size: 9px; padding: 3px 8px; border-radius: 5px; }

/* ─── FAQ PAGE ────────────────────────────────────────── */
.faq-wrap { max-width: 740px; margin: 0 auto; padding: 0 24px 80px; }
.faq-category { margin-bottom: 40px; }
.faq-category-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--primary); margin-bottom: 16px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; }
.faq-q {
  padding: 18px 22px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 0.97rem; color: var(--dark);
  background: var(--white); gap: 16px; transition: var(--transition);
  user-select: none;
}
.faq-q:hover { background: var(--light-gray); }
.faq-q .faq-icon { color: var(--primary); font-size: 1.3rem; flex-shrink: 0; line-height: 1; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 18px; color: var(--gray); font-size: 0.94rem; line-height: 1.75; background: white; }
.faq-a a { color: var(--primary); font-weight: 500; }
.faq-item.open .faq-a { display: block; }

/* ─── GUIDE / ARTICLE ─────────────────────────────────── */
.article-wrap { max-width: 740px; margin: 0 auto; padding: 48px 24px 80px; }
.article-meta { font-size: 0.85rem; color: var(--gray); margin-bottom: 32px; display: flex; gap: 20px; flex-wrap: wrap; }
.article-wrap h2 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); margin: 44px 0 14px; color: var(--dark); }
.article-wrap h3 { font-size: 1.1rem; margin: 28px 0 10px; color: var(--dark); }
.article-wrap p { margin-bottom: 18px; font-size: 1rem; line-height: 1.8; }
.article-wrap ul, .article-wrap ol { padding-left: 22px; margin-bottom: 18px; }
.article-wrap li { margin-bottom: 8px; color: var(--gray); line-height: 1.75; }
.article-wrap strong { color: var(--dark); font-weight: 600; }
.article-callout {
  background: var(--primary-light); border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px; margin: 24px 0;
}
.article-callout p { color: var(--dark-mid); margin: 0; }

/* ─── HERO QR CODE ────────────────────────────────────── */
.hero-qr {
  display: flex; align-items: center; gap: 12px;
}
.hero-qr img {
  width: 96px; height: 96px; border-radius: 12px;
  border: 1px solid var(--border); background: white; padding: 5px;
  flex-shrink: 0;
}
.hero-qr span {
  font-size: 0.8rem; color: var(--gray); line-height: 1.55;
}
@media (max-width: 960px) {
  .hero-qr { display: none; }
}

/* ─── HERO SCREENSHOT ─────────────────────────────────── */
.hero-screenshot {
  width: 256px;
  height: 450px;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.14), 0 0 0 1px rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.hero-screenshot img {
  width: 256px;
  display: block;
  /* Shifts image up to hide the App Store marketing text header (~19% of image height) */
  margin-top: -102px;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { max-width: none; margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .phone-wrap { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight { grid-template-columns: 1fr; padding: 44px 36px; }
  .checkout-demo { display: flex; justify-content: center; }
  .card-types-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 56px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .card-types-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-wrap { padding: 0 16px 56px; }
  .highlight { padding: 36px 24px; border-radius: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .faq-wrap { padding: 0 16px 56px; }
  .article-wrap { padding: 32px 16px 56px; }
  .patrol-card { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
  .patrol-card p { max-width: none; }
  .patrol-dog { width: 200px; margin: 0 auto; }
  .mascot-cta-dog { max-width: 300px; }
  .mascot-feature-dog { max-width: 180px; }
}

/* ─── MASCOT / PATROL SECTION ─────────────────────────── */
.patrol-section { background: #FFF3EC; }
.patrol-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.patrol-card {
  background: white;
  border-radius: 28px;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: center;
  box-shadow: 0 4px 32px rgba(0,0,0,0.05);
}
.patrol-label {
  display: inline-block;
  background: #FFF0E6; color: #D95F02;
  padding: 4px 14px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.patrol-card h2 { color: var(--dark); margin-bottom: 14px; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.patrol-card p { font-size: 1.05rem; max-width: 480px; margin-bottom: 28px; }
.patrol-dog { width: 100%; }
.patrol-dog img { width: 100%; height: auto; display: block; }

/* Mascot CTA banner */
.mascot-cta-section {
  text-align: center;
  padding: 8px 24px 48px;
  overflow: hidden;
  line-height: 0;
}
.mascot-cta-dog {
  max-width: 420px;
  margin: 0 auto;
  display: block;
}
.mascot-cta-dog img { width: 100%; height: auto; display: block; }

/* Mascot on features page */
.mascot-feature-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: #FFF3EC;
  border-radius: 24px;
  padding: 36px 48px;
  margin: 0 0 0;
  flex-wrap: wrap;
  text-align: left;
}
.mascot-feature-dog { width: 220px; flex-shrink: 0; }
.mascot-feature-dog img { width: 100%; height: auto; display: block; }
.mascot-feature-text h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 8px; color: var(--dark); }
.mascot-feature-text p { font-size: 0.95rem; margin-bottom: 20px; max-width: 380px; }

@media (max-width: 960px) {
  .patrol-card { grid-template-columns: 1fr; padding: 40px 36px; text-align: center; }
  .patrol-card p { max-width: none; }
  .patrol-dog { width: 240px; margin: 0 auto; }
  .mascot-feature-banner { text-align: center; }
  .mascot-feature-text p { max-width: none; }
}
