@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ══════════════════════════════════════════════════════════
   BRIDGE INVEST CAPITAL — STYLESHEET
   Sections:
   1.  Reset & Variables
   2.  Base
   3.  Navigation
   4.  Language Dropdown
   5.  Mobile Menu
   6.  Shared Utilities
   7.  Footer
   8.  Home — Hero
   9.  Home — Why Kazakhstan
   10. Home — Approach / Cards
   11. Page Hero  (inner pages)
   12. Services
   13. Team + Modal
   14. Contacts
   15. Responsive
══════════════════════════════════════════════════════════ */


/* ══ 1. RESET & VARIABLES ══════════════════════════════════ */

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

:root {
  /* Backgrounds */
  --bg:           #F3F2EB;
  --bg-dark:      #E1D7C2;
  --nav-bg:       #2A2014;
  --dark:         #1c1409;
  --bg-alt-dark: #53423B;

  /* Gold palette */
  --gold:         #B08D57;
  --gold-accent:  #D0BB9A;
  --gold-btn:     #a07840;
  --gold-hover:   #c49a52;

  /* Text */
  --text-dark:    #53423B;
  --text-mid:     #5a4535;
  --text-light:   #F0EBE0;

  /* Borders */
  --border-light: rgba(45,31,14,0.15);
  --border-nav:   rgba(255,255,255,0.1);

  /* Layout */
  --max-w:  1600px;
  --pad-x:  60px;
}


/* ══ 2. BASE ═══════════════════════════════════════════════ */

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  overflow-x: hidden;
  min-height: 100vh;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══ 3. NAVIGATION ═════════════════════════════════════════ */

nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px 0 12px;
  height: 64px;
  width: calc(100% - 80px);
  max-width: var(--max-w);
  background: var(--nav-bg);
  border-radius: 50px;
  gap: 12px;
}

.nav-logo-wrap {
  display: flex; align-items: center; gap: 6px;
  padding-left: 10px;
  flex-shrink: 0; text-decoration: none;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon img { width: 33px; height: 33px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text span {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.nav-links { display: flex; gap: 4px; list-style: none; flex: 1; justify-content: center; }
.nav-links a {
  font-size: 1rem; font-weight: 400;
  color: var(--text-light); text-decoration: none;
  padding: 8px 14px; border-radius: 50px;
  transition: color .2s; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-accent); }

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

.nav-cta {
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-light); background: var(--gold-btn);
  padding: 10px 22px; border-radius: 50px;
  text-decoration: none; transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-hover); }

.burger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px;
}
.burger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.8); }


/* ══ 4. LANGUAGE DROPDOWN ══════════════════════════════════ */

.lang-dropdown { position: relative; flex-shrink: 0; }

.lang-dropdown-btn {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-nav);
  border-radius: 50px;
  padding: 7px 14px 7px 16px;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.lang-dropdown-btn:hover { background: rgba(255,255,255,0.13); color: #fff; }

.lang-arrow {
  width: 12px; height: 12px; opacity: 0.6;
  transition: transform .2s; flex-shrink: 0;
}
.lang-dropdown.open .lang-arrow { transform: rotate(180deg); }

.lang-dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--nav-bg);
  border: 1px solid var(--border-nav);
  border-radius: 16px; overflow: hidden;
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  z-index: 300;
}
.lang-dropdown.open .lang-dropdown-menu { display: block; }

.lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 11px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.65);
  background: none; border: none; cursor: pointer;
  transition: background .15s, color .15s;
  text-align: left; white-space: nowrap;
}
.lang-option:hover { background: rgba(255,255,255,0.07); color: #fff; }
.lang-option.active { color: var(--gold-accent); }
.lang-option .lang-flag { font-size: 1rem; line-height: 1; flex-shrink: 0; }
.lang-option .lang-name { font-weight: 400; }
.lang-option .lang-code {
  font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-left: auto; opacity: 0.5;
}
.lang-option.active .lang-code { opacity: 1; color: var(--gold-accent); }


/* ══ 5. MOBILE MENU ════════════════════════════════════════ */

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--nav-bg); z-index: 190;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem; font-weight: 500;
  color: rgba(255,255,255,0.8); text-decoration: none; transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold-accent); }
