/* ============================================
   TRANSPERA – WEBSITE STYLESHEET
   Design: Modern, seriös, teal-basiert
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ---- TOKENS ---- */
:root {
  --teal:        #005a76;
  --teal-dark:   #004560;
  --teal-deeper: #003048;
  --teal-light:  #0080a8;
  --teal-bg:     #E6F2F7;
  --teal-bg2:    #F2F8FB;

  --dark:        #0A1820;
  --dark2:       #0F2030;
  --text:        #0F2835;
  --text-muted:  #4A6878;
  --text-light:  #7AA0B0;

  --white:       #FFFFFF;
  --off-white:   #F7FBFD;
  --border:      #C8DFE8;
  --border-light:#E6F2F7;

  --font-head:   'Figtree', sans-serif;
  --font-body:   'DM Sans', sans-serif;

  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 8px rgba(11,115,115,0.08);
  --shadow-md:   0 8px 32px rgba(11,115,115,0.12);
  --shadow-lg:   0 24px 64px rgba(11,115,115,0.16);

  --max-width:   1140px;
  --nav-height:  68px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { line-height: 1.75; color: var(--text-muted); }

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--dark {
  background: var(--dark);
  color: var(--white);
}
.section--teal {
  background: var(--teal);
  color: var(--white);
}
.section--bg {
  background: var(--teal-bg2);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(13, 26, 26, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.nav.scrolled {
  background: rgba(13, 26, 26, 0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.footer__logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav__link--active {
  color: var(--teal-light);
}
.nav__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--teal);
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  margin-left: 8px;
}
.nav__cta:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #005a76;
  border-radius: 2px;
  transition: 0.3s;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(11,115,115,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(11,115,115,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--teal-light);
}
.hero__title {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}
.hero__title em {
  font-style: normal;
  color: var(--teal-light);
}
.hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,115,115,0.35);
}
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Hero Visual */
.hero__visual {
  position: relative;
}
.hero__stats-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.hero__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hero__stat {
  padding: 20px;
  background: rgba(11,115,115,0.15);
  border: 1px solid rgba(11,115,115,0.3);
  border-radius: var(--radius);
}
.hero__stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.hero__badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 100px;
}
.hero__badge--teal {
  color: var(--teal-light);
  background: rgba(11,115,115,0.15);
  border-color: rgba(11,115,115,0.35);
}

/* ---- STRENGTHS ---- */
.strengths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.strength {
  background: var(--white);
  padding: 40px 36px;
  transition: background 0.2s;
}
.strength:hover { background: var(--teal-bg2); }
.strength__icon {
  width: 44px;
  height: 44px;
  background: var(--teal-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}
.strength__icon svg { width: 22px; height: 22px; }
.strength__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.strength p { font-size: 0.9rem; line-height: 1.7; }

/* ---- SECTION HEADER ---- */
.section-header {
  margin-bottom: 56px;
}
.section-header--center { text-align: center; }
.section-header--center .section-header__text {
  max-width: 560px;
  margin: 12px auto 0;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-label--white { color: rgba(255,255,255,0.6); }
.section-header h2 { color: var(--text); }
.section-header--dark h2 { color: var(--white); }
.section-header__text { margin-top: 12px; font-size: 1.05rem; }

/* ---- CATI SECTION ---- */
.cati__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cati__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.cati__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cati__feature-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.cati__feature-text h4 { color: var(--text); margin-bottom: 4px; }
.cati__feature-text p { font-size: 0.9rem; }
.cati__visual {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.cati__visual::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(11,115,115,0.25) 0%, transparent 70%);
}
.cati__visual-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
}
.cati__monitor {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}
.cati__monitor-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.cati__monitor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.cati__monitor-row {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.cati__monitor-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 4px;
  opacity: 0.8;
}
.cati__tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--teal-light);
  background: rgba(11,115,115,0.2);
  border: 1px solid rgba(11,115,115,0.3);
  padding: 4px 10px;
  border-radius: 4px;
  margin: 3px 3px 3px 0;
}

