/* PushMedia — Layered media intelligence pipelines */

:root {
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-light: #3B82F6;
  --charcoal: #1F2937;
  --charcoal-light: #374151;
  --cyan: #06B6D4;
  --cyan-dark: #0891B2;
  --white: #F9FAFB;
  --orange: #F97316;
  --orange-dark: #EA580C;
  --grey: #E5E7EB;
  --grey-mid: #9CA3AF;
  --grey-dark: #6B7280;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Lato', sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 4px 24px rgba(31, 41, 55, 0.08);
  --shadow-layer: 0 8px 32px rgba(37, 99, 235, 0.12);
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--charcoal-light);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--cyan);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

h1 { font-size: clamp(2.1rem, 4.8vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }

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

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

.section {
  padding: 4.5rem 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
}

.section-header {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  color: var(--grey-dark);
  font-size: 1.0625rem;
  margin-top: 0.65rem;
}

/* Layered stream stack background */
.stream-bg {
  background-color: var(--white);
  background-image:
    linear-gradient(180deg, transparent 0%, transparent 23%, rgba(6, 182, 212, 0.04) 24%, rgba(6, 182, 212, 0.04) 26%, transparent 27%),
    linear-gradient(180deg, transparent 0%, transparent 48%, rgba(37, 99, 235, 0.04) 49%, rgba(37, 99, 235, 0.04) 51%, transparent 52%),
    linear-gradient(180deg, transparent 0%, transparent 73%, rgba(249, 115, 22, 0.03) 74%, rgba(249, 115, 22, 0.03) 76%, transparent 77%),
    linear-gradient(90deg, var(--grey) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-layer);
}

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

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

.btn-cyan {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
}

.btn-cyan:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
  color: var(--white);
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 250, 251, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--blue);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-light);
  text-decoration: none;
  transition: color var(--transition);
}

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

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* Hero */
.hero {
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-content .tagline {
  font-size: 1.125rem;
  color: var(--grey-dark);
  margin: 1.25rem 0 1.75rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: var(--radius-lg);
  border: 2px solid var(--grey);
  box-shadow: var(--shadow-layer);
}

.layer-stack {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.layer-bar {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.layer-bar:nth-child(1) { width: 120px; opacity: 1; }
.layer-bar:nth-child(2) { width: 100px; opacity: 0.8; }
.layer-bar:nth-child(3) { width: 80px; opacity: 0.6; }
.layer-bar:nth-child(4) { width: 60px; opacity: 0.4; }

.stream-chip {
  position: absolute;
  top: 1rem;
  right: -0.5rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  box-shadow: var(--shadow);
}

.stream-chip strong {
  display: block;
  font-size: 1.25rem;
  color: var(--cyan);
}

/* Pillars */
.pillar-band {
  background: var(--charcoal);
  padding: 2.5rem 0;
}

.pillar-band-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.pillar-item {
  color: var(--white);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.pillar-item h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.pillar-item p {
  font-size: 0.9rem;
  color: var(--grey-mid);
  margin: 0;
}

/* Stream diagram */
.stream-diagram {
  padding: 3rem 0;
}

.stream-diagram img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--grey);
  box-shadow: var(--shadow-layer);
}

/* Pipeline panels */
.pipeline-panel {
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.pipeline-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}

.pipeline-panel:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-layer);
  transform: translateY(-4px);
}

.pipeline-panel h3 {
  margin-bottom: 0.5rem;
}

.pipeline-panel p {
  color: var(--grey-dark);
  font-size: 0.95rem;
}

.pipeline-ref {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

/* Solutions list */
.solutions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.solution-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.solution-item:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.solution-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

.solution-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.solution-item p {
  font-size: 0.9rem;
  color: var(--grey-dark);
  margin: 0;
}

/* Service rows */
.service-rows {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem;
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
}

.service-row:nth-child(even) {
  direction: rtl;
}

.service-row:nth-child(even) > * {
  direction: ltr;
}

.service-row img {
  border-radius: var(--radius);
  border: 2px solid var(--grey);
}

.service-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.1);
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.service-features {
  list-style: none;
  margin: 1rem 0 1.25rem;
}

.service-features li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
}

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

.faq-item {
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--cyan);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--charcoal);
  background: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--blue);
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
}

.faq-item.open .faq-answer {
  padding: 0 1.5rem 1.25rem;
  max-height: 300px;
}

.faq-answer p {
  color: var(--grey-dark);
  font-size: 0.95rem;
}

