/* sacito UG — Job-Portal Archetype Stylesheet */

:root {
  --color-primary: #1e3a5f;
  --color-primary-dark: #152a45;
  --color-accent: #2563eb;
  --color-accent-hover: #1d4ed8;
  --color-accent-light: #dbeafe;
  --color-text: #1f2937;
  --color-text-muted: #6b7280;
  --color-text-light: #9ca3af;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f9fb;
  --color-bg-dark: #111827;
  --color-border: #e5e7eb;
  --color-success: #059669;
  --color-success-bg: #ecfdf5;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "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;
  --header-height: 72px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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.25;
  color: var(--color-primary);
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.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);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 1rem 0;
}

.main-nav.is-open {
  display: block;
}

.main-nav ul {
  display: flex;
  flex-direction: column;
}

.main-nav a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--color-text);
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-accent);
  background: var(--color-bg-alt);
}

.header-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: 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-light);
  color: var(--color-accent-hover);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* 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.5rem;
}

/* Page Hero (inner pages) */
.page-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45)), url('../img/hero-1.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto;
}

.page-hero--alt {
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45)), url('../img/hero-2.jpg');
}

/* Homepage Search Hero */
.search-hero {
  background: var(--color-bg-alt);
  padding: 4rem 0 3.5rem;
  text-align: center;
}

.search-hero h1 {
  margin-bottom: 0.75rem;
}

.search-hero .subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.search-prompt {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto 0.75rem;
}

.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;
}

.search-bar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  background: #fff;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.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 var(--color-accent-light);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Job Cards */
.section {
  padding: 4rem 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header p {
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0.75rem auto 0;
}

.job-cards {
  display: grid;
  gap: 1.25rem;
}

.job-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.job-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.job-card h3 {
  font-size: 1.125rem;
}

.job-card h3 a {
  color: var(--color-primary);
}

.job-card h3 a:hover {
  color: var(--color-accent);
}

.job-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.job-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.tag--neutral {
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
}

.tag--dark {
  background: var(--color-primary);
  color: #fff;
}

/* 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 .stat-number {
  display: block;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  font-size: 0.9375rem;
  opacity: 0.85;
}

/* Process Steps */
.process-steps {
  display: grid;
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.process-step h3 {
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Industry Icon Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.industry-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition);
}

.industry-item:hover {
  box-shadow: var(--shadow-md);
}

.industry-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  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 h3 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.industry-item p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Toggle Section */
.toggle-section {
  background: var(--color-bg-alt);
}

.toggle-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 4px;
  border: 1px solid var(--color-border);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.toggle-tab {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.toggle-tab.active {
  background: var(--color-accent);
  color: #fff;
}

.toggle-panels {
  position: relative;
}

.toggle-panel {
  display: none;
}

.toggle-panel.active {
  display: block;
}

.toggle-columns {
  display: grid;
  gap: 2rem;
}

.toggle-column {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.toggle-column h3 {
  margin-bottom: 1rem;
}

.toggle-column ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.toggle-column li {
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Service Cards */
.service-cards {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
}

.service-card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.service-card-image--1 { background-image: url('../img/section-1.jpg'); }
.service-card-image--2 { background-image: url('../img/section-2.jpg'); }
.service-card-image--3 { background-image: url('../img/section-3.jpg'); }
.service-card-image--4 { background-image: url('../img/section-4.jpg'); }

.service-card-body {
  padding: 1.5rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

/* About Teaser */
.about-teaser {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-teaser-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-teaser-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.faq-item summary {
  padding: 1.125rem 1.5rem;
  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);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item .faq-answer {
  padding: 0 1.5rem 1.125rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* CTA Section */
.cta-section {
  background: var(--color-primary);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-section p {
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

/* Content Layouts */
.content-grid {
  display: grid;
  gap: 2rem;
}

.content-sidebar {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
}

.content-sidebar h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

.content-sidebar a {
  color: var(--color-text);
  font-size: 0.9375rem;
}

.content-sidebar a:hover {
  color: var(--color-accent);
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin: 2rem 0 1rem;
}

.prose h3 {
  margin: 1.5rem 0 0.75rem;
}

.prose ul, .prose ol {
  margin: 0 0 1rem 1.5rem;
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

.prose li {
  margin-bottom: 0.375rem;
  color: var(--color-text-muted);
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.875rem;
}

/* Case Studies */
.case-study {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.case-study h3 {
  margin-bottom: 0.5rem;
}

.case-study-meta {
  font-size: 0.875rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.case-study-section {
  margin-bottom: 1rem;
}

.case-study-section strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Career */
.job-listing {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.job-listing h3 {
  margin-bottom: 0.5rem;
}

.job-listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.benefit-item {
  background: var(--color-bg-alt);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}

.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);
  margin: 0;
}

/* Contact Form */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-info {
  background: var(--color-bg-alt);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.contact-info h3 {
  margin-bottom: 1.25rem;
}

.contact-detail {
  margin-bottom: 1rem;
}

.contact-detail strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.contact-form {
  background: #fff;
  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: 1.25rem;
  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 var(--color-accent-light);
}

.form-consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.form-consent input {
  width: auto;
  margin: 0.25rem 0 0;
  flex-shrink: 0;
}

.form-consent label {
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

.form-success {
  background: var(--color-success-bg);
  border: 1px solid var(--color-success);
  color: var(--color-success);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Blog */
.blog-grid {
  display: grid;
  gap: 1.5rem;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-card-image--1 { background-image: url('../img/section-1.jpg'); }
.blog-card-image--2 { background-image: url('../img/section-2.jpg'); }
.blog-card-image--3 { background-image: url('../img/section-3.jpg'); }

.blog-card-body {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.blog-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.blog-card h2 a {
  color: var(--color-primary);
}

.blog-card h2 a:hover {
  color: var(--color-accent);
}

.article-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.article-content h2 {
  margin: 2rem 0 1rem;
}

/* Legal Pages */
.legal-content h1 {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
}

.legal-content h3 {
  font-size: 1.0625rem;
  margin: 1.5rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

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

/* Team Portrait */
.team-portrait {
  max-width: 300px;
  border-radius: 12px;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-md);
}

.values-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.value-card {
  background: var(--color-bg-alt);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-top: 3px solid var(--color-accent);
}

.value-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  opacity: 0.8;
  margin-top: 0.75rem;
}

.footer-nav h4 {
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-nav ul li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.75);
}

.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-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.cookie-banner p {
  font-size: 0.875rem;
  opacity: 0.9;
  margin: 0;
}

.cookie-banner a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* 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);
}

/* Tablet */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: block;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .main-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }

  .main-nav a {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
  }

  .header-cta {
    display: inline-flex;
  }

  .search-bar {
    flex-direction: row;
    align-items: center;
  }

  .search-bar input {
    border: none;
    box-shadow: none;
  }

  .search-bar input:focus {
    box-shadow: none;
  }

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

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

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

  .process-steps::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 16.67%;
    right: 16.67%;
    height: 2px;
    background: var(--color-border);
    z-index: 0;
  }

  .process-step-number {
    position: relative;
    z-index: 1;
  }

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

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

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

  .about-teaser {
    grid-template-columns: 1fr 1fr;
  }

  .content-grid {
    grid-template-columns: 2fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

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

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

  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .main-nav a {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
  }

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

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

  .industry-grid {
    grid-template-columns: repeat(6, 1fr);
  }

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

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