/* ---- INDUSTRIES ---- */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  background: var(--white);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.industry-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.industry-card:hover::before {
  transform: scaleX(1);
}
.industry-card--featured {
  background: var(--dark);
  border-color: var(--teal-dark);
}
.industry-card--featured::before {
  transform: scaleX(1);
}
.industry-card__number {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.industry-card--featured .industry-card__number {
  color: var(--teal-light);
}
.industry-card__title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.industry-card--featured .industry-card__title {
  color: var(--white);
}
.industry-card p {
  font-size: 0.9rem;
  flex-grow: 1;
  margin-bottom: 24px;
}
.industry-card--featured p { color: rgba(255,255,255,0.55); }
.industry-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.industry-card__tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--teal-bg);
  color: var(--teal-dark);
}
.industry-card--featured .industry-card__tag {
  background: rgba(11,115,115,0.2);
  color: var(--teal-light);
}
.industry-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.2s;
}
.industry-card--featured .industry-card__link { color: var(--teal-light); }
.industry-card:hover .industry-card__link { gap: 10px; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--teal);
  padding: 48px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stats-bar__item {
  text-align: center;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stats-bar__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ---- QUALITY ---- */
.quality__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quality__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.quality__step {
  display: flex;
  gap: 24px;
  position: relative;
}
.quality__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: -1px;
  width: 2px;
  background: var(--border);
}
.quality__step-number {
  width: 40px;
  height: 40px;
  background: var(--teal-bg);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--teal);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: var(--white);
}
.quality__step-content {
  padding: 0 0 36px;
}
.quality__step-content h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text);
}
.quality__step-content p { font-size: 0.88rem; }
.quality__right h2 { color: var(--text); }
.quality__certifications {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.quality__cert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--teal-bg);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius);
}
.quality__cert svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
}

/* ---- TRANSPARENCY BANNER ---- */
.transparency {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.transparency__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.transparency__text h2 { color: var(--white); margin-bottom: 16px; }
.transparency__text p { color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.transparency__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.transparency__feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.transparency__check {
  width: 20px;
  height: 20px;
  background: rgba(11,115,115,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.transparency__check svg {
  width: 11px;
  height: 11px;
  color: var(--teal-light);
}
.transparency__feature-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.transparency__screen {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.transparency__screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.transparency__screen-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.transparency__live-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #4ADE80;
}
.transparency__live-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.transparency__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.transparency__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
}
.transparency__row-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  min-width: 80px;
}
.transparency__row-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.transparency__row-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 3px;
}
.transparency__row-value {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-light);
  min-width: 36px;
  text-align: right;
}

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 96px 0;
  text-align: center;
}
.cta-section h2 { color: var(--text); margin-bottom: 16px; }
.cta-section p {
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 36px;
}
.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section__contact {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.cta-section__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.cta-section__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}
.cta-section__contact-item a {
  color: var(--teal);
  font-weight: 500;
  transition: color 0.2s;
}
.cta-section__contact-item a:hover { color: var(--teal-dark); }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 260px;
}
.footer__bvm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: var(--radius);
}
.footer__heading {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--teal-light); }
.footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
.footer__contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ---- MOBILE ---- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .cati__grid { grid-template-columns: 1fr; gap: 40px; }
  .quality__grid { grid-template-columns: 1fr; gap: 48px; }
  .transparency__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .industries__grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .strengths__grid { grid-template-columns: 1fr; }
  .industries__grid { grid-template-columns: 1fr !important; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stats-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
  .stats-bar__item:nth-child(2n) { border-right: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { min-height: auto; padding: 120px 0 64px; }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ---- MOBILE MENU ---- */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
  z-index: 999;
}
.nav__mobile.open { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav__mobile-link:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.nav__mobile-cta {
  margin-top: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius);
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ---- CTA LOGO ---- */
.cta-section__logo {
  height: 44px;
  width: auto;
  margin: 0 auto 28px;
}

/* ---- FOOTER FULL LOGO ---- */
.footer__logo-full {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  mix-blend-mode: screen;
}

/* ---- LANGUAGE SWITCHER ---- */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.nav__lang-sep {
  color: rgba(255,255,255,0.2);
}
.nav__lang-link {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  padding: 2px 4px;
}
.nav__lang-link:hover { color: rgba(255,255,255,0.8); }
.nav__lang-link--active { color: var(--teal-light); }