/* Testimonial */
.testimonial-large {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial-large::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--cyan);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-large blockquote {
  font-size: 1.25rem;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--charcoal);
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--grey-dark);
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 4.5rem 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(249, 250, 251, 0.85);
  max-width: 520px;
  margin: 0 auto 1.75rem;
  font-size: 1.0625rem;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

.cta-section .btn-primary:hover {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
}

/* Inline email */
.inline-email {
  background: var(--charcoal);
  padding: 3rem 0;
}

.inline-email-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.inline-email-text h3 {
  color: var(--white);
  margin-bottom: 0.35rem;
}

.inline-email-text p {
  color: var(--grey-mid);
  margin: 0;
  font-size: 0.95rem;
}

.inline-email-form {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  max-width: 480px;
}

.inline-email-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--charcoal-light);
  border-radius: var(--radius);
  background: var(--charcoal-light);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.inline-email-form input::placeholder {
  color: var(--grey-mid);
}

.inline-email-form input:focus {
  outline: none;
  border-color: var(--cyan);
}

.inline-email-form .form-error {
  position: absolute;
  bottom: -1.25rem;
  left: 0;
  font-size: 0.8rem;
  color: var(--orange);
}

.inline-email-wrap {
  position: relative;
  flex: 1;
  display: flex;
  gap: 0.75rem;
}

/* Page hero */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, transparent 100%);
}

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

.page-hero p {
  color: var(--grey-dark);
  max-width: 600px;
  font-size: 1.0625rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--grey-dark);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--blue);
}

/* Collection */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 2px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal-light);
  cursor: pointer;
  transition: all var(--transition);
}

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

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.collection-card {
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.collection-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-layer);
  transform: translateY(-4px);
}

.collection-card.hidden {
  display: none;
}

.collection-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.collection-card-body {
  padding: 1.25rem;
}

.collection-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.collection-ref {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
}

.collection-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.collection-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blue);
  margin: 0.5rem 0;
}

/* Services list page */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-grid img {
  border-radius: var(--radius-lg);
  border: 2px solid var(--grey);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  padding: 1.5rem;
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
  text-align: center;
}

.value-card h4 {
  font-family: var(--font-heading);
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--grey-dark);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}

.contact-form-wrap {
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--grey);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--orange);
}

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

.form-error {
  font-size: 0.8rem;
  color: var(--orange);
  margin-top: 0.3rem;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  background: rgba(6, 182, 212, 0.1);
  border: 2px solid var(--cyan);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-success.visible {
  display: block;
}

.form-success h3 {
  color: var(--cyan-dark);
  margin-bottom: 0.5rem;
}

/* Legal */
.legal-content {
  max-width: 760px;
  padding: 3rem 0 4rem;
}

.legal-content h1 {
  margin-bottom: 1rem;
}

.legal-updated {
  color: var(--grey-dark);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey);
}

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

.legal-content ul {
  margin: 0.75rem 0 1rem 1.5rem;
}

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

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: var(--grey-mid);
  padding: 3.5rem 0 1.5rem;
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: var(--grey-mid);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--grey-mid);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--charcoal-light);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--grey-mid);
}

/* Brand note */
.brand-note {
  background: rgba(37, 99, 235, 0.06);
  border-top: 1px solid var(--grey);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: var(--grey-dark);
  text-align: center;
}

.brand-note strong {
  color: var(--blue);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 1.25rem;
  z-index: 200;
  transform: translateY(100%);
  transition: transform var(--transition);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-inner p {
  flex: 1;
  font-size: 0.9rem;
  margin: 0;
  min-width: 240px;
}

.cookie-inner a {
  color: var(--cyan);
}

.cookie-actions {
  flex-shrink: 0;
}

/* Animations */


/* Metrics strip */
.metrics-strip {
  background: var(--charcoal);
  padding: 2.5rem 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.metric-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

.metric-item span {
  font-size: 0.85rem;
  color: var(--grey-mid);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row:nth-child(even) {
    direction: ltr;
  }

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

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey);
    padding: 1rem 1.5rem;
    display: none;
  }

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

  .main-nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }

  .header-cta {
    display: none;
  }

  .pillar-band-inner,
  .solutions-list,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .inline-email-inner {
    flex-direction: column;
    text-align: center;
  }

  .inline-email-wrap {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }
}

/* Scroll Animations — progressive enhancement */
.slide-up, .fade-in {
  opacity: 1;
  transform: none;
  transition: opacity .4s ease, transform .4s ease;
}
html.js .slide-up, html.js .fade-in {
  opacity: 0;
  transform: translateY(28px);
}
html.js .slide-up.visible, html.js .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
