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

:root {
  --nav-height: 72px;

  /* ── U2 AI Carbon · Tasarım Sistemi v2 (tek koyu tema) ──
     Marka: lacivert #0A1E38 (yüzey) + yeşil #91C850 (vurgu) ── */
  --bg-primary: #071527;
  --bg-secondary: #0A1E38;
  --bg-tertiary: #0E2846;
  --bg-elevated: rgba(234,241,248,0.04);

  --brand-primary: #91C850;
  --brand-dark: #7AB63F;
  --brand-light: #A6D66D;
  --brand-accent: #C3E79B;
  --brand-surface: rgba(145,200,80,0.10);
  --brand-glow: rgba(145,200,80,0.16);

  --text-primary: #EAF1F8;
  --text-secondary: #A9BDD4;
  --text-tertiary: #8AA2BC;
  --text-muted: #6F88A4;

  --border-subtle: rgba(234,241,248,0.07);
  --border-default: rgba(234,241,248,0.12);
  --border-hover: rgba(234,241,248,0.18);

  /* Yasal sayfalar (terms/kvkk/privacy/cookies) bu ölçeği kullanıyor.
     Daha önce TANIMSIZDI: başlıklar, tablo kenarlıkları ve th zeminleri
     bozuk çıkıyordu. Koyu palete eşlendi. */
  --gray-50:  #0E2846;
  --gray-100: #133154;
  --gray-200: rgba(234,241,248,0.12);
  --gray-300: rgba(234,241,248,0.18);
  --gray-400: #6F88A4;
  --gray-500: #8AA2BC;
  --gray-600: #A9BDD4;
  --gray-700: #C7D6E6;
  --gray-800: #DCE7F2;
  --gray-900: #EAF1F8;

  --success: #91C850; --warning: #F2B544; --error: #F2635F; --info: #56B6E6;
  --radius-sm: 6px; --radius-md: 10px; --radius-lg: 16px; --radius-xl: 24px; --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.45);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.55);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.65);
  --shadow-glow: 0 0 40px rgba(145,200,80,0.12);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-secondary); line-height: 1.6;
  background: var(--bg-primary); overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; font-size: 14px; font-weight: 600;
  border-radius: var(--radius-md); border: 2px solid transparent;
  cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }
