@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --primary: #E85D04;
  --primary-dark: #C44B02;
  --secondary: #F48C06;
  --accent: #FFB703;
  --dark: #1C1917;
  --body-bg: #FFFDF7;
  --surface-1: #FFF8EE;
  --surface-2: #FFF1D9;
  --surface-3: #FFE8C2;
  --surface-dark: #2D1B0E;
  --text-primary: #1C1917;
  --text-muted: #78716C;
  --border: #E7E5E4;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 2px 12px rgba(28,25,23,.07);
  --shadow-md: 0 8px 32px rgba(28,25,23,.12);
  --shadow-lg: 0 20px 60px rgba(28,25,23,.16);
  --font-base: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  background: var(--body-bg);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }

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

section { position: relative; overflow: hidden; }

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.display-serif { font-family: var(--font-display); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-perk {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: .95rem; letter-spacing: .02em;
  border: none; cursor: pointer; transition: all .25s;
  box-shadow: 0 4px 20px rgba(232,93,4,.35);
}
.btn-perk:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,93,4,.45); }
.btn-perk-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--primary);
  padding: 13px 31px; border-radius: 50px;
  font-weight: 700; font-size: .95rem;
  border: 2px solid var(--primary); cursor: pointer; transition: all .25s;
}
.btn-perk-outline:hover { background: var(--primary); color: #fff; }
.btn-perk-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: #fff;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: .95rem;
  border: none; cursor: pointer; transition: all .25s;
}
.btn-perk-dark:hover { background: #2D2520; color: #fff; transform: translateY(-2px); }

/* ── Section Labels ──────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-3); color: var(--primary);
  padding: 6px 16px; border-radius: 50px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 6px; height: 6px;
  background: var(--primary); border-radius: 50%;
}

/* ── Bento Grid ──────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.bento-card {
  background: var(--surface-1);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.bento-card.dark { background: var(--dark); color: #fff; border-color: transparent; }
.bento-card.dark h3, .bento-card.dark h4, .bento-card.dark p { color: #fff; }
.bento-card.primary { background: var(--primary); color: #fff; border-color: transparent; }
.bento-card.primary h3, .bento-card.primary h4, .bento-card.primary p { color: #fff; }
.bento-card.accent { background: var(--accent); color: var(--dark); border-color: transparent; }
.bento-card.surface-2 { background: var(--surface-2); }
.bento-card.surface-3 { background: var(--surface-3); }

.bento-span-4 { grid-column: span 4; }
.bento-span-6 { grid-column: span 6; }
.bento-span-8 { grid-column: span 8; }
.bento-span-12 { grid-column: span 12; }
.bento-row-2 { grid-row: span 2; }

@media (max-width: 991px) {
  .bento-span-4, .bento-span-6, .bento-span-8 { grid-column: span 12; }
}

/* ── Decorative Elements ─────────────────────────────────── */
.deco-blob {
  position: absolute; border-radius: 50%; opacity: .08; pointer-events: none;
  background: var(--primary); filter: blur(60px);
}
.deco-blob-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.deco-blob-2 { width: 300px; height: 300px; bottom: -80px; left: -80px; background: var(--accent); }
.deco-dots {
  position: absolute; opacity: .12; pointer-events: none;
  background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.deco-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 2px solid var(--primary); opacity: .1;
}

/* ── Stat Cards ──────────────────────────────────────────── */
.stat-card {
  text-align: center; padding: 28px 20px;
  background: #fff; border-radius: var(--radius-md);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.stat-card .stat-num {
  font-family: var(--font-display); font-size: 2.8rem;
  font-weight: 800; color: var(--primary); line-height: 1;
}
.stat-card .stat-label { font-size: .85rem; color: var(--text-muted); margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ── Process Steps ───────────────────────────────────────── */
.step-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; background: #fff;
  border-radius: var(--radius-md); border: 1px solid var(--border);
  transition: box-shadow .3s;
}
.step-item:hover { box-shadow: var(--shadow-md); }
.step-num {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--primary); color: #fff;
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; font-family: var(--font-display);
}

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-sm); aspect-ratio: 4/3;
  background: var(--surface-2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(28,25,23,.75));
  color: #fff; font-size: .8rem; font-weight: 600;
}
@media (max-width: 767px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Team Cards ──────────────────────────────────────────── */
.team-card {
  background: #fff; border-radius: var(--radius-md);
  border: 1px solid var(--border); overflow: hidden;
  transition: transform .3s, box-shadow .3s; text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo {
  width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--surface-2);
}
.team-info { padding: 24px 20px; }
.team-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.team-role { color: var(--primary); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  background: #fff; border-radius: var(--radius-sm);
  border: 1px solid var(--border); margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; padding: 20px 24px;
  background: transparent; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 1rem; color: var(--text-primary);
  transition: color .2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--surface-3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .3s, background .3s; }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-answer { padding: 0 24px 20px; color: var(--text-muted); font-size: .95rem; }

/* ── Reviews ─────────────────────────────────────────────── */
.review-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); height: 100%;
}
.review-stars { color: var(--accent); font-size: 1rem; margin-bottom: 14px; }
.review-text { font-style: italic; color: var(--text-primary); margin-bottom: 20px; font-size: .95rem; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--surface-2); flex-shrink: 0; }
.reviewer-name { font-weight: 700; font-size: .9rem; }
.reviewer-meta { font-size: .8rem; color: var(--text-muted); }

