@font-face {
  font-family: 'Urbanist';
  src: url("/static/fonts/Urbanist.a1f03faf5dd0.woff") format('woff');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

/* =========================
   ROOT / BRAND
========================= */

:root {
  --main-bg-color: #FFF;
  --main-text-color: #333;
  --heading-color: #2d3e6a;
  --main-accent-color: #b6dcff;
  --main-border-color: #ccc;
  --soft-border: rgba(45, 62, 106, 0.12);
  --soft-bg: rgba(45, 62, 106, 0.04);
  --button-font: 'Urbanist', sans-serif;
  --text-base: 1.08rem;
  --text-small: 0.98rem;
  --text-lede: 1.14rem;
  --lh: 1.7;
  --navbar-height: 80px;
}

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

body {
  font-family: var(--button-font);
  color: var(--main-text-color);
  background: var(--main-bg-color);
  font-size: var(--text-base);
  line-height: var(--lh);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================
   CONTAINER
========================= */

.content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  width: 100%;
  height: var(--navbar-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  background: var(--main-bg-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  font-family: var(--button-font);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(45, 62, 106, 0.12);
}

.logo img,
.logo-img {
  height: 56px;
  max-height: 56px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--heading-color);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 1.2rem;
}

.nav-links a {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.nav-links a:hover { opacity: 0.7; }

.nav-cta {
  padding: 0.45rem 1rem !important;
  font-size: 1rem !important;
}

.hamburger {
  display: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--heading-color);
  line-height: 1;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 290px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  box-shadow: -4px 0 28px rgba(0, 0, 0, 0.14);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
  display: block;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--soft-border);
  transition: opacity 0.2s ease;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { opacity: 0.65; }

#closeBtn {
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: var(--heading-color);
  align-self: flex-end;
  padding: 0;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: inherit;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1500;
}

.menu-overlay.visible { display: block; }

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--navbar-height) + 4rem) 2rem 4rem;
  background-size: cover;
  background-position: center;
}

.left {
  position: relative;
  z-index: 2;
  color: var(--main-bg-color);
}

.left h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.02;
}

.left h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 1rem;
  padding: 0.3em 1em;
  background-color: var(--heading-color);
  display: inline-block;
}

/* =========================
   BUTTONS
========================= */

.buttons {
  margin-top: 2rem;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.light-btn {
  display: inline-block;
  background-color: var(--main-accent-color);
  color: var(--heading-color);
  border: none;
  padding: 0.55rem 1.15rem;
  font-family: var(--button-font);
  font-weight: 800;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 5px;
  text-decoration: none;
}

.light-btn:hover { filter: brightness(0.98); }

/* =========================
   SECTION BASE
========================= */

.section {
  padding: 6.5rem 0;
}

.home-section.is-band {
  background: var(--soft-bg);
  border-top: 1px solid var(--soft-border);
  border-bottom: 1px solid var(--soft-border);
}

/* =========================
   SECTION HEADINGS
========================= */

.section h3 {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--main-bg-color);
  margin-bottom: 1em;
  font-family: var(--button-font);
  background-color: var(--heading-color);
  margin-top: 1em;
  padding: 0.3em 1em;
}

/* =========================
   COMMON TEXT STYLES
========================= */

.section-lede,
.section-intro p,
.services-intro p,
.section-header p {
  font-size: var(--text-lede);
  line-height: 1.75;
  color: #4b5563;
  max-width: 820px;
}

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

.section-header p { margin: 1rem auto 0; }

.service-item h4,
.industry-card h4,
.how-card h4 {
  color: var(--heading-color);
  font-weight: 800;
  font-size: 1.18rem;
  line-height: 1.25;
}

.service-item p,
.industry-card p,
.how-card p {
  font-size: var(--text-base);
  line-height: 1.65;
  color: #4b5563;
}

.micro-cta { margin-top: 2.75rem; }

.link,
.micro-cta .link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(45, 62, 106, 0.25);
  padding-bottom: 2px;
}

.link:hover { border-bottom-color: rgba(45, 62, 106, 0.55); }

/* =========================
   SERVICES
========================= */

