/* ===========================
   NIS2 Compliance - style.css
   BALTUM Bureau
   Light Professional Theme
   =========================== */

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

:root {
  --white: #FFFFFF;
  --light-grey: #F5F7FA;
  --navy: #1a2a4a;
  --text: #1a2a4a;
  --text-muted: #4a5568;
  --text-dim: #718096;
  --blue: #1D6FE8;
  --blue-light: #3B82F6;
  --blue-dark: #1558C0;
  --blue-glow: rgba(29, 111, 232, 0.12);
  --blue-bg: #EBF5FF;
  --border: #e2e8f0;
  --border-focus: #1D6FE8;
  --orange: #fd7e14;
  --green: #28a745;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 28px rgba(0,0,0,0.12);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.text-blue { color: var(--blue); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 12px 24px;
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(29, 111, 232, 0.3);
}

/* Outline button — light contexts */
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 11px 24px;
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

/* Outline button in dark contexts (hero) */
.hero .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: transparent;
}
.hero .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--blue);
  background: var(--blue-bg);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 140px 0 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2a4a 0%, #1D6FE8 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 64px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}

.hero-title .text-blue {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.4);
  text-underline-offset: 6px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Stats bar — white band below hero */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #fff;
  border-top: none;
  border-radius: 0;
  padding: 32px 40px;
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
  padding: 8px 16px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
}

/* Alternating backgrounds */
.section:nth-of-type(odd) {
  background: var(--white);
}
.section:nth-of-type(even) {
  background: var(--light-grey);
}

/* Explicit overrides where needed */
.section-white { background: var(--white) !important; }
.section-grey  { background: var(--light-grey) !important; }

/* Services section */
#services { background: var(--light-grey); }
/* Requirements */
#requirements { background: var(--light-grey); }
/* Who needs it */
#who-needs { background: var(--white); }
/* Why BALTUM */
#why-baltum { background: var(--light-grey); }
/* Standards overlap */
#standards-overlap { background: var(--white); }
/* Contact */
#contact { background: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
  display: inline-block;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--blue);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
  margin-top: 16px;
}

/* ===== ABOUT / 2 COL CARDS ===== */
.cards-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}
.card.visible {
  opacity: 1;
  transform: translateY(0);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon-wrap.blue { background: var(--blue-bg); }
.card-icon-wrap.orange { background: rgba(245, 158, 11, 0.1); }

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.fine-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}
.fine-high {
  background: var(--blue-bg);
  border: 1px solid rgba(29, 111, 232, 0.2);
  color: var(--blue);
}
.fine-medium {
  background: rgba(253, 126, 20, 0.1);
  border: 1px solid rgba(253, 126, 20, 0.25);
  color: var(--orange);
}

/* ===== SERVICES ===== */
.cards-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: 14px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-card-featured {
  border-top: 3px solid var(--blue);
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(29, 111, 232, 0.15);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.service-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.service-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

/* Service CTA — outline style */
.service-card .btn-primary {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.service-card .btn-primary:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px rgba(29, 111, 232, 0.25);
}

/* ===== REQUIREMENTS ===== */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, transform 0.3s ease, opacity 0.4s ease;
  opacity: 0;
  transform: translateY(16px);
}
.req-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.req-item:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.req-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.req-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.req-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== SECTORS ===== */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}

.sector-item {
  background: var(--blue-bg);
  border: 1px solid rgba(29, 111, 232, 0.15);
  border-radius: 10px;
  padding: 16px 10px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, opacity 0.4s ease;
  opacity: 0;
  transform: translateY(16px);
  cursor: default;
}
.sector-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.sector-item:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(29, 111, 232, 0.12);
}

.sector-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.sector-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.3;
}

.threshold-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--blue-bg);
  border: 1px solid rgba(29, 111, 232, 0.2);
  border-radius: 14px;
  padding: 24px 32px;
}

.threshold-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.threshold-text strong { color: var(--navy); }

/* ===== WHY BALTUM ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.why-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}
.why-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.why-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.why-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.baltum-link-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue-bg);
  border: 1px solid rgba(29, 111, 232, 0.2);
  border-radius: 14px;
  padding: 24px 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.baltum-link-box span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== STANDARDS OVERLAP ===== */
.overlap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.overlap-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.overlap-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.overlap-standard {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
.overlap-pct {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
}
.overlap-pct small {
  font-weight: 400;
  color: var(--text-dim);
}
.overlap-bar-wrap {
  background: var(--border);
  border-radius: 99px;
  height: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.overlap-bar {
  background: linear-gradient(90deg, #1D6FE8, #3b9eff);
  height: 100%;
  border-radius: 99px;
  transition: width 0.4s ease;
}
.overlap-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: flex-start;
}
.badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.badge-covered {
  background: #28a745;
  color: #fff;
}
.badge-gap {
  background: #fd7e14;
  color: #fff;
}
.badge-item {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  font-size: 0.72rem;
  background: #f1f5f9;
  color: var(--navy);
  border: 1px solid var(--border);
}
.overlap-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--light-grey);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.overlap-cta p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  .overlap-grid { grid-template-columns: 1fr; }
}

/* ===== CONTACT ===== */
.section-contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.contact-info .section-title {
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-detail-item a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.contact-detail-item a:hover { color: var(--blue); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 111, 232, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: none;
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

/* Footer logo text in white */
.footer .logo-name { color: #fff; }
.footer .logo-tagline { color: rgba(255,255,255,0.5); }

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-top: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
}

.footer-updated {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-3col {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

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

  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    align-items: stretch;
  }
  .nav.active { display: flex; }
  .nav .btn { margin-top: 8px; text-align: center; }

  .hero { padding: 100px 0 0; }
  .stats-bar { gap: 12px; padding: 20px; }
  .stat-divider { display: none; }
  .stat-item { min-width: 80px; }
  .stat-value { font-size: 1.5rem; }

  .section { padding: 64px 0; }

  .cards-2col,
  .cards-3col,
  .requirements-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .baltum-link-box {
    flex-direction: column;
    text-align: center;
  }

  .threshold-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
}