.btn-primary { background: #91C850; color: #071527; border-color: transparent; box-shadow: var(--shadow-md), var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg), 0 0 60px rgba(145,200,80,0.2); }
.btn-outline { background: transparent; color: var(--text-primary); border-color: var(--border-default); }
.btn-outline:hover { background: var(--bg-tertiary); border-color: var(--border-hover); }
.btn-ghost { background: transparent; color: var(--text-secondary); }
.btn-ghost:hover { background: var(--bg-tertiary); }
.btn-white { background: #fff; color: var(--bg-primary); border-color: #fff; }
.btn-white:hover { background: var(--text-secondary); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-block { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,15,26,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle); transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }
.nav-logo img { height: 36px; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-tertiary); transition: color 0.2s; }
.nav-links a:hover { color: var(--brand-primary); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: var(--bg-primary); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(145,200,80,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -10%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(55,138,221,0.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; padding: 6px 16px;
  background: var(--brand-surface); color: var(--brand-primary);
  font-size: 13px; font-weight: 600; border-radius: var(--radius-full);
  border: 1px solid rgba(145,200,80,0.2); margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; color: var(--text-primary); margin-bottom: 20px; letter-spacing: -0.02em; }
.text-gradient { background: linear-gradient(135deg, #91C850, #378ADD); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 18px; color: var(--text-tertiary); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.hero-cta { display: flex; gap: 16px; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 32px; }
.stat { text-align: center; }
.stat-value { display: block; font-size: 32px; font-weight: 800; color: var(--brand-primary); }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border-default); }

/* Dashboard Preview */
.hero-visual { display: flex; justify-content: center; }
.dashboard-preview {
  width: 100%; max-width: 520px;
  background: var(--bg-secondary); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); overflow: hidden; border: 1px solid var(--border-default);
}
.preview-header { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--bg-tertiary); border-bottom: 1px solid var(--border-subtle); }
.preview-dots { display: flex; gap: 6px; }
.preview-dots span { width: 10px; height: 10px; border-radius: 50%; }
.preview-dots span:nth-child(1) { background: #EF4444; }
.preview-dots span:nth-child(2) { background: #F59E0B; }
.preview-dots span:nth-child(3) { background: #22C55E; }
.preview-title { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.preview-body { padding: 20px; }
.preview-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.preview-card { background: var(--bg-tertiary); border-radius: var(--radius-sm); padding: 12px; border: 1px solid var(--border-subtle); }
.preview-card:first-child { background: var(--brand-surface); border-color: rgba(145,200,80,0.15); }
.preview-card-label { display: block; font-size: 11px; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.preview-card-value { font-size: 16px; font-weight: 700; color: var(--text-primary); }
.preview-card:first-child .preview-card-value { color: var(--brand-primary); }
.preview-chart { display: flex; align-items: flex-end; gap: 16px; height: 100px; padding: 12px 20px; background: var(--bg-tertiary); border-radius: var(--radius-sm); }
.chart-bar { flex: 1; background: linear-gradient(180deg, var(--brand-primary), var(--brand-dark)); border-radius: 4px 4px 0 0; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 8px; transition: height 0.3s ease; }
.chart-bar span { font-size: 10px; font-weight: 700; color: #fff; }

/* ===== TRUST BAR ===== */
.trust-bar { padding: 24px 0; background: var(--bg-secondary); border-bottom: 1px solid var(--border-subtle); }
.trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--text-tertiary); }
.trust-item svg { color: var(--brand-primary); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-badge {
  display: inline-block; padding: 4px 14px;
  background: var(--brand-surface); color: var(--brand-primary);
  font-size: 12px; font-weight: 600; border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: var(--text-primary); margin-bottom: 16px; line-height: 1.2; }
.section-header p { font-size: 16px; color: var(--text-tertiary); line-height: 1.7; }

/* ===== FEATURES ===== */
.features { padding: 96px 0; background: var(--bg-primary); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--bg-elevated); border: 1px solid var(--border-subtle);
  transition: all 0.3s ease; position: relative;
}
.feature-card:hover { border-color: var(--brand-primary); box-shadow: 0 0 30px rgba(145,200,80,0.08); transform: translateY(-2px); }
.feature-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  background: var(--brand-surface) !important; color: var(--brand-primary) !important;
}
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-tertiary); line-height: 1.6; }
.badge-new { position: absolute; top: 12px; right: 12px; background: var(--brand-dark); color: white; padding: 2px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 96px 0; background: var(--bg-secondary); }
.steps-grid { display: flex; align-items: center; gap: 0; }
.step-card {
  flex: 1; padding: 32px 24px; background: var(--bg-elevated);
  border-radius: var(--radius-lg); border: 1px solid var(--border-subtle); text-align: center; position: relative;
}
.step-number { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #91C850, #7AB63F); color: #fff; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-tertiary); line-height: 1.6; }
.step-connector { flex-shrink: 0; display: flex; align-items: center; }
.step-connector svg { color: var(--text-muted); }

/* ===== PRICING ===== */
.pricing { padding: 96px 0; background: var(--bg-primary); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  border-radius: var(--radius-xl); background: var(--bg-secondary);
  border: 1px solid var(--border-subtle); padding: 36px 28px;
  position: relative; transition: all 0.3s ease;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); border-color: var(--border-hover); }
.pricing-card.featured { border-color: var(--brand-primary); border-width: 2px; box-shadow: 0 0 40px rgba(145,200,80,0.1); transform: scale(1.03); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 4px 16px; background: linear-gradient(135deg, #91C850, #7AB63F); color: #fff; font-size: 12px; font-weight: 700; border-radius: var(--radius-full); white-space: nowrap; }
.pricing-header { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-subtle); }
.pricing-header h3 { font-size: 22px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.pricing-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 8px; }
.price-currency { font-size: 24px; font-weight: 700; color: var(--text-primary); }
.price-amount { font-size: 42px; font-weight: 800; color: var(--text-primary); line-height: 1; }
.price-period { font-size: 16px; color: var(--text-muted); font-weight: 500; }
.pricing-desc { font-size: 14px; color: var(--text-tertiary); }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text-secondary); }
.pricing-features li.excluded { color: var(--text-muted); }
.pricing-features li.highlight { color: var(--text-primary); }
.pricing-features li svg { flex-shrink: 0; }

/* ===== COMPLIANCE ===== */
.compliance { padding: 96px 0; background: var(--bg-secondary); }
.compliance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.compliance-card {
  text-align: center; padding: 36px 24px; background: var(--bg-elevated);
  border-radius: var(--radius-lg); border: 1px solid var(--border-subtle); transition: all 0.3s ease;
}
.compliance-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--border-hover); }
.compliance-logo {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  background: var(--brand-surface); color: var(--brand-primary);
  font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; border: 2px solid rgba(145,200,80,0.15);
}
.compliance-card h4 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.compliance-card p { font-size: 13px; color: var(--text-tertiary); }

/* ===== REPORTS SECTION ===== */
.reports-section { padding: 96px 0; background: var(--bg-primary); }
.reports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.report-item {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  background: var(--bg-elevated); border-radius: var(--radius-md);
  font-size: 15px; font-weight: 600; color: var(--text-secondary);
  border: 1px solid var(--border-subtle); transition: all 0.2s ease;
}
.report-item:hover { background: var(--brand-surface); border-color: rgba(145,200,80,0.2); }
.report-num { font-size: 13px; font-weight: 700; color: var(--brand-primary); background: var(--brand-surface); padding: 4px 10px; border-radius: var(--radius-sm); min-width: 36px; text-align: center; }