.services-intro {
  max-width: 820px;
  margin: 1.5rem 0 3rem;
  padding-left: 1rem;
  border-left: 2px solid var(--heading-color);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.1rem;
}

.service-item {
  background: #fff;
  border: 1px solid var(--soft-border);
  border-top: 4px solid var(--heading-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 62, 106, 0.20);
}

.service-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 1px solid var(--soft-border);
  transition: transform 0.4s ease;
  display: block;
}

.service-item:hover img { transform: scale(1.04); }
.service-item h4 { margin: 0; padding: 1.05rem 1.15rem 0.45rem; }
.service-item p { margin: 0; padding: 0 1.15rem 1.25rem; flex-grow: 1; }

/* =========================
   INDUSTRIES
========================= */

.industry-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
  margin-top: 2.2rem;
}

.industry-card {
  background: #fff;
  border: 1px solid var(--soft-border);
  border-top: 4px solid var(--heading-color);
  padding: 1.2rem 1.2rem 1.35rem;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.industry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 62, 106, 0.20);
}

.industry-icon { display: block; margin-bottom: 0.75rem; }

.industry-icon svg,
.how-icon svg {
  fill: var(--heading-color);
  width: 44px;
  height: 44px;
  display: block;
}

.how-icon { margin-bottom: 0.85rem; }
.industry-card h4 { margin: 0 0 0.55rem; }
.industry-card p { margin: 0; }

/* =========================
   HOW IT WORKS
========================= */

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.how-card {
  background: #fff;
  border: 1px solid var(--soft-border);
  border-top: 4px solid var(--heading-color);
  padding: 1.75rem 1.6rem;
  transform: skewX(-8deg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-card > * { transform: skewX(8deg); }

.how-card:hover {
  transform: skewX(-8deg) translateY(-4px);
  box-shadow: 0 10px 28px rgba(45, 62, 106, 0.11);
}

.how-step {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--heading-color);
  opacity: 0.09;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: -0.5rem;
}

.how-card h4 { margin: 0 0 0.65rem; }
.how-card p { margin: 0; }

/* =========================
   ABOUT
========================= */

#about { position: relative; padding: 0; }

#about .about-full {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

#about .about-left,
#about .about-right { padding: 6.5rem 0; }

#about .about-left { background: var(--heading-color); color: #fff; }
#about .about-right { background: var(--soft-bg); }

#about .about-left-inner,
#about .about-right-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

#about .about-left-inner { padding-left: 4rem; padding-right: 4rem; }
#about .about-right-inner { padding-left: 4rem; padding-right: 4rem; }

#about .about-h3 {
  background: transparent !important;
  color: #fff !important;
  padding: 0 !important;
  margin: 0 0 1.1rem 0 !important;
}

#about .about-lede {
  margin: 0 0 1.6rem 0;
  max-width: 52ch;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  font-size: 1.18rem;
}

#about .about-body {
  color: rgba(255,255,255,0.92);
  font-size: var(--text-base);
  max-width: 62ch;
}

#about .about-ticks {
  color: rgba(255,255,255,0.92);
  margin-top: 1.2rem;
  font-size: var(--text-base);
  padding-left: 1.2rem;
}

#about .about-ticks li { margin-bottom: 0.5rem; }

#about .about-link {
  display: inline-block;
  margin-top: 1.8rem;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid rgba(255,255,255,0.55);
  padding-bottom: 2px;
}

#about .about-link:hover { border-bottom-color: rgba(255,255,255,0.95); }

#about .facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.35rem;
}

#about .facts-grid .fact {
  border: 1px solid var(--soft-border);
  border-top: 4px solid var(--heading-color);
  background: #fff;
  padding: 1.6rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.fact-icon { margin-bottom: 0.9rem; }

.fact-icon svg {
  fill: var(--heading-color);
  width: 32px;
  height: 32px;
  display: block;
  opacity: 0.85;
}

