/* ════════════════════════════════════════════════
   SECUREAXIS — styles.css
   Light Mode · Mobile First · CSS Grid + Flexbox
════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --blue:          #1a6fc4;
  --blue-mid:      #1557a0;
  --blue-dark:     #0d3b6e;
  --blue-navy:     #0d2137;
  --blue-light:    #e8f1fb;
  --blue-xlight:   #f0f6ff;
  --cyan:          #2ca9e1;
  --white:         #ffffff;
  --off-white:     #f8fafd;
  --gray-50:       #f4f6f9;
  --gray-100:      #eaecf0;
  --gray-200:      #d0d4dc;
  --gray-400:      #8a94a8;
  --gray-600:      #4a5568;
  --gray-900:      #1a202c;
  --text:          #1a202c;
  --text-muted:    #5a6b82;
  --text-light:    #8a94a8;

  --font-display:  'Manrope', system-ui, sans-serif;
  --font-body:     'Manrope', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow:      0 4px 16px rgba(0,0,0,0.09);
  --shadow-md:   0 8px 28px rgba(0,0,0,0.11);
  --shadow-blue: 0 4px 20px rgba(26,111,196,0.3);

  --nav-h:      74px;
  --topbar-h:   38px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --container:  1180px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.2; color: var(--gray-900); }

/* ── Container ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  padding: 11px 24px; border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap; cursor: pointer;
}
.btn--primary { background: var(--blue); color: var(--white); border: 2px solid var(--blue); }
.btn--primary:hover { background: var(--blue-mid); border-color: var(--blue-mid); transform: translateY(-1px); box-shadow: var(--shadow-blue); }
.btn--outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn--outline:hover { background: var(--blue-xlight); transform: translateY(-1px); }
.btn--white { background: var(--white); color: var(--blue-dark); border: 2px solid var(--white); }
.btn--white:hover { background: var(--blue-xlight); border-color: var(--blue-xlight); }
.btn--outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--sm { padding: 8px 18px; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* ════════════════════════════════════════════════
   SHARED SECTION STYLES
════════════════════════════════════════════════ */
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.section-tag--small { font-size: 11px; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.section-sub { font-size: 0.97rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }
.section-header { margin-bottom: 44px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }
.section-divider {
  width: 48px; height: 3px; background: var(--blue);
  margin: 14px auto 16px; border-radius: 2px;
}

/* ════════════════════════════════════════════════
   TOP BAR
════════════════════════════════════════════════ */
.topbar {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
  height: var(--topbar-h);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.topbar__social { display: flex; gap: 14px; }
.topbar__social a {
  color: var(--gray-400); transition: color var(--transition);
  display: flex; align-items: center;
}
.topbar__social a:hover { color: var(--blue); }
.topbar__contact {
  display: flex; gap: 24px; align-items: center;
  font-size: 0.8rem; color: var(--text-muted);
}
.topbar__contact span {
  display: flex; align-items: center; gap: 5px;
}

/* ════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 800;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  height: var(--nav-h);
}
.header.scrolled { box-shadow: var(--shadow); }

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 16px;
}

.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 800; color: var(--gray-900); flex-shrink: 0;
}
.nav__logo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav__logo:hover { color: var(--blue); }
.nav__logo--white { color: rgba(255,255,255,0.9); }
.nav__logo--white:hover { color: var(--white); }

.nav__menu { flex: 1; }
.nav__list {
  display: flex; align-items: center; gap: 2px;
  justify-content: center;
}

.nav__link {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.9rem; font-weight: 600; color: var(--gray-600);
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap;
}
.nav__link:hover, .nav__link--active { color: var(--blue); }
.nav__link--active { background: var(--blue-xlight); }

/* Dropdown */
.nav__item--dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  min-width: 260px;
  padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 900;
}
.nav__item--dropdown:hover .dropdown,
.nav__item--dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown__item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius);
  transition: background var(--transition);
}
.dropdown__item:hover { background: var(--blue-xlight); }
.dropdown__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.dropdown__item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--gray-900); }
.dropdown__item span { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 1px; }

.nav__cta { flex-shrink: 0; }

