/* =============================================
   REVIVAL CROP NUTRITION — SHARED STYLESHEET
   ============================================= */

/* Google Fonts are loaded in HTML */

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  /* Colors — derived from Revival logo (blue sky, green leaves, brown earth) */
  --color-blue: #3D7EC7;
  --color-blue-dark: #2B5E99;
  --color-blue-light: #5A9ADF;
  --color-blue-pale: #E8F1FA;
  --color-green: #3BA545;
  --color-green-dark: #2D8035;
  --color-green-light: #4CB85A;
  --color-earth: #A0632A;
  --color-earth-light: #C4884E;
  --color-earth-dark: #7A4A1C;
  --color-bg: #F5F9FD;
  --color-gold: #C4884E;
  --color-terracotta: #A0632A;
  --color-text: #1A2A3A;
  --color-text-muted: rgba(26, 42, 58, 0.6);
  --color-white: #FFFFFF;
  --color-soft-green: #E6F5E8;
  --color-soft-blue: #E8F1FA;
  --color-border: rgba(61, 126, 199, 0.12);

  /* Typography — matches Revival logo font (clean geometric sans-serif) */
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: 80px 0;
  --section-pad-sm: 48px 0;
  --container-max: 1200px;
  --container-pad: 0 24px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 2px 16px rgba(61, 126, 199, 0.08);
  --shadow-card-hover: 0 8px 32px rgba(61, 126, 199, 0.18);
  --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p {
  color: var(--color-text-muted);
  line-height: 1.75;
}

.text-white p,
.hero p {
  color: rgba(255, 255, 255, 0.82);
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--container-pad);
}

/* =============================================
   SECTION UTILITIES
   ============================================= */
.section {
  padding: var(--section-pad);
}

.section--sm {
  padding: var(--section-pad-sm);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-earth);
  margin-bottom: 14px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 640px;
}

.section-header--center p {
  margin: 0 auto;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background-color: var(--color-blue);
  color: var(--color-white);
  border: 2px solid var(--color-blue);
}

.btn-primary:hover {
  background-color: var(--color-blue-dark);
  border-color: var(--color-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(61, 126, 199, 0.35);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  border: 2px solid #25D366;
  padding: 14px 28px;
}

.btn-whatsapp:hover {
  background-color: #1ebe5a;
  border-color: #1ebe5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
  background-color: #25D366;
  color: var(--color-white);
  border: 2px solid #25D366;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  transition: all var(--transition);
}

.btn-whatsapp-lg:hover {
  background-color: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
}

.btn-outline:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
  transform: translateY(-1px);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-blue-dark);
  border: 2px solid var(--color-white);
}

.btn-white:hover {
  background-color: var(--color-soft-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--color-blue);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
  border-radius: 0;
}

.btn-link:hover {
  gap: 10px;
}

/* WhatsApp icon SVG inline */
.icon-wa {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: var(--shadow-nav);
  height: 72px;
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
  background: transparent url('../images/logo.webp') center/contain no-repeat;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-mark svg {
  display: none;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  letter-spacing: -0.01em;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: #555;
  letter-spacing: 0.06em;
  text-transform: none;
  display: block;
  line-height: 1;
  margin-top: 2px;
}

.nav-logo-img {
  height: 48px;
  width: auto;
}

.footer .nav-logo-img {
  height: 40px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-blue);
  background-color: var(--color-soft-blue);
}

.nav-links a.active {
  color: var(--color-blue-dark);
  background-color: var(--color-soft-blue);
  font-weight: 600;
}

/* Nav CTA */
.nav-cta {
  flex-shrink: 0;
}

.nav-cta .btn-whatsapp {
  padding: 8px 14px;
  font-size: 0.82rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  order: -1;
}

.nav-hamburger:hover {
  background: var(--color-soft-blue);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-slow);
}

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

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transform: translateY(-100%);
  opacity: 0;
  transition: all var(--transition-slow);
}