/* ── Partners ────────────────────────────────────────────── */
.partners-track {
  display: flex; gap: 32px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.partner-logo {
  height: 60px; width: 140px; object-fit: contain;
  background: var(--surface-2); border-radius: var(--radius-sm);
  padding: 10px 20px; opacity: .7; transition: opacity .3s;
  display: flex; align-items: center; justify-content: center;
}
.partner-logo:hover { opacity: 1; }

/* ── Hero ────────────────────────────────────────────────── */
.hero-section {
  min-height: 85vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #1C1917 0%, #2D1B0E 50%, #3D2410 100%);
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,93,4,.25) 0%, transparent 60%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,183,3,.15); border: 1px solid rgba(255,183,3,.3);
  color: var(--accent); padding: 6px 16px; border-radius: 50px;
  font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title { font-size: clamp(2.2rem, 5vw, 4rem); color: #fff; margin-bottom: 20px; }
.hero-lead { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 520px; }

/* ── Carousel overrides ──────────────────────────────────── */
.carousel-slide {
  min-height: 85vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.carousel-slide img.slide-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(28,25,23,.88) 0%, rgba(45,27,14,.6) 100%);
}
.slide-content { position: relative; z-index: 2; }

/* ── Map Section ─────────────────────────────────────────── */
.map-section { background: var(--surface-1); }
.map-embed { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.map-embed iframe { width: 100%; height: 400px; border: none; display: block; }
.info-chip {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 24px; background: #fff;
  border-radius: var(--radius-md); border: 1px solid var(--border);
  margin-bottom: 16px;
}
.info-chip .chip-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--surface-3); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.info-chip .chip-label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; font-weight: 700; margin-bottom: 2px; }
.info-chip .chip-val { font-weight: 600; font-size: .95rem; }

