/* J&F Business Concepts UG — Stylesheet */

:root {
  --color-primary: #1e3a5f;
  --color-primary-dark: #152a45;
  --color-accent: #2563eb;
  --color-accent-hover: #1d4ed8;
  --color-text: #1f2937;
  --color-text-muted: #6b7280;
  --color-bg: #ffffff;
  --color-bg-alt: #f3f4f6;
  --color-bg-dark: #111827;
  --color-border: #e5e7eb;
  --color-success: #059669;
  --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
  --max-width: 1200px;
  --nav-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  color: var(--color-primary);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p + p {
  margin-top: 1rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 1rem;
}

.logo-link {
  flex-shrink: 0;
}

.logo-link img {
  height: 36px;
  width: auto;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.nav-menu {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 1.25rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow-md);
}

.nav-menu.is-open {
  display: flex;
}

.nav-menu a {
  color: var(--color-text);
  padding: 0.625rem 0;
  font-weight: 500;
  display: block;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--color-accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #fff !important;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: 0.5rem;
  transition: background var(--transition);
}

.nav-cta:hover {
  background: var(--color-accent-hover);
  color: #fff !important;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: none;
    box-shadow: none;
    gap: 1.5rem;
  }

  .nav-menu a {
    padding: 0;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 0.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--color-primary);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero — Search Bar Style */
.hero-search {
  background: var(--color-bg-alt);
  padding: 3rem 0 4rem;
}

.hero-search-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-search h1 {
  margin-bottom: 0.75rem;
}

.hero-search .subtitle {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.search-bar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--color-bg);
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.search-bar input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
}

.search-bar input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.search-bar button {
  padding: 0.875rem 1.5rem;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition);
}

.search-bar button:hover {
  background: var(--color-accent-hover);
}

@media (min-width: 768px) {
  .search-bar {
    flex-direction: row;
    align-items: center;
  }
}

/* Page Hero (inner pages) */
.page-hero {
  background: var(--color-primary);
  color: #fff;
  padding: 3rem 0;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
}

.page-hero-image {
  position: relative;
  overflow: hidden;
}

.page-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.92), rgba(30, 58, 95, 0.75));
  z-index: 1;
}

.page-hero-image .container {
  position: relative;
  z-index: 2;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.breadcrumbs a {
  color: var(--color-text-muted);
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumbs span {
  margin: 0 0.375rem;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.section-header p {
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}

/* Tags / Pills */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-accent);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tag-dark {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid-2 {
  grid-template-columns: 1fr;
}

.card-grid-3 {
  grid-template-columns: 1fr;
}

.card-grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  margin-bottom: 0.5rem;
}

.card-body p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: 1rem;
}

.card-image {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}

.card-featured {
  border-left: 4px solid var(--color-accent);
}

/* Stats Band */
.stats-band {
  background: var(--color-bg-dark);
  color: #fff;
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.stat-item span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }

  .process-steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--color-border);
    z-index: 0;
  }
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.process-step h3 {
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Industry Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.industry-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition);
}

.industry-item:hover {
  border-color: var(--color-accent);
}

.industry-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Audience Toggle */
.audience-section {
  background: var(--color-bg-alt);
}

.audience-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--color-border);
}

.audience-tab {
  flex: 1;
  padding: 1rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}

.audience-tab.is-active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.audience-panel {
  display: none;
}

.audience-panel.is-active {
  display: block;
}

.audience-content {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .audience-content {
    grid-template-columns: 1fr 1fr;
  }
}

.audience-content ul {
  margin-top: 1rem;
}

.audience-content li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--color-text-muted);
}

.audience-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.875rem;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

.audience-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-primary);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--color-accent);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 1.25rem 1.125rem;
  color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

/* Two Column Layout */
.two-col {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* Content Blocks */
.content-block h2 {
  margin-bottom: 1rem;
}

.content-block h3 {
  margin: 1.5rem 0 0.75rem;
}

.content-block ul,
.content-block ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.content-block ul {
  list-style: disc;
}

.content-block ol {
  list-style: decimal;
}

.content-block li {
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}

.content-block li strong {
  color: var(--color-text);
}

.feature-list {
  list-style: none !important;
  padding-left: 0 !important;
}

.feature-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Values Grid */
.values-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  padding: 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.value-card h3 {
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Case Study */
.case-study {
  padding: 2rem;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.case-study h3 {
  margin-bottom: 0.25rem;
}

.case-study .case-industry {
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.case-study dl {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .case-study dl {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-study dt {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.case-study dd {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Job Listing */
.job-listing {
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.job-listing h3 {
  margin-bottom: 0.5rem;
}

.job-listing .job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-item {
  padding: 1.25rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
}

.benefit-item h4 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
  color: var(--color-primary);
}

.benefit-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Contact Form */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.contact-info-block {
  padding: 1.5rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
}

.contact-info-block h3 {
  margin-bottom: 1rem;
}

.contact-info-block address {
  font-style: normal;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.contact-info-block address a {
  color: var(--color-accent);
}

.contact-form {
  background: var(--color-bg);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  color: var(--color-primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.form-consent input {
  width: auto;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.form-consent label {
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.contact-form button[type="submit"] {
  width: 100%;
  padding: 0.875rem;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition);
}

.contact-form button[type="submit"]:hover {
  background: var(--color-accent-hover);
}

.form-success {
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid var(--color-success);
  color: var(--color-success);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Blog / News */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-preview {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition);
}

.article-preview:hover {
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .article-preview {
    grid-template-columns: 280px 1fr;
  }
}

.article-preview img {
  border-radius: var(--radius-sm);
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.article-preview time {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.article-preview h2 {
  font-size: 1.25rem;
  margin: 0.375rem 0 0.5rem;
}

.article-preview h2 a {
  color: var(--color-primary);
}

.article-preview h2 a:hover {
  color: var(--color-accent);
}

.article-content {
  max-width: 760px;
}

.article-content time {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.article-content p {
  margin-bottom: 1rem;
}

.article-content h2 {
  margin: 2rem 0 1rem;
  font-size: 1.375rem;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
}

.legal-content h1 {
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
}

.legal-content h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.0625rem;
}

.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
}

.legal-content ul,
.legal-content ol {
  margin: 0.75rem 0 0.75rem 1.5rem;
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

/* Footer */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-brand img {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-nav h4 {
  color: #fff;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.footer-nav ul li {
  margin-bottom: 0.375rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
  color: #fff;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-dark);
  color: #fff;
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-banner p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
}

.cookie-banner a {
  color: #93c5fd;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 0.625rem 1.25rem;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-accept:hover {
  background: var(--color-accent-hover);
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service Detail */
.service-hero {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
}

.service-hero h1 {
  color: #fff;
}

.service-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
}

.service-detail-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.service-sidebar {
  padding: 1.5rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  height: fit-content;
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
}

.service-sidebar h3 {
  margin-bottom: 1rem;
}

.service-sidebar ul {
  margin-bottom: 1.5rem;
}

.service-sidebar li {
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

/* About teaser */
.about-teaser {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-teaser {
    grid-template-columns: 1fr 1fr;
  }
}

.about-teaser img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Main content wrapper */
main {
  flex: 1;
}