.nav-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile a {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--color-border);
  display: block;
  transition: all var(--transition);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--color-blue);
  background: var(--color-soft-blue);
}

.nav-mobile-cta {
  margin-top: 24px;
}

.nav-mobile-cta .btn-whatsapp {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: linear-gradient(135deg, #1a3a5c 0%, #1e4a38 50%, #2B5E99 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .nav-logo-text {
  color: var(--color-white);
}

.footer-brand .nav-logo-mark {
  background: transparent url('../images/logo.webp') center/contain no-repeat;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green-light);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--color-white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}

.footer-contact-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-system-note {
  font-size: 0.82rem;
  color: var(--color-green-light);
  font-style: italic;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero--green {
  background: #0a1a0a;
}

/* Video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  opacity: 0.85;
}

@keyframes heroGradientShift {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 50%; }
  50% { background-position: 100% 0%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}

/* Light overlay for text readability only */
.hero--green::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  pointer-events: none;
}

@keyframes heroLightPulse {
  0% { opacity: 0.6; transform: scale(1) translateY(0); }
  50% { opacity: 1; transform: scale(1.05) translateY(-10px); }
  100% { opacity: 0.7; transform: scale(1.02) translateY(5px); }
}

/* Particles removed — clean video hero */

.hero--linen {
  background-color: var(--color-bg);
  min-height: 380px;
}

.hero--sm {
  min-height: 320px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-content--center {
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-earth-light);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 24px;
  max-width: 720px;
}

.hero--linen h1 {
  color: var(--color-text);
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.82);
}

.hero--linen p {
  color: var(--color-text-muted);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-content--center .hero-ctas {
  justify-content: center;
}

.hero-content--center .hero p {
  margin: 0 auto 40px;
}

.hero-content--center h1 {
  margin-left: auto;
  margin-right: auto;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background-color: var(--color-bg);
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--color-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-blue-dark);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  max-width: 160px;
  margin: 0 auto;
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
  border: 1px solid var(--color-border);
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}

.card h3 {
  margin-bottom: 12px;
  color: var(--color-text);
}

.card p {
  font-size: 0.95rem;
}

/* Product card */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-blue-dark);
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}

.product-card-footer {
  margin-top: 4px;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge--soil-biology {
  background-color: #E8F3E0;
  color: #2D5016;
}

.badge--plant-nutrition {
  background-color: #FFF3DC;
  color: #8B4A1A;
}

.badge--soil-amelioration {
  background-color: #EEE8F8;
  color: #5B3F8A;
}

.badge--bio-activator {
  background-color: #FFF0E8;
  color: #C8472A;
}

.badge--foliar-feed {
  background-color: #E0F0E8;
  color: #1A6B3C;
}

/* =============================================
   GRIDS
   ============================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

/* =============================================
   TRUST POINTS
   ============================================= */
.trust-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--color-soft-blue);
  border-radius: var(--radius-md);
  border: 1px solid rgba(61, 126, 199, 0.1);
}

.trust-point-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-green));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-point-text h4 {
  margin-bottom: 6px;
  color: var(--color-blue-dark);
}

.trust-point-text p {
  font-size: 0.9rem;
}

/* =============================================
   CROP TILES
   ============================================= */
.crop-tile {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.crop-tile:hover {
  border-color: var(--color-blue);
  background: var(--color-soft-blue);
  transform: translateY(-2px);
}

.crop-tile-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.crop-tile-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, #1a3a5c 0%, #2D8035 40%, #3D7EC7 100%);
  background-size: 300% 300%;
  animation: ctaGradientShift 10s ease infinite;
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@keyframes ctaGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(76, 184, 90, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(90, 154, 223, 0.15) 0%, transparent 50%);
  animation: heroLightPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-display);
  color: var(--color-white);
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-table th {
  background: var(--color-blue-dark);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 24px;
  text-align: left;
}

.comparison-table td {
  padding: 18px 24px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
  background: var(--color-soft-blue);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--color-text);
  width: 25%;
}

