/* ============================================================
   MEDIPRINTIC — Original 2021 Design Recreation
   Based on archived mediprintic.eu (December 2021)
   Fonts: Montserrat · Roboto Slab · Roboto · Varela Round
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Roboto+Slab:wght@300;400;600;700&family=Roboto:wght@300;400;500;700&family=Varela+Round&display=swap');

/* ── Reset ─────────────────────────────────────────────────── */

*, ::before, ::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
::selection { background: rgba(45, 125, 210, 0.2); color: #1b2e6b; }

/* ── Design Tokens ─────────────────────────────────────────── */

:root {
  --primary:        #1B2E6B;
  --primary-dark:   #111f4d;
  --secondary:      #2D7DD2;
  --accent:         #40B4E0;
  --accent-light:   #7DCFEF;
  --gradient-nav:   linear-gradient(135deg, #1B2E6B 0%, #234AAA 60%, #2D7DD2 100%);
  --gradient-hero:  linear-gradient(135deg, #1B2E6B 0%, #1e3d8f 40%, #2D7DD2 80%, #40B4E0 100%);
  --gradient-cta:   linear-gradient(135deg, #2D7DD2 0%, #1B2E6B 100%);
  --white:          #ffffff;
  --light:          #F5F7FA;
  --light-2:        #EBF0F8;
  --text:           #2C2C3E;
  --text-light:     #666680;
  --border:         #DDE3F0;
  --shadow:         0 4px 24px rgba(27, 46, 107, 0.1);
  --shadow-lg:      0 10px 50px rgba(27, 46, 107, 0.18);
  --radius:         8px;
  --radius-lg:      14px;
  --transition:     all 0.3s ease;
  --container:      1200px;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 99px; }

/* ── Container ─────────────────────────────────────────────── */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Wave SVG Dividers ─────────────────────────────────────── */

.wave-bottom,
.wave-top { position: absolute; left: 0; right: 0; overflow: hidden; line-height: 0; }
.wave-bottom { bottom: -1px; }
.wave-top    { top: -1px; }
.wave-bottom svg,
.wave-top svg { display: block; width: 100%; }
.wave-fill { fill: #fff; }
.wave-fill-light { fill: var(--light); }

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gradient-nav);
  box-shadow: 0 2px 20px rgba(17, 31, 77, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1); /* white logo on dark bg */
}
.site-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}
.site-logo-text span {
  color: var(--accent-light);
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-menu li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

/* Dropdown */
.nav-menu li.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--primary-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 180px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-menu li.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 9px 18px !important;
  background: transparent !important;
  font-size: 0.78rem !important;
  border-radius: 0 !important;
}
.nav-dropdown a:hover { background: rgba(255,255,255,0.08) !important; }

/* Nav phone */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-phone svg { width: 18px; height: 18px; }
.nav-phone:hover { color: var(--accent-light); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  padding: 13px 28px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 125, 210, 0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--primary-dark);
}
.btn-sm { padding: 9px 20px; font-size: 0.78rem; }

/* ============================================================
   SECTION LABELS / EYEBROW
   ============================================================ */

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-eyebrow--white { color: var(--accent-light); }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.section-title--white { color: #fff; }
.section-title--center { text-align: center; }

.section-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 580px;
  margin-bottom: 32px;
}
.section-desc--white { color: rgba(255,255,255,0.8); }
.section-desc--center { margin-left: auto; margin-right: auto; text-align: center; }

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  background: var(--gradient-hero);
  padding: 100px 0 140px;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

/* Decorative circles */
.hero::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64,180,224,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,125,210,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Varela Round', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent-light);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.hero-subtitle {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 300;
  color: var(--accent-light);
  margin-bottom: 26px;
  font-style: italic;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero image */
.hero-image {
  position: relative;
}
.hero-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(17, 31, 77, 0.5);
  position: relative;
}
.hero-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,46,107,0.2) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Wave at bottom of hero */
.hero .wave-bottom svg .wave-fill { fill: #fff; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section { background: #fff; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid rgba(45,125,210,0.15);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about-quote {
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-light);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 28px;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

/* ============================================================
   TEAM SECTION
   ============================================================ */

.team-section {
  background: var(--light);
  position: relative;
}