.fact-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.fact-kicker {
  font-size: 0.8rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.fact-desc {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* =========================
   HOMEPAGE CONTACT SECTION
========================= */

.section-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.75rem;
  align-items: start;
}

.section-rail { max-width: 420px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.75rem;
}

.contact-card {
  border: 1px solid var(--soft-border);
  border-top: 4px solid var(--heading-color);
  background: #fff;
  padding: 1.45rem;
}

.contact-grid .details-panel { height: 100%; }

.contact-head {
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

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

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.field span {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: #374151;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--soft-border);
  border-radius: 4px;
  padding: 0.75rem 0.8rem;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--heading-color);
  box-shadow: 0 0 0 3px rgba(45, 62, 106, 0.1);
}

.field textarea { resize: vertical; }

.btn {
  margin-top: 1rem;
  background: var(--heading-color);
  color: white;
  border: none;
  padding: 0.85rem 1.1rem;
  cursor: pointer;
  font-weight: 800;
  font-family: var(--button-font);
  border-radius: 5px;
}

.btn:hover { filter: brightness(1.05); }

.fine {
  margin-top: 0.85rem;
  color: #6b7280;
  font-size: 0.98rem;
}

.contact-details .detail { margin-bottom: 1.2rem; }

.detail-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.detail-value {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  word-break: break-word;
  overflow-wrap: break-word;
}

a.detail-value:hover { text-decoration: underline; }

.contact-note {
  margin-top: 1.25rem;
  color: #4b5563;
  line-height: 1.65;
  font-size: var(--text-base);
}

.form-success {
  padding: 2rem 1rem;
  text-align: center;
}

/* =========================
   INNER PAGE HERO
========================= */

.inner-hero {
  background: var(--heading-color);
  color: #fff;
  padding: calc(var(--navbar-height) + 3rem) 0 3.5rem;
  text-align: center;
}

.inner-hero.has-image {
  background-color: var(--heading-color);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: calc(var(--navbar-height) + 4rem) 0 4.5rem;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(45, 62, 106, 0.82) 0%,
    rgba(20, 35, 70, 0.72) 100%
  );
  z-index: 0;
}

.inner-hero-content {
  position: relative;
  z-index: 1;
}

.inner-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
}

.inner-hero-subtitle {
  font-size: var(--text-lede);
  opacity: 0.82;
  max-width: 580px;
  margin: 1rem auto 0;
  line-height: 1.65;
}

/* =========================
   INNER PAGE CONTENT
========================= */

.page-section { padding: 5rem 0 6rem; }

/* Remove padding from page-contact-grid children on mobile */
@media (max-width: 1200px) {
  .page-section .content {
    padding-left: 0;
    padding-right: 0;
  }
}

.page-intro {
  max-width: 780px;
  margin: 0 auto 3.5rem;
  font-size: var(--text-lede);
  color: #4b5563;
  line-height: 1.75;
  text-align: center;
}

.page-intro p { margin-bottom: 1em; }

/* Contact page grid */
.page-contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Details panel â€” used on contact page and homepage */
.details-panel {
  background: var(--heading-color);
  color: #fff;
  padding: 2rem;
  border-top: 4px solid var(--main-accent-color);
  box-sizing: border-box;
}

.details-panel-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.75rem;
}

.detail-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.detail-icon svg {
  fill: var(--main-accent-color);
  width: 20px;
  height: 20px;
  display: block;
  margin-top: 2px;
  flex-shrink: 0;
}

.details-note {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.details-quote-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--main-accent-color);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

.details-quote-link:hover { text-decoration: underline; }

/* Form card */
.form-card {
  background: #fff;
  border: 1px solid var(--soft-border);
  border-top: 4px solid var(--heading-color);
  padding: 2rem 2.25rem;
  box-sizing: border-box;
}

.form-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.form-section-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--heading-color);
  opacity: 0.55;
  margin: 1.5rem 0 0.9rem;
}

.form-section-label:first-child { margin-top: 0; }

.quote-form .field-row .field:last-child { margin-top: 2rem; }

.field-error {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.88rem;
  color: #dc2626;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.required { color: var(--heading-color); opacity: 0.55; }

/* Quote layout */
.quote-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

.quote-sidebar-card {
  background: var(--soft-bg);
  border: 1px solid var(--soft-border);
  border-top: 4px solid var(--heading-color);
  padding: 1.75rem 1.6rem;
}

.quote-sidebar-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1.1rem;
}