.mob-cta {
  background: var(--gold-btn) !important;
  color: var(--text-light) !important;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
}
.mob-lang {
  display: flex; gap: 6px; flex-wrap: wrap;
  justify-content: center; margin-top: 8px;
}
.mob-lang-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-nav);
  border-radius: 50px; padding: 7px 14px;
  cursor: pointer; transition: color .2s, background .2s;
}
.mob-lang-btn:hover { color: rgba(255,255,255,0.9); }
.mob-lang-btn.active {
  color: var(--dark);
  background: var(--gold-accent);
  border-color: var(--gold-accent);
}


/* ══ 6. SHARED UTILITIES ═══════════════════════════════════ */

.section-label {
  display: inline-flex; align-items: center;
  height: 24px; padding: 0 10px;
  border-radius: 0 15px 0 0;
  background: var(--gold);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 18px;
}

.btn-gold {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-light); background: var(--gold-btn);
  padding: 14px 28px; border-radius: 50px;
  cursor: pointer; border: none; text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); }

.btn-dark {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.9); background: var(--dark);
  padding: 14px 28px; border-radius: 50px;
  cursor: pointer; border: none; text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-dark:hover { background: #2a1e0f; transform: translateY(-2px); }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }


/* ══ 7. FOOTER ═════════════════════════════════════════════ */

footer { background: var(--nav-bg); padding: 70px var(--pad-x) 36px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 50px;
}
.footer-right { display: flex; gap: 60px; }

.footer-logo-wrap {
  display: flex; align-items: flex-start; gap: 6px;
  margin-bottom: 14px; text-decoration: none;
}
.footer-logo-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon img { width: 38px; height: 38px; object-fit: contain; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.5; margin-left: 5px; }
.footer-logo-text span {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.footer-col-label {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-accent); margin-bottom: 18px;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav ul a {
  font-size: 0.79rem; font-weight: 300;
  color: var(--text-light); text-decoration: none; transition: color .2s;
}
.footer-nav ul a:hover { color: var(--gold-accent); }
.footer-contact p { font-size: 0.79rem; font-weight: 300; line-height: 1.9; color: var(--text-light); }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact .addr-label { margin-top: 20px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.7rem; font-weight: 300; color: rgba(255,255,255,0.25); }


/* ══ 8. HOME — HERO ════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--bg);
  padding: 120px var(--pad-x) 80px;
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; width: 100%; }
.hero-content { max-width: 700px; animation: fadeUp .8s ease both; }

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400; line-height: 1.12;
  color: var(--text-dark); margin-bottom: 30px; letter-spacing: -0.01em;
}
.hero h1 .gold { color: var(--gold); }

.hero-desc {
  font-size: 1rem; font-weight: 400; line-height: 1.9;
  color: var(--text-mid); margin-bottom: 42px; max-width: 620px;
}
.hero-desc strong { font-weight: 600; color: var(--text-dark); }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }


/* ══ 9. HOME — WHY KAZAKHSTAN ══════════════════════════════ */

.why-section { padding: 100px var(--pad-x); background: var(--bg-dark); }
.why-inner { max-width: var(--max-w); margin: 0 auto; }
.why-grids { display: flex; gap: 10%; }

.why-h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.6rem); font-weight: 500;
  line-height: 1.35; color: var(--text-dark); max-width: 1000px; margin-bottom: 28px;
}
.why-text { font-size: 1rem; font-weight: 400; line-height: 1.95; color: var(--text-mid); }


/* ══ 10. HOME — APPROACH / CARDS ═══════════════════════════ */

.approach-section {
  padding: 100px var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}
.approach-inner { max-width: var(--max-w); margin: 0 auto; }
.approach-header { text-align: left; margin-bottom: 60px; }
.approach-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.6rem); font-weight: 500;
  color: var(--text-dark); margin-top: 12px;
}

.cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

.service-card {
  background: var(--nav-bg); border-radius: 16px;
  padding: 36px 26px 32px;
  transition: transform .3s, background .3s;
  text-decoration: none; display: block; cursor: pointer;
}
.service-card:hover { transform: translateY(-5px); background: #261a0c; }

.card-num {
  font-size: 2.2rem; font-weight: 300;
  color: var(--text-light); margin-bottom: 16px; line-height: 1;
}
.service-card h4 {
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--gold-accent); margin-bottom: 14px;
}
.service-card p { font-size: 0.8rem; font-weight: 300; line-height: 1.8; color: var(--text-light); }


/* ══ 11. PAGE HERO (inner pages) ═══════════════════════════ */