/* Burger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--radius-sm);
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-900); border-radius: 2px;
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  background: var(--gray-50);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--nav-h) - var(--topbar-h));
  display: flex; align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  width: 100%; padding-bottom: 60px;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue-light); padding: 5px 14px;
  border-radius: 50px; margin-bottom: 20px;
}
.hero__headline {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800; color: var(--gray-900);
  line-height: 1.1; margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero__headline--light { font-weight: 400; color: var(--gray-600); }
.hero__sub {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.75; max-width: 480px; margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__image { position: relative; }
.hero__img-wrap { position: relative; }
.hero__img-wrap img {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; height: 480px;
  display: block;
}
.hero__badge {
  position: absolute; bottom: 20px; left: 12px;
  background: var(--white); border-radius: var(--radius);
  padding: 10px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  max-width: 210px;
}
.hero__badge-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__badge strong { display: block; font-size: 0.88rem; font-weight: 800; color: var(--gray-900); }
.hero__badge span { font-size: 0.72rem; color: var(--text-muted); }

.hero__slider-arrow {
  position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); background: var(--white);
  box-shadow: var(--shadow-sm);
}

/* ════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════ */
.about { padding: 100px 0; background: var(--white); }
.about__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about__images { position: relative; height: 440px; }
.about__img-back {
  position: absolute; top: 0; left: 0;
  width: 65%; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
.about__img-back img { width: 100%; height: 340px; object-fit: cover; }
.about__img-front {
  position: absolute; bottom: 0; right: 0;
  width: 62%; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.about__img-front img { width: 100%; height: 280px; object-fit: cover; }

.about__tag {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); border-bottom: 2px solid var(--blue);
  display: inline-block; padding-bottom: 4px; margin-bottom: 16px;
}
.about__title { font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.about__body { font-size: 0.97rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.about__checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.about__checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--blue);
}
.about__checklist li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--blue); }

/* ════════════════════════════════════════════════
   SOLUTIONS
════════════════════════════════════════════════ */
.solutions { padding: 100px 0; background: var(--gray-50); }
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sol-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.sol-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}
.sol-card__icon {
  width: 52px; height: 52px;
  color: var(--blue-dark);
  margin-bottom: 18px;
}
.sol-card__icon svg { width: 100%; height: 100%; }
.sol-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.sol-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.sol-card__link { font-size: 0.85rem; font-weight: 700; color: var(--blue); transition: gap var(--transition); }
.sol-card__link:hover { color: var(--blue-mid); }

/* ════════════════════════════════════════════════
   DEPARTMENTS
════════════════════════════════════════════════ */
.departments { padding: 100px 0; background: var(--blue-xlight); }
.dept__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dept-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.dept-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dept-card__img { overflow: hidden; aspect-ratio: 4/3; }
.dept-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dept-card:hover .dept-card__img img { transform: scale(1.04); }
.dept-card__body { padding: 20px 22px 24px; }
.dept-card__body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.dept-card__body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.dept-card__link { font-size: 0.85rem; font-weight: 700; color: var(--blue); }
.dept-card__link:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════
   TABBED SECTION
════════════════════════════════════════════════ */
.tabs-section { padding: 0 0 100px; background: var(--white); }
.tabs-section__nav {
  display: flex;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 60px;
  background: var(--gray-50);
}
.tab-btn {
  flex: 1; padding: 18px 16px;
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  text-align: center;
  transition: var(--transition);
}
.tab-btn:hover { color: var(--blue); }
.tab-btn--active {
  color: var(--blue); background: var(--white);
  border-bottom-color: var(--blue);
}

.tab-panel { display: none; }
.tab-panel--active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.tab-panel__icon-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.tab-panel__text h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 14px; }
.tab-panel__text p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.tab-panel__list {
  display: flex; flex-direction: column; gap: 8px;
}
.tab-panel__list li {
  font-size: 0.9rem; color: var(--text-muted);
  padding-left: 18px; position: relative;
}
.tab-panel__list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue);
}
.tab-panel__image img {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; height: 360px;
  box-shadow: var(--shadow-md);
}

/* ════════════════════════════════════════════════
   VALUES
════════════════════════════════════════════════ */
.values { padding: 100px 0; background: var(--white); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 40px;
}
.value-item { display: flex; flex-direction: column; gap: 10px; }
.value-item__icon { color: var(--blue-dark); margin-bottom: 4px; }
.value-item h4 { font-size: 1rem; font-weight: 700; }
.value-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════════════
   TRAINING
════════════════════════════════════════════════ */
.training { padding: 100px 0; background: var(--gray-50); }
.training__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.training-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.training-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.training-card__img { aspect-ratio: 16/9; overflow: hidden; }
.training-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.training-card:hover .training-card__img img { transform: scale(1.04); }
.training-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.training-card__tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-light);
  padding: 3px 10px; border-radius: 50px;
  display: inline-block; margin-bottom: 4px;
}
.training-card__body h3 { font-size: 1.05rem; font-weight: 700; }
.training-card__body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; flex: 1; }