/* ── Pricing ─────────────────────────────────────────────── */
.price-card {
  background: #fff; border-radius: var(--radius-md);
  border: 2px solid var(--border); padding: 36px 28px;
  transition: all .3s; height: 100%;
}
.price-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.price-card.featured { background: var(--dark); color: #fff; border-color: var(--primary); }
.price-card.featured p, .price-card.featured ul li { color: rgba(255,255,255,.8); }
.price-tag { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.price-tag sup { font-size: 1.2rem; vertical-align: top; margin-top: 10px; display: inline-block; }
.price-tag sub { font-family: var(--font-base); font-size: .85rem; font-weight: 500; color: var(--text-muted); }
.price-card.featured .price-tag sub { color: rgba(255,255,255,.6); }
.price-check-list { list-style: none; padding: 0; margin: 0; }
.price-check-list li { padding: 7px 0; display: flex; align-items: center; gap: 10px; font-size: .9rem; border-bottom: 1px solid var(--border); }
.price-card.featured .price-check-list li { border-bottom-color: rgba(255,255,255,.1); }
.price-check-list li i { color: var(--primary); font-size: .85rem; }

/* ── Comparison Table ────────────────────────────────────── */
.compare-table { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.compare-table thead th { background: var(--dark); color: #fff; padding: 16px 20px; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.compare-table tbody td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: .9rem; vertical-align: middle; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(odd) td { background: var(--surface-1); }
.compare-table td i.fa-check { color: #22C55E; }
.compare-table td i.fa-xmark { color: #EF4444; }

/* ── Cookie Banner ───────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--dark); color: #fff; padding: 20px 0;
  transform: translateY(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -8px 40px rgba(0,0,0,.3);
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner a { color: var(--accent); }
.cookie-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: .9rem; color: rgba(255,255,255,.85); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-ok {
  background: var(--primary); color: #fff; border: none;
  padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: .85rem; cursor: pointer;
}
.btn-cookie-decline {
  background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.2);
  padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: .85rem; cursor: pointer;
}

/* ── Form ────────────────────────────────────────────────── */
.form-wrap { background: #fff; border-radius: var(--radius-md); padding: 48px; box-shadow: var(--shadow-md); }
.form-control-perk {
  border: 2px solid var(--border); border-radius: 12px;
  padding: 14px 18px; font-size: .95rem; font-family: var(--font-base);
  transition: border-color .2s; background: var(--surface-1); width: 100%;
}
.form-control-perk:focus { border-color: var(--primary); outline: none; background: #fff; }
.form-label-perk { font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 8px; display: block; }
.form-notification {
  display: none; align-items: center; gap: 12px;
  padding: 16px 20px; border-radius: 12px; margin-top: 16px;
  font-weight: 600;
}
.form-notification.success { background: #F0FDF4; border: 1px solid #86EFAC; color: #166534; display: flex; }
.form-notification.error { background: #FEF2F2; border: 1px solid #FCA5A5; color: #991B1B; display: flex; }

/* ── Header ──────────────────────────────────────────────── */
.site-topbar {
  background: var(--dark); color: rgba(255,255,255,.75);
  padding: 9px 0; font-size: .82rem;
}
.site-topbar a { color: rgba(255,255,255,.75); }
.site-navbar {
  background: #fff; padding: 0;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1040;
  box-shadow: var(--shadow-sm);
}
.site-navbar .navbar-brand img { height: 44px; width: auto; }
.site-navbar .nav-link {
  font-weight: 700; font-size: .85rem; color: var(--text-primary) !important;
  padding: 24px 14px !important; letter-spacing: .02em;
  border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active { color: var(--primary) !important; border-bottom-color: var(--primary); }
.site-navbar .nav-cta {
  background: var(--primary); color: #fff !important;
  padding: 10px 20px !important; border-radius: 50px; margin-left: 8px;
  border-bottom: none !important;
}
.site-navbar .nav-cta:hover { background: var(--primary-dark); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,.75); padding: 70px 0 0;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 20px; filter: brightness(10); }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.55); margin-bottom: 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-heading { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; color: rgba(255,255,255,.4); margin-bottom: 18px; font-family: var(--font-base); }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color .2s; }
.footer-nav a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .9rem; }
.footer-contact-item i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-divider { border-color: rgba(255,255,255,.08); margin: 50px 0 0; }
.footer-bottom { padding: 20px 0; font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-legal a:hover { color: var(--accent); }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--surface-dark) 100%);
  padding: 90px 0 70px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(var(--primary), transparent 70%);
  opacity: .12; right: -150px; top: -150px;
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 580px; font-size: 1.05rem; }
.breadcrumb-perk { display: flex; gap: 8px; align-items: center; font-size: .82rem; margin-bottom: 20px; }
.breadcrumb-perk a { color: rgba(255,255,255,.5); }
.breadcrumb-perk span { color: rgba(255,255,255,.3); }
.breadcrumb-perk .current { color: var(--accent); font-weight: 600; }

/* ── Menu / Price List ───────────────────────────────────── */
.menu-category { margin-bottom: 50px; }
.menu-category-title { font-family: var(--font-display); font-size: 1.6rem; color: var(--primary); border-bottom: 2px solid var(--surface-3); padding-bottom: 10px; margin-bottom: 24px; }
.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px dashed var(--border);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-weight: 700; font-size: 1rem; margin-bottom: 3px; }
.menu-item-desc { font-size: .85rem; color: var(--text-muted); }
.menu-item-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--primary); flex-shrink: 0; margin-left: 20px; }

/* ── Blog ────────────────────────────────────────────────── */
.post-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); transition: transform .3s, box-shadow .3s;
  height: 100%;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-body { padding: 28px; }
.post-cat { display: inline-block; background: var(--surface-3); color: var(--primary); padding: 3px 12px; border-radius: 50px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.post-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--text-primary); margin-bottom: 10px; line-height: 1.35; }
.post-excerpt { font-size: .9rem; color: var(--text-muted); margin-bottom: 18px; }
.post-meta { font-size: .8rem; color: var(--text-muted); display: flex; gap: 14px; }