/* ===== GRI HUB ===== */
#gri-hub { background: var(--bg-secondary) !important; }
#gri-hub h2, #gri-hub h3, #gri-hub h4 { color: var(--text-primary) !important; }
#gri-hub p, #gri-hub li { color: var(--text-tertiary) !important; }
#gri-hub .section-badge { background: var(--brand-surface) !important; color: var(--brand-primary) !important; }

/* ===== FAQ ===== */
.faq { padding: 96px 0; background: var(--bg-secondary); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { background: var(--bg-elevated); border-radius: var(--radius-md); margin-bottom: 12px; border: 1px solid var(--border-subtle); overflow: hidden; }
.faq-item summary { padding: 20px 24px; font-size: 15px; font-weight: 600; color: var(--text-primary); cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; font-weight: 400; color: var(--text-muted); transition: transform 0.2s; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { padding: 0 24px 20px; font-size: 14px; color: var(--text-tertiary); line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 96px 0; background: linear-gradient(135deg, #0D3B2E, #7AB63F); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(145,200,80,0.15), transparent 60%); pointer-events: none; }
.cta-content { text-align: center; max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-content p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 32px; line-height: 1.7; }

/* ===== FOOTER ===== */
.footer { padding: 64px 0 40px; background: var(--bg-primary); color: var(--text-muted); border-top: 1px solid var(--border-subtle); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: 14px; margin-top: 16px; line-height: 1.6; }
.footer-brand img { filter: brightness(0) invert(1); }
.footer-legal { margin-top: 24px; font-size: 12px; }
.footer-links h4 { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 16px; }
.footer-links a { display: block; font-size: 13px; color: var(--text-muted); padding: 4px 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--brand-accent); }

/* ===== CERTIFICATE BADGE BAR ===== */
.cert-bar { padding: 40px 0; background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.cert-bar-items { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.cert-bar-items img { height: 48px; opacity: 0.7; transition: opacity 0.2s ease; filter: brightness(0) invert(1); }
.cert-bar-items img:hover { opacity: 1; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 36px; }
  .hero-visual { order: -1; }
  .dashboard-preview { max-width: 400px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; }
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
  .reports-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--bg-secondary); padding: 24px;
    border-bottom: 1px solid var(--border-subtle); box-shadow: var(--shadow-lg); gap: 16px;
  }
  .nav-actions.open {
    display: flex; position: absolute;
    top: calc(var(--nav-height) + var(--nav-links-height, 200px));
    left: 0; right: 0; background: var(--bg-secondary);
    padding: 16px 24px; border-bottom: 1px solid var(--border-subtle); gap: 12px;
  }
  .hero { padding: calc(var(--nav-height) + 60px) 0 60px; }
  .hero h1 { font-size: 28px; }
  .hero-subtitle { font-size: 16px; }
  .hero-cta { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .features-grid, .pricing-grid, .compliance-grid, .reports-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card:last-child { grid-column: auto; max-width: none; }
  .steps-grid { flex-direction: column; gap: 0; }
  .step-connector { transform: rotate(90deg); }
  .section-header h2 { font-size: 28px; }
  .cta-content h2 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-items { gap: 24px; }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
  background: rgba(17,24,39,0.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle); padding: 16px 24px;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-content p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0; flex: 1; min-width: 200px; }
.cookie-content p a { color: var(--brand-accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; border-radius: 6px; }

/* ===== INLINE STYLE OVERRIDES (pricing section) ===== */
[style*="background: white"], [style*="background:#fff"], [style*="background: #fff"] {
  background: var(--bg-secondary) !important; color: var(--text-secondary) !important;
}
[style*="color: #1a1a1a"], [style*="color:#1a1a1a"] { color: var(--text-primary) !important; }
[style*="color: #888"], [style*="color:#888"] { color: var(--text-tertiary) !important; }
[style*="border: 1px solid #e5e7eb"], [style*="border:1px solid #e5e7eb"] { border-color: var(--border-subtle) !important; }
[style*="color: #7AB63F"], [style*="color:#7AB63F"] { color: var(--brand-primary) !important; }
[style*="background: #7AB63F"], [style*="background:#7AB63F"] { background: linear-gradient(135deg, #91C850, #7AB63F) !important; }
[style*="background: #1a2332"], [style*="background:#1a2332"] { background: var(--bg-tertiary) !important; }
[style*="background: #f8faf8"], [style*="background:#f8faf8"] { background: var(--bg-secondary) !important; }
[style*="background: #FF6B00"], [style*="background:#FF6B00"] { background: linear-gradient(135deg, #91C850, #7AB63F) !important; }
[style*="box-shadow: 0 4px 24px rgba(46,125,50"] { box-shadow: 0 0 40px rgba(145,200,80,0.1) !important; }
[style*="border: 2px solid #7AB63F"] { border-color: var(--brand-primary) !important; }