.comparison-table td:nth-child(2) {
  color: var(--color-text-muted);
}

.comparison-table td:nth-child(3) {
  color: var(--color-blue-dark);
  font-weight: 500;
}

/* =============================================
   PILLAR SECTION (Sureway)
   ============================================= */
.pillar {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  margin-bottom: 28px;
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.pillar-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-green));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.pillar-header h3 {
  color: var(--color-blue-dark);
}

.pillar-header .pillar-subtitle {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-earth);
  margin-bottom: 4px;
}

.pillar p {
  margin-bottom: 24px;
  font-size: 0.98rem;
}

.pillar-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pillar-product-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-soft-blue);
  color: var(--color-blue-dark);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(61, 126, 199, 0.15);
}

/* =============================================
   TIMELINE
   ============================================= */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--color-green);
  border-radius: 50%;
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-green);
}

.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-earth);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.timeline-item h4 {
  color: var(--color-blue-dark);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.92rem;
}

/* =============================================
   FOUNDER CARDS
   ============================================= */
.founder-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.founder-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  margin: 0 auto 20px;
  display: block;
  border: 4px solid var(--color-green);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.founder-role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-earth);
  margin-bottom: 8px;
}

.founder-card h3 {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.founder-experience {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* =============================================
   REGION CARDS
   ============================================= */
.region-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition-slow);
}

.region-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.region-flag {
  font-size: 2rem;
  margin-bottom: 12px;
}

.region-card h4 {
  margin-bottom: 6px;
  color: var(--color-text);
}

.region-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(61, 126, 199, 0.1);
}

.form-control::placeholder {
  color: rgba(28, 28, 28, 0.35);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* =============================================
   FILTER TABS
   ============================================= */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.filter-tab {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-tab:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
}

.filter-tab.active {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
}

/* =============================================
   MISSION / VISION BLOCKS
   ============================================= */
.mission-block {
  padding: 40px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-earth);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}

.mission-block h3 {
  color: var(--color-blue-dark);
  margin-bottom: 12px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  font-weight: 700;
}

.mission-block p {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.8;
  font-style: italic;
}

/* =============================================
   PAGE INTRO BLOCK
   ============================================= */
.page-intro {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}

