:root {
  --bg: #f6f7fb;
  --text: #0f172a;
  --muted: #475569;
  --accent: #d60d00;
  --accent-soft: #ffe0e0;
  --card: #ffffff;
  --border: #e2e8f0;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Basier Circle', Basiercircle, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-content a {
  color: #cbd5f5;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-content a:hover {
  color: #fff;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.main-nav a {
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.main-nav .cta {
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.main-nav .cta:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.hero {
  padding: 4rem 0 3rem;
  position: relative;
  /* Hero background image - to revert, remove background-image and ::before overlay */
  /* Replace this URL with your warehouse image file path */
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1,
.hero .lead,
.hero .eyebrow {
  color: #ffffff;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0.5rem 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.btn {
  padding: 0.9rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  border: 1px solid transparent;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn.primary:hover {
  background: #b00b00;
  border-color: #b00b00;
  transform: translateY(-1px);
}

.btn.secondary {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: var(--accent-soft);
}

.btn.secondary:hover {
  color: #b00b00;
  background: #ffcccc;
  border-color: #ffcccc;
  transform: translateY(-1px);
}

.hero-highlights {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.card-title {
  font-weight: 600;
  color: var(--muted);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.metric {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

.metric .label {
  color: var(--muted);
}

.metric .value {
  font-size: 1.5rem;
  font-weight: 600;
}

.metric:last-of-type {
  border-bottom: none;
}

.card-foot {
  font-size: 0.85rem;
  color: var(--muted);
}

.panel {
  padding: 4rem 0;
}

.panel.alt {
  background: #fff;
}

#compliance.panel {
  padding-top: 2rem;
}

.panel-cta {
  text-align: center;
  margin-top: 2rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.card.compact {
  min-height: 180px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card ul {
  padding-left: 1.25rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.faq-grid article {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.feature-section {
  margin-top: 3rem;
}

.feature-grid article h3 {
  margin-top: 0;
}

.testimonials-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(4, 1fr) !important;
  max-width: 1200px !important;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }
}

.testimonial-card .quote {
  margin: 0 0 1.25rem;
  font-style: italic;
  color: var(--muted);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #d60d00;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar svg {
  width: 100%;
  height: 100%;
}

.testimonial-card .author {
  margin: 0;
  font-weight: 600;
}

.testimonial-card .role {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.trusted-section {
  background: var(--card);
}

.about-panel {
  background: var(--bg);
}

.contact-panel {
  background: var(--card);
}

.about-panel h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.panel h2 {
  text-align: center;
  margin-bottom: 3rem;
}

#features h2 {
  text-align: left;
}

#compliance .eyebrow {
  margin-bottom: 2rem;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 3rem 0;
}

.client-logo {
  height: 40px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 640px) {
  .trusted-logos {
    gap: 2rem;
  }
  
  .client-logo {
    height: 30px;
  }
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  justify-items: center;
}

@media (max-width: 1024px) {
  .directors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .directors-grid {
    grid-template-columns: 1fr;
  }
}

.director-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  width: 100%;
  max-width: 280px;
}

.director-card.testimonial-card {
  max-width: none;
  display: flex;
  flex-direction: column;
}

.director-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
  background-color: #d60d00;
  display: flex;
  align-items: center;
  justify-content: center;
}

.director-photo svg {
  width: 80%;
  height: 80%;
}

.director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.director-title {
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.director-bio {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.policy-page {
  padding: 3rem 0 4rem;
}

.policy-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-top: 0.5rem;
}

.policy-page section {
  margin-top: 2.5rem;
}

.contact-panel {
  background: #fff;
  padding: 4rem 0;
}

.contact-panel h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.contact-details h3 {
  margin-bottom: 0.5rem;
}

.contact-details p {
  margin-top: 0;
  color: var(--muted);
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.contact-info a {
  color: var(--accent);
  font-weight: 600;
}

.contact-intro {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.contact-form {
  max-width: 600px;
  margin: 0;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #94a3b8;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--card);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
}

.form-response {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  background: #0f172a;
  color: #fff;
  padding: 1.5rem 0;
  transition: bottom 0.3s ease;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
  bottom: 0;
}

.cookie-banner__content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.cookie-banner__content p {
  flex: 1 1 220px;
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cookie-banner__actions a {
  color: #cbd5f5;
  text-decoration: underline;
}

.cookie-banner .btn.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.site-footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .main-nav {
    display: none;
  }
}

