/* ============================================
   LABEZ — Mockup Stylesheet
   Laboratorium Energomontaz-Zachod Sp. z o.o.
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary: #1a2a3a;
  --primary-light: #2a3f55;
  --accent: #FECB00;
  --accent-hover: #e5b700;
  --secondary: #179aaf;
  --secondary-light: #1cb5ce;
  --bg-light: #f5f6fa;
  --bg-white: #ffffff;
  --text: #2a3a47;
  --text-light: #5a6a7a;
  --text-muted: #8a9aaa;
  --border: #e2e6ea;
  --footer-bg: #111827;
  --footer-text: #9ca3af;
  --success: #10b981;
  --danger: #ef4444;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Montserrat', 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 5rem 0;
  --container-width: 1200px;

  /* Transitions */
  --transition: all 0.3s ease;
}

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

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

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

a:hover {
  color: var(--secondary-light);
}

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

ul, ol {
  list-style: none;
}

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

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

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

/* --- Section --- */
.section {
  padding: var(--section-padding);
}

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

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

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* ============================================
   HEADER — Two-tier layout
   ============================================ */
.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Top bar — dark, compact */
.header-top {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}

.header__badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__badge {
  padding: 0.15rem 0.55rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
}

.header__badge:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--accent);
  border-color: var(--accent);
}