/* =============================================
   RESPONSIVE — TABLET (max 900px)
   ============================================= */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; order: -1; }
  .nav-mobile { display: flex; }
  .nav-inner { flex-wrap: nowrap; }
  .nav-logo { order: 0; flex: 1; min-width: 0; }
  .nav-cta { order: 1; }
  .nav-cta .btn-whatsapp { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid var(--color-border);
  }

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

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

  .hero-content {
    padding: 100px 0 64px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================= */
@media (max-width: 640px) {
  :root {
    --section-pad: 56px 0;
    --section-pad-sm: 36px 0;
  }

  /* Nav — mobile sizing */
  .nav {
    height: 60px;
  }

  .nav-mobile {
    top: 60px;
  }

  .nav-inner {
    padding: 0 16px;
    gap: 12px;
  }

  .nav-logo-mark {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }

  .nav-logo-text {
    font-size: 1.1rem;
  }

  .nav-logo-sub {
    font-size: 0.58rem;
  }

  .lang-toggle button {
    padding: 4px 8px;
    font-size: 0.65rem;
  }

  /* Hero — mobile */
  .hero {
    min-height: 85vh;
  }

  .hero-content {
    padding: 80px 0 56px;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-label {
    font-size: 0.65rem;
  }

  .scroll-indicator {
    display: none;
  }

  /* Sections — tighter on mobile */
  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.92rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--color-border);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .hero-content--center .hero-ctas {
    align-items: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 0.95rem;
  }

  .pillar {
    padding: 28px 20px;
  }

  .pillar-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .trust-point {
    flex-direction: column;
    gap: 12px;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .filter-tabs {
    gap: 6px;
  }

  /* Product cards — full width on mobile */
  .product-card {
    padding: 24px 20px;
  }

  /* Footer — mobile */
  .footer {
    padding: 48px 0 24px;
  }

  .footer-brand .nav-logo-text {
    font-size: 1.2rem;
  }
}

/* =============================================
   UTILITIES
   ============================================= */
.bg-white { background-color: var(--color-white); }
.bg-linen { background-color: var(--color-bg); }
.bg-soft-green { background-color: var(--color-soft-green); }
.bg-green { background-color: var(--color-green); }

.text-center { text-align: center; }
.text-green { color: var(--color-green); }
.text-gold { color: var(--color-gold); }
.text-white { color: var(--color-white); }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.hidden { display: none; }

/* Product card hidden state for filtering */
.product-card.filtered-out {
  display: none;
}

/* =============================================
   LANGUAGE TOGGLE (EN / AF)
   ============================================= */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  flex-shrink: 0;
}

.lang-toggle button {
  padding: 5px 11px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  transition: all var(--transition);
  background: transparent;
  line-height: 1;
}

.lang-toggle button.active {
  background: var(--color-blue);
  color: var(--color-white);
}

.lang-toggle button:hover:not(.active) {
  background: var(--color-soft-blue);
  color: var(--color-blue);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =============================================
   BLOG CARD STYLES
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.blog-card-image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a3a5c 0%, var(--color-blue) 60%, var(--color-green) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.blog-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.blog-card-category {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-blue-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 1.12rem;
  margin-bottom: 12px;
  color: var(--color-text);
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.blog-card-footer {
  margin-top: auto;
}

/* =============================================
   BLOG POST SINGLE PAGE
   ============================================= */
.blog-post-hero {
  background: linear-gradient(135deg, #1a3a5c 0%, var(--color-blue) 60%, var(--color-green) 100%);
  padding: 88px 0 64px;
}

.blog-post-hero h1 {
  color: var(--color-white);
  max-width: 820px;
  margin-bottom: 28px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.post-meta span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-earth-light);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 28px;
  transition: gap var(--transition);
}

.blog-back-link:hover {
  gap: 12px;
}

.blog-post-content {
  padding: 72px 0 88px;
}

.blog-post-body {
  max-width: 760px;
  margin: 0 auto;
}

.blog-post-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--color-blue-dark);
  margin: 52px 0 18px;
  font-family: var(--font-display);
}

.blog-post-body h3 {
  font-size: 1.2rem;
  color: var(--color-text);
  margin: 36px 0 12px;
}

.blog-post-body p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.blog-post-body ul,
.blog-post-body ol {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 20px;
}

.blog-post-body ol {
  list-style: decimal;
}

.blog-post-body li {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.blog-post-body strong {
  color: var(--color-text);
  font-weight: 600;
}

.blog-callout {
  background: var(--color-soft-blue);
  border-left: 4px solid var(--color-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 36px 0;
}

.blog-callout p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 0;
  line-height: 1.7;
}

.blog-post-cta {
  background: linear-gradient(135deg, #1a3a5c 0%, var(--color-blue) 40%, var(--color-green) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin: 56px 0 0;
}

.blog-post-cta h3 {
  color: var(--color-white);
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.blog-post-cta p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
}

.blog-related {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--color-border);
}

.blog-related h2 {
  font-size: 1.6rem;
  margin-bottom: 32px;
  color: var(--color-text);
}

/* =============================================
   IMAGE-READY HERO (for when client provides photo)
   ============================================= */
.hero--has-photo {
  position: relative;
}

.hero--has-photo .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
}

.hero--has-photo .container {
  position: relative;
  z-index: 1;
}

/* Product image slot */
.product-card-image-slot {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-soft-blue) 0%, #d0e4f0 100%);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  font-size: 2.5rem;
}

.product-card-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   RESPONSIVE BLOG
   ============================================= */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-hero {
    padding: 64px 0 48px;
  }

  .blog-post-cta {
    padding: 36px 24px;
  }

  .blog-post-body h2 {
    margin: 40px 0 14px;
  }
}

