/* ===================================================
   Laser Weeding – Main Stylesheet
   Optimized for performance & SEO (no external deps)
   =================================================== */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #1a7a3c;
  --color-primary-dark: #145f2e;
  --color-primary-light: #2da055;
  --color-accent: #e8f542;
  --color-accent-dark: #c8d400;
  --color-dark: #1a1a1a;
  --color-text: #2d2d2d;
  --color-text-muted: #5a5a5a;
  --color-bg: #ffffff;
  --color-bg-alt: #f4f9f5;
  --color-bg-dark: #0f2e1a;
  --color-border: #d0e8d8;
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
  --max-width: 1100px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--color-dark);
  font-weight: 700;
}

p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 4rem 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-bg-dark); color: #e8f0eb; }
.section--dark h2, .section--dark h3 { color: #ffffff; }
.section--dark p, .section--dark li { color: #c8dece; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* --- Skip Navigation (Accessibility) --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 9999;
  font-size: 0.9rem;
}
.skip-nav:focus { top: 1rem; }

/* --- Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-primary-dark);
  white-space: nowrap;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo .logo-icon svg { width: 22px; height: 22px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  display: block;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
}

.nav-menu a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 2px;
}

.lang-switch a {
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: background var(--transition), color var(--transition);
}

.lang-switch a.active,
.lang-switch a:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a4a28 50%, #0a2210 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 46, 26, 0.55);
  z-index: 2;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 3; max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(232, 245, 66, 0.15);
  border: 1px solid rgba(232, 245, 66, 0.4);
  color: var(--color-accent);
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}

.hero-lead {
  font-size: 1.15rem;
  color: #a8d4b8;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.75rem; color: var(--color-accent); font-weight: 800; line-height: 1; }
.hero-stat span { font-size: 0.85rem; color: #8ab89a; margin-top: 0.25rem; display: block; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1.3;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,122,60,0.35); }

.btn-accent {
  background: var(--color-accent);
  color: var(--color-dark);
}
.btn-accent:hover { background: var(--color-accent-dark); color: var(--color-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200, 212, 0, 0.4); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.7); }

.btn-outline-green {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}
.btn-outline-green:hover { background: var(--color-primary); color: #fff; }

.btn-lg { padding: 0.9rem 1.8rem; font-size: 1.05rem; border-radius: 10px; }

/* --- Section Headings --- */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; color: var(--color-text-muted); max-width: 600px; margin: 0 auto; }
.section-label {
  display: inline-block;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* --- Cards --- */
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 0; }

/* --- Partner / Promo Cards --- */
.partner-card {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.partner-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow-lg); }

.partner-card .partner-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.2rem;
}

.partner-logo .logo-badge {
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-futonics { background: #1a1a2e; color: #e8f542; }
.badge-naiture { background: var(--color-primary-dark); color: #fff; }

.partner-card h3 { font-size: 1.15rem; }
.partner-card p { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 0; flex: 1; }

/* --- Process Steps --- */
.process-list { counter-reset: steps; display: flex; flex-direction: column; gap: 1.5rem; }

.process-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  counter-increment: steps;
}

.process-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(26,122,60,0.3);
}

.process-item h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.process-item p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th {
  background: var(--color-primary);
  color: #fff;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
}

.comparison-table th:first-child { background: var(--color-primary-dark); }

.comparison-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--color-bg-alt); }