.team-section-header { text-align: center; margin-bottom: 50px; }

.team-row {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}
.team-row-4 { grid-template-columns: repeat(4, 1fr); }
.team-row-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.team-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card-bg { transform: scale(1.06); }

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,31,77,0.92) 0%, rgba(17,31,77,0.4) 50%, transparent 80%);
  transition: var(--transition);
}
.team-card:hover .team-card-overlay {
  background: linear-gradient(to top, rgba(17,31,77,0.96) 0%, rgba(27,46,107,0.65) 60%, rgba(45,125,210,0.15) 100%);
}

.team-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 22px;
  z-index: 2;
  transform: translateY(8px);
  transition: var(--transition);
}
.team-card:hover .team-card-body { transform: translateY(0); }

.team-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.team-card-role {
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  color: var(--accent-light);
  font-weight: 400;
  line-height: 1.5;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */

.products-section {
  background: #fff;
  position: relative;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.product-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img { transform: scale(1.03); }
.product-card-img-wrap {
  overflow: hidden;
  position: relative;
}
.product-card-img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, #fff, transparent);
}

.product-card-body {
  padding: 28px 28px 32px;
}

.product-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--secondary);
  transition: var(--transition);
}
.product-card-link:hover { color: var(--accent); gap: 10px; }
.product-card-link svg { width: 14px; height: 14px; }

/* ============================================================
   PROJECT SECTION
   ============================================================ */

.project-section { background: var(--light); }

.project-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.project-text {
  font-family: 'Roboto Slab', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}

/* ============================================================
   TESTIMONIALS / OPINIONS SECTION
   ============================================================ */

.opinions-section {
  background: var(--gradient-cta);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.opinions-section::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64,180,224,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.opinions-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.opinions-label-col { }

.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  margin-bottom: 20px;
  transition: var(--transition);
}
.testimonial-card:last-child { margin-bottom: 0; }
.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 14px; right: 24px;
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.12);
  pointer-events: none;
}

.testimonial-text {
  font-family: 'Roboto Slab', serif;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */

.partners-section { background: var(--light); }
.partners-header { text-align: center; margin-bottom: 50px; }

.partners-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partner-logo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  min-width: 160px;
  min-height: 80px;
}
.partner-logo img {
  max-height: 50px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(40%);
  transition: var(--transition);
}
.partner-logo:hover {
  border-color: var(--secondary);
  box-shadow: 0 6px 24px rgba(45,125,210,0.15);
  transform: translateY(-3px);
}
.partner-logo:hover img { filter: grayscale(0%); }

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background: var(--gradient-hero);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section .wave-top { top: 0; }
.cta-section .wave-top .wave-fill { fill: var(--light); }

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(64,180,224,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.footer-brand-desc { font-size: 0.85rem; line-height: 1.75; max-width: 280px; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-legal a:hover { color: var(--accent-light); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  .container { padding: 0 28px; }

  .hero-grid      { grid-template-columns: 1fr; text-align: center; }
  .hero-eyebrow   { justify-content: center; }
  .hero-desc      { margin: 0 auto 40px; }
  .hero-actions   { justify-content: center; }
  .hero-image     { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-height: 380px; }
  .about-image-wrap img { height: 380px; }

  .team-row-4 { grid-template-columns: repeat(2, 1fr); }
  .team-row-3 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }

  .products-grid { grid-template-columns: 1fr 1fr; }

  .opinions-grid  { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ============================================================ */

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section-pad { padding: 60px 0; }

  .nav-menu     { display: none; }
  .nav-phone    { display: none; }
  .nav-toggle   { display: flex; }
  .nav-inner    { height: 68px; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--primary-dark);
    padding: 16px 0 24px;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-menu.open li a { padding: 12px 24px; display: block; border-radius: 0; }

  .hero { padding: 80px 0 100px; min-height: auto; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .team-row-4,
  .team-row-3 { grid-template-columns: 1fr 1fr; }

  .products-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }

  .cta-actions { flex-direction: column; align-items: center; }

  .partners-logos { gap: 20px; }
  .partner-logo   { min-width: 130px; padding: 14px 22px; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .cta-section, .opinions-section { background: #fff !important; color: #000 !important; }
  .hero { min-height: auto; background: var(--light) !important; }
}