/* =============================================
   SCROLL-TRIGGERED ANIMATIONS & MOVEMENT
   ============================================= */

/* Fade-in-up animation for sections */
.section-header,
.card,
.product-card,
.trust-point,
.crop-tile,
.blog-card,
.stat-item,
.pillar,
.founder-card,
.region-card,
.mission-block {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-header.animate-in,
.card.animate-in,
.product-card.animate-in,
.trust-point.animate-in,
.crop-tile.animate-in,
.blog-card.animate-in,
.stat-item.animate-in,
.pillar.animate-in,
.founder-card.animate-in,
.region-card.animate-in,
.mission-block.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children animations */
.grid-3 > :nth-child(2),
.grid-2 > :nth-child(2),
.blog-grid > :nth-child(2) { transition-delay: 0.12s; }
.grid-3 > :nth-child(3),
.blog-grid > :nth-child(3) { transition-delay: 0.24s; }
.grid-3 > :nth-child(4) { transition-delay: 0.36s; }
.grid-3 > :nth-child(5) { transition-delay: 0.48s; }
.grid-3 > :nth-child(6) { transition-delay: 0.6s; }
.stats-grid > :nth-child(2) { transition-delay: 0.1s; }
.stats-grid > :nth-child(3) { transition-delay: 0.2s; }
.stats-grid > :nth-child(4) { transition-delay: 0.3s; }

/* Subtle floating animation for cards on hover */
@keyframes subtleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.card:hover,
.product-card:hover,
.blog-card:hover {
  animation: subtleFloat 3s ease-in-out infinite;
}

/* Pulsing glow on CTA buttons */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61, 126, 199, 0.4); }
  50% { box-shadow: 0 0 20px 4px rgba(61, 126, 199, 0.15); }
}

.cta-section .btn-whatsapp-lg {
  animation: ctaPulse 3s ease-in-out infinite;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Hide language toggle */
.lang-toggle {
  display: none !important;
}

/* =============================================
   SKIP TO CONTENT (Accessibility)
   ============================================= */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--color-blue);
  color: #fff;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-to-content:focus {
  left: 50%;
  transform: translateX(-50%);
}

/* =============================================
   FOCUS STYLES (Accessibility)
   ============================================= */
:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 2px;
  border-radius: 2px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 2px;
}
/* Remove default :focus for mouse users, keep for keyboard */
:focus:not(:focus-visible) {
  outline: none;
}

/* =============================================
   TOUCH TARGETS — 44px minimum (WCAG 2.5.5)
   ============================================= */
.btn,
.btn-primary,
.btn-outline,
.btn-outline-white,
.btn-whatsapp,
.btn-whatsapp-lg,
.nav-links a,
.filter-tab,
.footer a,
.cookie-btn {
  min-height: 44px;
  min-width: 44px;
}
.nav-hamburger {
  min-height: 44px;
  min-width: 44px;
}

/* =============================================
   COOKIE CONSENT BANNER (POPIA)
   ============================================= */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(26, 42, 58, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-consent-banner.is-visible {
  transform: translateY(0);
}
.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-consent-inner p {
  flex: 1;
  min-width: 280px;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,0.85);
}
.cookie-consent-inner a {
  color: var(--color-blue-light);
  text-decoration: underline;
}
.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.cookie-btn:hover {
  transform: translateY(-1px);
}
.cookie-btn--accept {
  background: var(--color-green);
  color: #fff;
}
.cookie-btn--accept:hover {
  background: var(--color-green-dark);
}
.cookie-btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
}
.cookie-btn--decline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* =============================================
   POPIA CONSENT CHECKBOX (Contact form)
   ============================================= */
.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.consent-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-green);
  cursor: pointer;
}
.consent-group label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.consent-group label a {
  color: var(--color-green);
  text-decoration: underline;
}