/* ── Thank You ───────────────────────────────────────────── */
.thankyou-icon {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: #fff; margin: 0 auto 32px; box-shadow: 0 16px 48px rgba(232,93,4,.35);
}

/* ── Service Hero ────────────────────────────────────────── */
.service-hero {
  background: linear-gradient(135deg, #1C1917 0%, #3D2410 100%);
  padding: 100px 0 80px; position: relative; overflow: hidden;
}
.service-hero .hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,183,3,.15); border: 1px solid rgba(255,183,3,.3);
  color: var(--accent); padding: 6px 16px; border-radius: 50px;
  font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 20px;
}
.service-hero h1 { color: #fff; }
.service-hero p { color: rgba(255,255,255,.75); }

/* ── Guarantee Chips ─────────────────────────────────────── */
.guarantee-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25);
  color: #166534; padding: 7px 16px; border-radius: 50px;
  font-size: .82rem; font-weight: 700; margin: 4px;
}
.guarantee-chip i { color: #22C55E; }

/* ── Internal Links Block ────────────────────────────────── */
.link-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.link-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 2px solid var(--border);
  padding: 12px 22px; border-radius: 50px; font-weight: 700; font-size: .88rem;
  color: var(--text-primary); transition: all .25s;
}
.link-pill:hover { border-color: var(--primary); color: var(--primary); background: var(--surface-1); }
.link-pill i { color: var(--primary); font-size: .8rem; }

/* ── Utilities ───────────────────────────────────────────── */
.text-primary-brand { color: var(--primary); }
.bg-dark-brand { background: var(--dark); }
.bg-surface-1 { background: var(--surface-1); }
.bg-surface-2 { background: var(--surface-2); }
.rounded-xl { border-radius: var(--radius-md); }
.shadow-brand { box-shadow: var(--shadow-md); }

.overflow-hidden { overflow: hidden; }
.aspect-video { aspect-ratio: 16/9; }
.aspect-square { aspect-ratio: 1; }
.object-cover { object-fit: cover; width: 100%; height: 100%; }
.img-placeholder { background: var(--surface-2); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: .8rem; }

@media (max-width: 575px) {
  .section-pad { padding: 60px 0; }
  .form-wrap { padding: 28px 20px; }
  .bento-card { padding: 22px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}
