/* ==============================================================================
   SurveyDIG - Modern Responsive Stylesheet
   ============================================================================== */

:root {
  --primary: #22b573;
  --primary-dark: #15803d;
  --primary-light: #dcfce7;
  --accent-green: #00d130;
  --charcoal: #373737;
  --charcoal-dark: #222222;
  --charcoal-light: #515151;
  --text: #545454;
  --text-dark: #222222;
  --text-muted: #6b6b6b;
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --bg-card: #ffffff;
  --border: #e3e3e3;
  --border-focus: #22b573;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.06);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.08);
  --radius: 8px;
  --radius-lg: 12px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max-width: 1200px;
}

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: #15803d;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #14532d;
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==============================================================================
   Header & Navigation
   ============================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #166534;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #166534;
}

.nav-cta {
  background-color: #166534;
  color: #ffffff !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.nav-cta:hover {
  background-color: #14532d;
  color: #ffffff !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--charcoal);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.nav-mobile-drawer {
  display: none;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

.nav-mobile-drawer.open {
  display: block;
}

.nav-mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile-list .nav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 1rem;
}

/* ==============================================================================
   Page Hero Banner
   ============================================================================== */
.page-hero {
  position: relative;
  background-color: var(--charcoal);
  color: #ffffff;
  padding: 4.5rem 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 34, 34, 0.88) 0%, rgba(30, 140, 80, 0.70) 100%);
}

.page-hero.hero-home {
  padding: 4.25rem 0 3.5rem 0;
  text-align: left;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 660px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 181, 115, 0.2);
  border: 1px solid rgba(34, 181, 115, 0.6);
  color: #4ade80;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.page-hero.hero-home .page-hero-title {
  color: #ffffff;
  font-size: 2.75rem;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.page-hero.hero-home .page-hero-subtitle {
  color: #f1f5f9;
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-integrations {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.hero-integrations strong {
  color: #ffffff;
}

.hero-visual {
  position: relative;
}

.hero-visual-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 0.85rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55);
}

.hero-visual-card img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

.hero-floating-card {
  margin-top: 1rem;
  background: #ffffff;
  color: var(--charcoal-dark);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

.hero-floating-card .pulse-indicator {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(34, 181, 115, 0.25);
}

/* Hero Trust Proof Bar */
.hero-trust-bar {
  position: relative;
  z-index: 1;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.trust-stat {
  font-size: 1.95rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1;
  white-space: nowrap;
}

.trust-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 0.2px;
}

.trust-desc {
  font-size: 0.875rem;
  color: #e2e8f0;
  line-height: 1.4;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 860px) {
  .hero-trust-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
  }
  .trust-divider {
    display: none;
  }
  .trust-item {
    gap: 1.25rem;
  }
  .trust-stat {
    font-size: 1.85rem;
  }
}

/* Custom Workflow Banner */
.workflow-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1e3328 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.workflow-banner h2 {
  color: #ffffff;
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.workflow-banner p {
  color: #e2e8f0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.workflow-banner .workflow-badge {
  background: rgba(34, 181, 115, 0.25);
  color: #4ade80;
  border: 1px solid rgba(34, 181, 115, 0.6);
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.workflow-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.workflow-point-item h3,
.workflow-point-item h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.workflow-point-item p {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 0;
  line-height: 1.6;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
}

.page-hero-title {
  color: #ffffff;
  font-size: 2.75rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.page-hero-subtitle {
  color: #e2e8f0;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #166534;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #14532d;
  color: #ffffff;
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--charcoal);
}

.btn-secondary:hover {
  background-color: #f1f5f9;
  color: var(--charcoal-dark);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: var(--charcoal-dark);
}

/* ==============================================================================
   Content Sections
   ============================================================================== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #14532d;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  color: var(--charcoal-dark);
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
}

/* Feature Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon img {
  width: 32px;
  height: 32px;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal-dark);
}

/* Partners Showcase */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.partner-logo-box {
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  transition: border-color 0.2s ease;
}

.partner-logo-box:hover {
  border-color: var(--primary);
}

.partner-logo-box img {
  max-height: 60px;
  width: auto;
}

/* Contact Form Section */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
}

.contact-info-card {
  background-color: var(--bg-alt);
  color: var(--text-dark);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-info-card h2,
.contact-info-card .contact-info-title {
  color: var(--charcoal-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-dark);
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-item strong {
  display: block;
  color: var(--charcoal-dark);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.contact-item a {
  color: var(--primary-dark);
  font-weight: 500;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--charcoal-dark);
  text-decoration: underline;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.form-label .required {
  color: #ef4444;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 181, 115, 0.20);
}

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

/* Honeypot hidden fields */
.hidden-hp {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

/* Form Status Message Box */
.form-status {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  display: none;
  font-size: 0.95rem;
}

.form-status.success {
  display: block;
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status.error {
  display: block;
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ==============================================================================
   Blog / Insights Cards
   ============================================================================== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.article-card {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.article-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.article-category {
  font-weight: 700;
  color: #15803d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-title {
  font-size: 1.25rem;
  color: var(--charcoal-dark);
  margin-bottom: 0.75rem;
}

.article-title a {
  color: var(--charcoal-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-title a:hover {
  color: #15803d;
  text-decoration: underline;
}

.article-summary {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.article-link {
  font-weight: 600;
  color: #166534;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s ease;
}

.article-link:hover {
  color: #14532d;
  text-decoration: underline;
}

/* ==============================================================================
   Footer
   ============================================================================== */
.site-footer {
  background-color: var(--charcoal-dark);
  color: #f1f5f9;
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after,
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--primary);
}

.footer-col p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-col a {
  color: #cbd5e1;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: #cbd5e1;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  color: #cbd5e1;
}

/* ==============================================================================
   Responsive Queries
   ============================================================================== */
@media (max-width: 992px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .page-hero.hero-home {
    text-align: center;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-integrations {
    align-items: center;
  }
  .workflow-points {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .workflow-banner {
    padding: 2.5rem 1.75rem;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .page-hero-title,
  .page-hero.hero-home .page-hero-title {
    font-size: 2.1rem;
  }
  .page-hero.hero-home .page-hero-subtitle {
    font-size: 1.05rem;
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .workflow-banner h2 {
    font-size: 1.75rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==============================================================================
   Legal & Privacy Policy Styles
   ============================================================================== */
.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--charcoal-dark);
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.legal-content p,
.legal-content li {
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.toc-box {
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.toc-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.toc-box a {
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: underline;
}

.legal-content p a,
.legal-content li a {
  text-decoration: underline;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  text-align: left;
}

.cookie-table th {
  background-color: var(--bg-alt);
  font-weight: 600;
  color: var(--text-dark);
}

/* ==============================================================================
   Lightweight Cookie Consent Banner
   ============================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  max-width: 440px;
  background-color: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: cookieSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cookieSlideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner p {
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
  color: var(--text);
}

.cookie-banner a {
  color: var(--primary-dark);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  align-items: center;
}

.cookie-btn {
  padding: 0.45rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.cookie-btn-accept {
  background-color: var(--primary-dark);
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background-color: #14532d;
}

.cookie-btn-decline {
  background-color: transparent;
  color: var(--charcoal);
  border-color: var(--border);
}

.cookie-btn-decline:hover {
  background-color: var(--bg-alt);
  color: var(--text-dark);
  border-color: var(--text-muted);
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom: none;
    padding: 1.25rem 1rem;
  }
}