.page-hero { padding: 150px var(--pad-x) 72px; background: var(--bg); }
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500;
  color: var(--text-dark); margin-bottom: 18px;
  animation: fadeUp .8s ease both; letter-spacing: -0.01em;
}
.page-hero h1 .gold { color: var(--gold); }  /* FIX: was "h1 gold" (missing dot) */

/* Services subtitle */
.page-hero .subtitle {
  font-size: 2rem; font-weight: 600; line-height: 1.75;  /* FIX: was 2rem / 600 */
  color: var(--text-mid); max-width: 1600px;
  animation: fadeUp .8s .1s ease both;
}

/* Contacts subtitle */
.page-hero .contacts-subtitle {
  font-size: 1rem; font-weight: 400; line-height: 1.8;
  color: var(--text-mid); max-width: 580px;
  animation: fadeUp .8s .1s ease both;
}


/* ══ 12. SERVICES ══════════════════════════════════════════ */

.services-body { padding: 60px var(--pad-x) 100px; background: var(--bg-alt-dark); }  /* FIX: was var(--text-dark) */
.services-inner { max-width: var(--max-w); margin: 0 auto; }

.step {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 0 40px; padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
  /* FIX: removed step:hover transform (caused layout jump) */
}
.step:last-child { border-bottom: none; }

.step-num {
  font-size: 5.5rem; font-weight: 300;
  color: var(--gold-accent); line-height: 1; padding-top: 6px; flex-shrink: 0;
}

.step-content { padding-left: 20px; }  /* FIX: removed hardcoded margin-left: 50px */

.step-content h3 {
  font-size: clamp(1.3rem, 2vw, 2.5rem); font-weight: 500;
  color: var(--gold-accent); margin-bottom: 12px; margin-top: 4px;
}
.step-sub {
  font-size: 1.1rem; font-weight: 400; line-height: 1.75;
  color: var(--text-light); margin-bottom: 28px; max-width: 800px;
}
.step-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.step-list li {
  font-size: 0.9rem; font-weight: 400; line-height: 1.6;
  color: rgba(240,235,224,0.8); padding-left: 28px; position: relative;
}
.step-list li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 10px; height: 1.5px; background: var(--gold-accent);
}


/* ══ 13. TEAM + MODAL ══════════════════════════════════════ */

.team-body { padding: 60px var(--pad-x) 100px; background: var(--bg); }
.team-inner { max-width: var(--max-w); margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.team-card {
  background: var(--nav-bg); border-radius: 16px; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.team-photo {
  width: 100%; aspect-ratio: 4 / 5;
  /* /* display: flex; align-items: center; justify-content: center; */
  background: linear-gradient(160deg, #b8b0a4 0%, #7a7268 100%);
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block;}
.avatar-initials { font-size: 2.8rem; font-weight: 300; color: var(--gold); opacity: .6; letter-spacing: .05em; }

.team-info { padding: 22px 20px 24px; }
.team-info h3 { font-size: 1rem; font-weight: 600; color: var(--gold-accent); margin-bottom: 8px; }
.team-divider { width: 24px; height: 1px; background: var(--text-light); margin: 10px 0; opacity: .4; }
.team-info .role {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-light);
}

.team-hint {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.65rem; font-weight: 400;
  color: rgba(240,235,224,0.3); margin-top: 10px; letter-spacing: 0.05em;
}
.team-hint svg {
  width: 11px; height: 11px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}

/* ── Modal overlay ── */
.team-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,13,6,0.78);
  backdrop-filter: blur(6px);
  z-index: 500;
  padding: 20px;
  overflow-y: auto;
}
.team-modal-overlay.open {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* ── Modal box ── */
.team-modal {
  background: var(--nav-bg);
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  animation: modalIn .3s ease both;
  position: relative;
  margin: 40px 0;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

.team-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-nav);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10;
}
.team-modal-close:hover {
  background: rgba(255,255,255,0.16);
}
.team-modal-close svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.7);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.team-modal-top {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.team-modal-photo {
  width: 260px;
  aspect-ratio: 4 / 5;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(160deg, #b8b0a4 0%, #7a7268 100%);
}

.team-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.team-modal-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-modal-avatar span {
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: .5;
}

.team-modal-header {
  flex: 1;
  padding: 36px 56px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.team-modal-role {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 10px;
}

.team-modal-name {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.2;
}

.team-modal-body {
  padding: 32px 36px 36px;
}

.team-modal-body p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 16px;
}
.team-modal-body p:last-child {
  margin-bottom: 0;
}


/* ══ 14. CONTACTS ══════════════════════════════════════════ */

.contacts-body { padding: 60px var(--pad-x) 100px; background: var(--bg); }
.contacts-inner { max-width: var(--max-w); margin: 0 auto; }

.contacts-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; align-items: start;
}
.contacts-left { display: flex; flex-direction: column; gap: 16px; }

.contact-row {
  display: flex; align-items: center; gap: 24px;
  background: var(--nav-bg); border-radius: 16px;
  padding: 28px 32px; transition: transform .25s;
}
.contact-row:hover { transform: translateY(-3px); }

.contact-row-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(176,141,87,0.12); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-row-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold-accent); fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}

