/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1F3A5F;
  --navy-dark: #152c4a;
  --navy-light: #2a4d7a;
  --steel: #5A6A7A;
  --orange: #F39C12;
  --orange-dark: #d4870a;
  --white: #FFFFFF;
  --gray-text: #333333;
  --gray-light: #f4f6f9;
  --gray-mid: #e8ecf1;
  --border: #d0d8e4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--gray-text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}

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

nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 13px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

nav a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
nav a.active { color: var(--orange); }

.btn-nav {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  margin-left: 6px;
}
.btn-nav:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== PAGES ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(243,156,18,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover { background: var(--navy); color: var(--white); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 20px 80px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(243,156,18,0.12) 0%, transparent 60%),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: rgba(243,156,18,0.2);
  border: 1px solid rgba(243,156,18,0.5);
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero h1 span { color: var(--orange); }

.hero p {
  font-size: clamp(15px, 2.5vw, 18px);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ===== SECTIONS ===== */
section { padding: 72px 20px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--steel);
  max-width: 540px;
  margin-bottom: 48px;
}

.centered { text-align: center; }
.centered .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== SERVICE CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(31,58,95,0.12); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
}

.card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card p { color: var(--steel); font-size: 15px; line-height: 1.6; }

/* ===== WHY US ===== */
.why-section { background: var(--navy); color: var(--white); }
.why-section h2 { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 44px;
}

.why-item { display: flex; align-items: flex-start; gap: 14px; }
.why-icon {
  width: 46px;
  height: 46px;
  background: rgba(243,156,18,0.15);
  border: 1px solid rgba(243,156,18,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 5px;
}
.why-item p { color: rgba(255,255,255,0.65); font-size: 14px; }

/* ===== PAGE HERO BANNERS ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 56px 20px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,0.75); font-size: 16px; }

/* ===== SERVICES PAGE ===== */
.service-block { margin-bottom: 56px; }
.service-block h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-mid);
}
.block-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.service-item {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid var(--orange);
  transition: background 0.2s, transform 0.2s;
}
.service-item:hover { background: var(--gray-mid); transform: translateX(3px); }
.service-item span.text { font-weight: 600; color: var(--navy); font-size: 14px; }
.check { color: var(--orange); font-size: 17px; flex-shrink: 0; }

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-text h2 { margin-bottom: 18px; }
.about-text p { color: var(--steel); margin-bottom: 14px; font-size: 15px; line-height: 1.7; }

.timeline { position: relative; padding-left: 26px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-mid);
}
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -23px;
  top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.timeline-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-item p { color: var(--steel); font-size: 14px; }

.about-values { background: var(--gray-light); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 26px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(31,58,95,0.1); }
.value-icon { font-size: 32px; margin-bottom: 12px; }
.value-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.value-card p { color: var(--steel); font-size: 13px; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  padding: 16px;
  background: var(--gray-light);
  border-radius: 10px;
  border-left: 4px solid var(--orange);
}
.contact-detail-icon {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 3px;
}
.contact-detail-value { font-size: 15px; font-weight: 600; color: var(--navy); }
.contact-detail-value a { color: var(--navy); text-decoration: none; }
.contact-detail-value a:hover { color: var(--orange); }

.map-container {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.map-container iframe { width: 100%; height: 280px; border: none; display: block; }

/* FORM */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(31,58,95,0.07);
}
.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--gray-text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(31,58,95,0.08);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  padding: 14px 18px;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 14px;
  font-size: 14px;
}

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(31,58,95,0.08); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--white);
  gap: 14px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.faq-question span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.faq-toggle {
  width: 28px; height: 28px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 300;
  color: var(--navy);
  transition: background 0.2s, transform 0.3s;
}
.faq-item.open .faq-toggle { background: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 16px 22px 20px;
  color: var(--steel);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid var(--gray-mid);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 60px 20px;
  text-align: center;
}
.cta-banner h2 { color: var(--white); font-size: clamp(24px, 4vw, 38px); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 28px; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 20px 28px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 42px; width: auto; }
.footer-desc { font-size: 13px; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 10px; font-size: 13px; }
.footer-contact-icon { color: var(--orange); flex-shrink: 0; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeInUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Header & Nav */
  .hamburger { display: flex; }
  nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0; right: 0; bottom: 0;
    background: var(--navy-dark);
    padding: 20px 20px 32px;
    gap: 4px;
    border-top: 3px solid var(--orange);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  nav.open { display: flex; }
  nav a { padding: 14px 18px; border-radius: 6px; font-size: 17px; }
  .btn-nav { margin-left: 0; text-align: center; margin-top: 8px; }

  /* Sections */
  section { padding: 52px 16px; }
  .hero { padding: 60px 16px 52px; }
  .page-hero { padding: 44px 16px; }

  /* Hero stats */
  .hero-stats { gap: 24px; margin-top: 44px; padding-top: 28px; }
  .stat-number { font-size: 32px; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }
  .card { padding: 24px 20px; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Service list */
  .service-list { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form { padding: 24px 18px; border-radius: 12px; }
  .form-row { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-question { padding: 16px 18px; }
  .faq-answer-inner { padding: 14px 18px 18px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-desc { max-width: 100%; }

  /* Buttons */
  .btn { padding: 13px 24px; font-size: 15px; }
  .hero-buttons { gap: 10px; }
  .hero-buttons .btn { flex: 1; min-width: 140px; text-align: center; }

  /* CTA banner */
  .cta-banner { padding: 48px 16px; }

  /* Map */
  .map-container iframe { height: 240px; }
}

@media (max-width: 400px) {
  .values-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .hero-stats { flex-direction: column; gap: 16px; }
}

/* ===== TEAM PAGE ===== */
.team-section { background: var(--gray-light); }
.team-section .container { max-width: 1100px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(31,58,95,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(31,58,95,0.16);
}

.team-photo-wrap {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--orange);
  margin-bottom: 18px;
  flex-shrink: 0;
  background: #e8edf3;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0;
  line-height: 1.2;
}

.team-role {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.45;
  font-weight: 500;
}

.team-phone {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  padding: 6px 14px;
  border: 2px solid var(--orange);
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
.team-phone:hover {
  background: var(--orange);
  color: #fff;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .team-photo-wrap { width: 100px; height: 100px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .team-card { padding: 20px 10px 18px; }
  .team-photo-wrap { width: 80px; height: 80px; }
  .team-name { font-size: 16px; }
  .team-role { font-size: 12px; }
}