/* ════════════════════════════════════════════════
   STEPS
════════════════════════════════════════════════ */
.steps { padding: 100px 0; background: var(--blue-xlight); }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-card__circle {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-card__circle--dark { background: var(--blue-dark); }
.step-card__circle--light { background: var(--cyan); }
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════ */
.cta-band {
  background: var(--blue-dark);
  padding: 72px 0;
}
.cta-band__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--white); }
.cta-band p { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin-top: 6px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */
.contact { padding: 100px 0; background: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.contact__info h2 { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.contact__info > p { font-size: 0.97rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.contact__detail {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px;
}

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-size: 0.8rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.form__field input,
.form__field select,
.form__field textarea {
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); color: var(--text);
  padding: 11px 14px; font-size: 0.95rem;
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none; appearance: none;
}
.form__field select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a94a8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
.form__field select option { background: var(--white); }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.12);
  background: var(--white);
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: var(--gray-400); }
.form__field textarea { resize: vertical; min-height: 110px; }
.form__success {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; background: #f0fdf4;
  border: 1px solid #86efac; border-radius: var(--radius);
  color: #166534; font-size: 0.9rem; font-weight: 600;
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer { background: var(--blue-navy); }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding: 64px 0 40px;
}
.footer__brand p {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  margin-top: 14px; line-height: 1.7; max-width: 280px;
}
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.footer__social a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.footer__col h4 {
  font-size: 0.9rem; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer__col a:hover { color: var(--white); }
.footer__contact-list li { font-size: 0.88rem; color: rgba(255,255,255,0.55); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* ════════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════
   RESPONSIVE — TABLET (≥ 640px)
════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .topbar__contact { display: flex; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — DESKTOP (≥ 960px)
════════════════════════════════════════════════ */
@media (min-width: 960px) {
  .nav__burger { display: none; }
  .nav__menu { display: block !important; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — MOBILE (< 960px)
════════════════════════════════════════════════ */
@media (max-width: 959px) {
  .topbar { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }

  .nav__menu {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 12px 20px 20px;
    box-shadow: var(--shadow-md);
    z-index: 799;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav__menu.open { display: block; }
  .nav__list { flex-direction: column; gap: 2px; align-items: stretch; }
  .nav__link { font-size: 1rem; padding: 13px 14px; }
  .nav__item--dropdown .dropdown {
    position: static; transform: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: none;
    background: var(--gray-50); border-radius: var(--radius);
    margin-top: 4px; padding: 6px;
    display: none;
  }
  .nav__item--dropdown.open .dropdown { display: block; }

  /* Hero — stack text above, image below, both fully visible */
  .hero {
    min-height: auto;
    padding: 40px 0 0;
    align-items: flex-start;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 0;
    align-items: stretch;
  }
  .hero__text { padding-bottom: 4px; }
  .hero__sub { max-width: 100%; }
  .hero__headline { font-size: clamp(1.9rem, 7vw, 2.6rem); }

  /* Image always shown — fixed height, no overflow */
  .hero__image { display: block; overflow: hidden; }
  .hero__img-wrap img {
    height: 260px;
    border-radius: var(--radius) var(--radius) 0 0;
    object-fit: cover;
    object-position: top center;
  }
  .hero__badge {
    bottom: 12px; left: 12px;
    padding: 8px 12px; gap: 8px; max-width: 180px;
  }
  .hero__badge-icon { width: 32px; height: 32px; }
  .hero__badge strong { font-size: 0.78rem; }
  .hero__badge span { font-size: 0.68rem; }

  .about__inner { grid-template-columns: 1fr; }
  .about__images { height: 260px; }

  .solutions__grid,
  .dept__grid,
  .values__grid,
  .training__grid { grid-template-columns: 1fr; }

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

  .tab-panel--active { grid-template-columns: 1fr; }
  .tab-panel__image { display: none; }

  .contact__inner { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }

  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { justify-content: center; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
}

@media (max-width: 639px) {
  .steps__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; padding-top: 40px; }
  .tabs-section__nav { flex-direction: column; }
}

/* Tablet 2-col for grids */
@media (min-width: 640px) and (max-width: 959px) {
  .solutions__grid,
  .dept__grid,
  .training__grid { grid-template-columns: 1fr 1fr; }
  .values__grid { grid-template-columns: 1fr 1fr; }
}