.contact-row-body { display: flex; flex-direction: column; gap: 4px; }
.contact-row-label {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold-accent);
}
.contact-row-value {
  font-size: 0.97rem; font-weight: 400;
  line-height: 1.55; color: var(--text-light);
}
.contact-row-value a { color: var(--text-light); text-decoration: none; transition: color .2s; }
.contact-row-value a:hover { color: var(--gold-accent); }
.contact-row-value .line2 {
  font-size: 0.82rem; color: rgba(240,235,224,0.5);
  display: block; margin-top: 2px;
}

.linkedin-card {
  background: var(--nav-bg); border-radius: 16px;
  padding: 48px 40px; height: 100%;
  display: flex; flex-direction: column;
  justify-content: space-between; gap: 32px;
  transition: transform .25s;
}
.linkedin-card:hover { transform: translateY(-3px); }

.linkedin-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(10,102,194,0.18); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.linkedin-icon-wrap svg { width: 26px; height: 26px; fill: #5ba4cf; }
.linkedin-title {
  font-size: 1.5rem; font-weight: 500;
  color: var(--text-light); line-height: 1.3; margin-bottom: 12px;
}
.linkedin-desc {
  font-size: 0.85rem; font-weight: 300;
  line-height: 1.75; color: rgba(240,235,224,0.55);
}
.linkedin-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #0a66c2; color: #fff; text-decoration: none;
  font-size: 0.8rem; font-weight: 600; letter-spacing: .06em;
  padding: 14px 26px; border-radius: 50px;
  transition: background .2s, transform .15s; align-self: flex-start;
}
.linkedin-btn:hover { background: #0d79e0; transform: translateY(-2px); }
.linkedin-btn svg { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }


/* ══ 15. RESPONSIVE ════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .cards-grid      { grid-template-columns: 1fr 1fr; }
  .team-grid       { grid-template-columns: 1fr 1fr; }
  .why-grids       { flex-direction: column; gap: 40px; }
  .contacts-layout { grid-template-columns: 1fr; }
  .linkedin-card   { height: auto; }
  .team-modal-photo { width: 180px; min-height: 180px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --pad-x: 20px; }

  nav { width: calc(100% - 32px); top: 12px; padding: 0 14px; }
  .nav-links, .nav-cta, .lang-dropdown { display: none; }
  .burger { display: flex; }

  .hero { padding: 110px 20px 60px; }

  .step { grid-template-columns: 72px 1fr; gap: 0 20px; }
  .step-content { padding-left: 0; }
  .step-num { font-size: 3.5rem; }
  .step-sub { font-size: 1rem; }

  .team-photo { aspect-ratio: 4 / 5;}
  .team-photo img {object-position: center 18%;}
  .team-modal-overlay { padding: 12px; }
  .team-modal { margin: 12px 0 24px; border-radius: 20px; }
  .team-modal-photo { aspect-ratio: 4 / 5; }
  .team-modal-photo img { object-position: center 12%; }
  .team-modal-header { padding: 22px 22px 18px; }
  .team-modal-name { font-size: 1.4rem; }
  .team-modal-body { padding: 22px; }
  .team-modal-body p { font-size: 0.9rem; line-height: 1.8; }

  .footer-top   { flex-direction: column; gap: 36px; }
  .footer-right { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  .contact-row  { padding: 20px 18px; }
  .linkedin-card { padding: 32px 24px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .team-grid  { grid-template-columns: 1fr; }
  .hero-btns  { flex-direction: column; align-items: flex-start; }
  .step { grid-template-columns: 56px 1fr; gap: 0 14px; }
  .step-num { font-size: 2.8rem; }
}