.quote-sidebar-list { list-style: none; padding: 0; margin: 0; }

.quote-sidebar-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.9rem;
  font-size: 0.97rem;
  color: #4b5563;
  line-height: 1.55;
}

.quote-sidebar-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--heading-color);
  font-weight: 700;
}

.quote-sidebar-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--soft-border);
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.6;
}

.quote-sidebar-note a {
  color: var(--heading-color);
  font-weight: 700;
  text-decoration: none;
}

.quote-sidebar-note a:hover { text-decoration: underline; }

/* Success banner */
.form-success-banner {
  text-align: center;
  padding: 3rem 2rem;
}

.form-success-banner svg {
  fill: var(--heading-color);
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  display: block;
}

.form-success-banner h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 0.65rem;
  background: none;
  padding: 0;
  display: block;
}

.form-success-banner p {
  color: #4b5563;
  font-size: var(--text-lede);
  margin-bottom: 1.75rem;
}

/* =========================
   ERROR PAGES
========================= */

.error-page {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  padding-top: 90px;
}

.error-inner {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.error-code {
  font-size: 8rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
  opacity: 0.12;
}

.error-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0.5rem 0 1rem;
}

.error-message {
  color: #4b5563;
  font-size: var(--text-lede);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* =========================
   FOOTER
========================= */

.footer { background: var(--heading-color); color: #fff; }

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.footer a:hover { opacity: 0.75; }

.footer-links {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links span {
  opacity: 0.4;
  display: inline;
}

/* =========================
   RESPONSIVE â€” 1200px
========================= */

@media (max-width: 1200px) {
  .industry-cards { grid-template-columns: repeat(2, 1fr); }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .how-card { transform: none; }
  .how-card > * { transform: none; }
  .how-card:hover { transform: translateY(-4px); }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contact-card,
  .details-panel {
    width: 100%;
    box-sizing: border-box;
  }

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

  #about .about-full { grid-template-columns: 1fr; }
  #about .about-left-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
  #about .about-right-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
  #about .facts-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  #about .facts-grid .fact { min-height: 0; }

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

  .quote-layout { grid-template-columns: 1fr; padding: 0 1rem; }

  .section { padding: 4rem 0; }

  .form-card { padding: 1.5rem 1.25rem; }
}

/* =========================
   RESPONSIVE â€” 960px
========================= */

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  .logo img,
  .logo-img {
    height: 48px;
    max-height: 48px;
  }
}

/* =========================
   RESPONSIVE â€” 600px
========================= */

@media (max-width: 600px) {
  .service-list { grid-template-columns: 1fr; }
  .industry-cards { grid-template-columns: 1fr; }
  .left h1 { font-size: 3rem; }
  .left h3 { font-size: 1.3rem; }
  #about .facts-grid { grid-template-columns: 1fr; }

  /* Footer â€” hide separators, stack on very small screens */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .footer-links span { display: inline; opacity: 0.4; }

  /* Contact page — even padding */
  .page-contact-grid {
    padding: 0 1rem;
  }

  .details-panel,
  .form-card {
    width: 100%;
    box-sizing: border-box;
  }
}





/* =========================
   COOKIE BANNER
========================= */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(22, 33, 62, 0.97);
  backdrop-filter: blur(8px);
  color: #fff;
  z-index: 9999;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cookie-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-inner p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

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

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-buttons .btn,
.cookie-decline-btn {
  margin-top: 0;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-family: var(--button-font);
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s ease;
}

.cookie-buttons .btn {
  background: var(--main-accent-color);
  color: var(--heading-color);
  border-color: var(--main-accent-color);
}

.cookie-buttons .btn:hover {
  filter: brightness(1.05);
}

.cookie-decline-btn {
  background: transparent;
  color: rgba(255,255,255,0.8);
}

.cookie-decline-btn:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
  }
}


.grecaptcha-badge {
  visibility: hidden !important;
}