.header__badge img {
  height: 20px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.header__badge:hover img {
  opacity: 1;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.header__contact a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

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

.header__contact svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.header__lang {
  display: flex;
  gap: 0.2rem;
  margin-left: 0.75rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.header__lang a {
  padding: 0.15rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.header__lang a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.header__lang a.active {
  background: var(--accent);
  color: var(--primary);
}

/* Main header bar — white */
.header {
  background: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 80px;
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-img {
  height: 64px;
  width: auto;
}

.header__cert-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__cert-badge {
  display: flex;
  align-items: center;
  opacity: 0.65;
  transition: opacity 0.2s;
  text-decoration: none;
}

.header__cert-badge:hover {
  opacity: 1;
}

.header__cert-badge img {
  height: 36px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .header__cert-badges {
    display: none;
  }
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  gap: 0.15rem;
}

.nav__link {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav__link:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.nav__link--active {
  color: var(--secondary);
  font-weight: 600;
  position: relative;
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--secondary);
  border-radius: 1px;
}

.header__cta {
  flex-shrink: 0;
}

.header__cta .btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

/* ============================================
   HERO — Variant C: Compact + floating stat cards
   ============================================ */
.hero {
  position: relative;
  margin-top: 118px;
  padding: 5rem 0 4rem;
  text-align: center;
  overflow: visible;
  background: var(--primary);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 42, 58, 0.65);
  pointer-events: none;
  z-index: 1;
}

/* Background slideshow */
.slideshow-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.slideshow-bg__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slideshow-bg__slide--active {
  opacity: 1;
}

/* Slideshow backgrounds */
.slideshow-bg__slide:nth-child(1) {
  background: url('../slider/slider_01.jpg') center/cover no-repeat;
}
.slideshow-bg__slide:nth-child(2) {
  background: url('../slider/slider_02.jpg') center/cover no-repeat;
}
.slideshow-bg__slide:nth-child(3) {
  background: url('../slider/slider_03.jpg') center/cover no-repeat;
}
.slideshow-bg__slide:nth-child(4) {
  background: url('../slider/slider_04.jpg') center/cover no-repeat;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 720px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(254, 203, 0, 0.12);
  border: 1px solid rgba(254, 203, 0, 0.25);
  border-radius: 100px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  color: var(--bg-white);
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stat cards — overlapping hero/content boundary */
.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: -3.5rem;
  padding-bottom: 1rem;
}

.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hero-stat-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.hero-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-stat-card__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.hero-stat-card__number--accent {
  color: var(--accent-hover);
}

.hero-stat-card__label {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-stat-card__divider {
  width: 30px;
  height: 3px;
  background: var(--accent);
  margin: 0.5rem auto;
  border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(254, 203, 0, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--bg-white);
}

.btn--secondary {
  background: var(--secondary);
  color: var(--bg-white);
}

.btn--secondary:hover {
  background: var(--secondary-light);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--primary);
  color: var(--bg-white);
}

.btn--dark:hover {
  background: var(--primary-light);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.card__icon--ndt {
  background: rgba(23, 154, 175, 0.1);
  color: var(--secondary);
}

.card__icon--dt {
  background: rgba(254, 203, 0, 0.1);
  color: var(--accent-hover);
}

.card__icon--qual {
  background: rgba(26, 42, 58, 0.08);
  color: var(--primary);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card__link {
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card__link:hover {
  gap: 0.6rem;
}

/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */
.certs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.cert-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 0.75rem;
  align-items: start;
}

.cert-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.cert-card__placeholder {
  width: 220px;
  height: auto;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / -1;
}

.cert-card__placeholder img {
  max-height: 200px;
}

.cert-card__placeholder span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cert-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
  align-self: end;
}

.cert-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.cert-card .btn {
  align-self: start;
  justify-self: start;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 4rem 0;
  text-align: center;
}

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

.cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta .btn {
  margin: 0 0.5rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  position: relative;
  margin-top: 118px;
  padding: 4rem 0;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 42, 58, 0.65);
  pointer-events: none;
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .slideshow-bg {
  z-index: 0;
}

.page-hero h1 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

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

.about-content__text h2 {
  margin-bottom: 1rem;
}

.about-content__text p {
  color: var(--text-light);
}

.about-content__image {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, var(--bg-light), #dde1e8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
}

.about-content__image span {
  color: var(--text-muted);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--border);
}

.timeline__item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 2.5rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0.25rem;
  width: 13px;
  height: 13px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline__year {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.timeline__text {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Features list */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature-item__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(23, 154, 175, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
}

.feature-item h4 {
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.services-column {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.services-column__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.services-column__header .card__icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.services-column__header h2 {
  font-size: 1.5rem;
}

.services-column__header p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.service-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--bg-light);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item__abbr {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

.service-item__abbr--ndt {
  background: rgba(23, 154, 175, 0.08);
  color: var(--secondary);
}

.service-item__abbr--dt {
  background: rgba(254, 203, 0, 0.1);
  color: var(--accent-hover);
}

.service-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.service-item p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Additional services */
.additional-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.additional-service {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.additional-service:hover {
  border-color: var(--secondary);
}

.additional-service__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.additional-service h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.additional-service p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ============================================
   CERTIFICATIONS PAGE
   ============================================ */
.cert-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.cert-detail-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.cert-detail-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.cert-detail-card__image {
  width: 100%;
  height: 480px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  box-sizing: border-box;
}

.cert-detail-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cert-detail-card__image span {
  color: var(--text-muted);
  font-size: 1rem;
}

.cert-detail-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cert-detail-card__body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.cert-detail-card__body p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.cert-detail-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  font-size: 0.9rem;
  flex: 1;
}

.cert-detail-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cert-detail-card__meta strong {
  color: var(--primary);
}

.cert-detail-card__body .btn {
  margin: 1.5rem 0 0 0;
  align-self: flex-start;
}

/* ============================================
   FORMS
   ============================================ */
.form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.form-group label .required {
  color: var(--danger);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
  background: var(--bg-white);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(23, 154, 175, 0.1);
}

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

.form-group input[type="file"] {
  padding: 0.65rem 1rem;
  background: var(--bg-light);
  cursor: pointer;
}

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

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.form-consent input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(23, 154, 175, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.contact-info__item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info__item p,
.contact-info__item a {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
}

.map-placeholder span {
  color: var(--text-muted);
  font-size: 1rem;
}

.map-large {
  height: 450px;
  margin-top: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 0;
}

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

.footer__brand h3 {
  color: var(--bg-white);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--footer-text);
}

.footer__title {
  color: var(--bg-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: var(--footer-text);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--secondary);
  flex-shrink: 0;
}

.footer__contact-item a {
  color: var(--footer-text);
}

.footer__contact-item a:hover {
  color: var(--accent);
}

.footer__map {
  width: 100%;
  height: 120px;
  background: #1f2937;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  border: 1px solid #374151;
}

.footer__map span {
  color: #6b7280;
  font-size: 0.8rem;
}

.footer__bottom {
  border-top: 1px solid #1f2937;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer__bottom a {
  color: var(--footer-text);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .header-top {
    display: none;
  }

  .header {
    height: 80px;
  }

  .hero {
    margin-top: 80px;
  }

  .page-hero {
    margin-top: 80px;
  }

  .header__cta {
    display: none;
  }

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

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

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile nav overlay */
  .nav--open {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    z-index: 999;
    padding: 2rem;
  }

  .nav--open .nav__list {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .nav--open .nav__link {
    font-size: 1.1rem;
    padding: 1rem;
  }

  .hero {
    padding: 3rem 0 5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-stat-card {
    padding: 1.25rem 1rem;
  }

  .hero-stat-card__number {
    font-size: 1.75rem;
  }

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

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

  .cert-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cert-card__placeholder {
    width: 100%;
    grid-row: auto;
    margin-bottom: 1rem;
  }

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

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

  .cert-detail {
    grid-template-columns: 1fr;
  }

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

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

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

  .additional-services {
    grid-template-columns: 1fr;
  }

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

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

  .page-hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 0;
  }
}