.check { color: var(--color-primary); font-weight: 700; font-size: 1.1rem; }
.cross { color: #cc3333; font-weight: 700; font-size: 1.1rem; }
.partial { color: #cc7700; font-weight: 700; }

/* --- FAQ Accordion --- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  transition: background var(--transition);
}

.faq-question:hover { background: var(--color-bg-alt); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--color-primary); color: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 1.25rem;
}

.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.25rem 1.1rem; }
.faq-answer p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 1.75rem; font-size: 1.05rem; }
.cta-banner .btn-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* --- Footer --- */
.site-footer {
  background: var(--color-dark);
  color: #8a9e91;
  padding: 3rem 0 1.5rem;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p { max-width: 280px; margin-top: 0.75rem; color: #5a6e61; }

.footer-col h4 {
  color: #d0e8d8;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: #5a6e61; transition: color var(--transition); }
.footer-col a:hover { color: var(--color-primary-light); text-decoration: none; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  color: #3a4e41;
  font-size: 0.8rem;
}

.footer-bottom a { color: #5a6e61; }
.footer-bottom a:hover { color: var(--color-primary-light); }

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
  list-style: none;
  padding: 0.75rem 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.breadcrumb li + li::before { content: '›'; margin-right: 0.25rem; }
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-primary); }

/* --- Highlight Box --- */
.highlight-box {
  background: linear-gradient(135deg, #e8f8ee 0%, #d0f0da 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box p { margin: 0; font-size: 0.95rem; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--color-border); padding: 1rem; gap: 0.25rem; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .section { padding: 2.5rem 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero-stats { gap: 1.25rem; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 0.65rem 0.75rem; }
}

@media (max-width: 400px) {
  .nav-logo span { display: none; }
}

/* --- Print Styles --- */
@media print {
  .site-header, .nav-toggle, .cta-banner { display: none !important; }
  body { color: #000; }
  a::after { content: ' (' attr(href) ')'; font-size: 0.75em; }
}

/* ===================================================
   Image Styles
   =================================================== */

/* Section full-width image with overlay caption */
.section-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2.5rem 0;
}

.section-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.section-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  padding: 1.5rem 1.5rem 1rem;
  font-size: 0.875rem;
}

.section-img-caption strong { display: block; font-size: 1rem; margin-bottom: 0.2rem; }

/* Card with header image */
.card-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--color-bg);
}

.card-img:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.card-img-header {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-img-body { padding: 1.25rem 1.5rem 1.5rem; }
.card-img-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.card-img-body p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

/* Image-text split block */
.img-text-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin: 2rem 0;
}

.img-text-block.reverse { direction: rtl; }
.img-text-block.reverse > * { direction: ltr; }

.img-text-block img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Gallery strip */
.img-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.img-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.img-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.img-gallery-item:hover img { transform: scale(1.04); }

/* Partner card image */
.partner-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

/* Laser animation image overlay */
.laser-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.laser-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.laser-beam-overlay {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, transparent 0%, #e8f542 40%, #ff4444 60%, transparent 100%);
  animation: laser-pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 12px 4px rgba(232, 245, 66, 0.6);
}

/* Responsive image adjustments */
@media (max-width: 900px) {
  .img-text-block { grid-template-columns: 1fr; }
  .img-text-block.reverse { direction: ltr; }
  .img-gallery { grid-template-columns: 1fr 1fr; }
  .section-img-wrap img { height: 260px; }
}

@media (max-width: 680px) {
  .img-gallery { grid-template-columns: 1fr; }
  .card-img-header { height: 160px; }
  .img-text-block img { height: 220px; }
}

/* ===================================================
   Legal Pages (Impressum / Datenschutz)
   =================================================== */
.legal-page { max-width: 780px; margin: 3rem auto; padding: 0 1.25rem 4rem; }
.legal-page h1 { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.legal-page .legal-updated { color: var(--color-text-muted); font-size: 0.875rem; margin-bottom: 2.5rem; display: block; }
.legal-page h2 { font-size: 1.15rem; margin-top: 2rem; margin-bottom: 0.5rem; border-bottom: 1px solid var(--color-border); padding-bottom: 0.4rem; }
.legal-page h3 { font-size: 1rem; margin-top: 1.25rem; margin-bottom: 0.35rem; }
.legal-page p, .legal-page li { font-size: 0.95rem; color: var(--color-text); }
.legal-page address { font-style: normal; line-height: 1.8; }
.legal-page .placeholder { background: #fff3cd; padding: 0.1rem 0.4rem; border-radius: 4px; font-size: 0.875rem; color: #856404; }

/* ===================================================
   Cookie Consent Banner
   =================================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: #f0f0f0;
  border-top: 2px solid var(--color-primary, #e8f542);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.45);
}
.cb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cb-text { flex: 1 1 300px; }
.cb-title { font-weight: 700; font-size: 1rem; margin: 0 0 0.3rem; color: #fff; }
.cb-text p { margin: 0; font-size: 0.875rem; color: #ccc; line-height: 1.5; }
.cb-text a { color: var(--color-primary, #e8f542); text-decoration: underline; }
.cb-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }
.cb-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius, 6px);
  cursor: pointer;
  transition: opacity 0.15s;
}
.cb-btn:hover { opacity: 0.85; }
.cb-btn-accept { background: var(--color-primary, #e8f542); color: #111; }
.cb-btn-decline { background: transparent; color: #ccc; border: 1px solid #555; }
.cb-btn-decline:hover { border-color: #aaa; color: #fff; opacity: 1; }

@media (max-width: 600px) {
  .cb-inner { flex-direction: column; align-items: stretch; }
  .cb-actions { justify-content: stretch; }
  .cb-btn { flex: 1; text-align: center; }
}
