/* =====================================================
   AGUIA PROTECCAO E SEGURANCA — Corporate 2015 Style
   ===================================================== */

:root {
  --navy:     #1b2a4a;
  --navy-mid: #243558;
  --navy-lt:  #2e4270;
  --gold:     #b8860b;
  --gold-lt:  #d4a017;
  --white:    #ffffff;
  --off-white:#f5f6f8;
  --gray-lt:  #eaedf2;
  --gray-mid: #c8cdd8;
  --gray:     #8892a4;
  --text:     #2c3546;
  --text-sm:  #5a6478;
  --border:   #dde1e9;
  --red-emrg: #c0392b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Source Sans Pro', 'Segoe UI', Tahoma, Geneva, sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
}
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* UTIL BAR */
.util-bar {
  background: var(--navy);
  border-bottom: 1px solid var(--navy-lt);
  padding: 6px 0;
  font-size: 12px;
  color: var(--gray-mid);
}
.util-bar .container { display: flex; justify-content: space-between; align-items: center; }
.util-bar a { color: var(--gray-mid); }
.util-bar a:hover { color: var(--gold-lt); }
.util-left, .util-right { display: flex; gap: 18px; align-items: center; }

/* HEADER */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  padding: 18px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.site-header .container { display: flex; align-items: center; gap: 24px; }
.logo-wrap { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.logo-wrap img { height: 72px; width: auto; object-fit: contain; }
.logo-text { border-left: 3px solid var(--gold); padding-left: 16px; }
.company-name {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.company-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-top: 3px;
}
.header-right { margin-left: auto; text-align: right; }
.header-phone { font-size: 20px; font-weight: 700; color: var(--navy); }
.header-phone span { color: var(--gold); }
.header-tagline { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 2px; }
.btn-emergency {
  display: inline-block;
  background: var(--red-emrg);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 7px 16px;
  margin-top: 8px;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-emergency:hover { background: #a93226; color: var(--white); }

/* NAV */
.site-nav {
  background: var(--navy-mid);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.site-nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; list-style: none; }
.nav-links li a {
  display: block;
  padding: 16px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.7);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links li a:hover, .nav-links li a.active {
  color: var(--white);
  border-bottom-color: var(--gold-lt);
  text-decoration: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 16px 0;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav { display: none; background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li a {
  display: block; padding: 13px 20px;
  color: rgba(255,255,255,0.75);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--gold-lt); text-decoration: none; }

/* BREADCRUMB */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 12px;
  color: var(--gray);
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .sep { margin: 0 6px; }

/* PAGE HERO */
.page-hero {
  background: var(--navy);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  color: var(--white);
  margin-bottom: 6px;
}
.page-hero p { color: rgba(255,255,255,0.55); font-size: 14px; max-width: 600px; }

/* HOME HERO */
.home-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: var(--navy);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27,42,74,0.90) 0%, rgba(27,42,74,0.35) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero-inner { max-width: 560px; }
.hero-overtitle {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 14px;
}
.hero-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.hero-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-bottom: 26px;
  max-width: 480px;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 13px 28px;
  border-radius: 2px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { background: var(--gold-lt); color: var(--white); text-decoration: none; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 2px solid rgba(255,255,255,0.45);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 11px 26px;
  border-radius: 2px;
  margin-left: 12px;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.8); color: var(--white); text-decoration: none; }
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: background 0.3s; }
.hero-dot.active { background: var(--gold-lt); }

/* STATS */
.stats-bar { background: var(--navy-mid); }
.stats-bar .container { display: flex; }
.stat-item {
  flex: 1;
  text-align: center;
  padding: 22px 16px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-lt);
  display: block;
}
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.45); margin-top: 3px; }

/* LAYOUT */
.layout-wrapper {
  max-width: 1140px;
  margin: 36px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 28px;
  align-items: start;
}
.layout-full { max-width: 1140px; margin: 36px auto; padding: 0 20px; }

/* SECTION BLOCKS */
.section-block {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 22px;
  border-radius: 2px;
}
.section-block-header {
  padding: 15px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-block-header h2, .section-block-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  color: var(--navy);
  font-weight: 700;
}
.accent-bar { width: 3px; height: 20px; background: var(--gold); flex-shrink: 0; }
.section-block-body {
  padding: 22px;
  font-size: 14px;
  color: var(--text-sm);
  line-height: 1.8;
}
.section-block-body p { margin-bottom: 12px; }
.section-block-body p:last-child { margin-bottom: 0; }
.section-block-body strong { color: var(--text); }

/* HIGHLIGHTS */
.highlights-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  padding: 18px 14px;
  text-align: center;
}
.highlight-card:nth-child(2) { border-top-color: var(--gold); }
.highlight-card:nth-child(3) { border-top-color: var(--navy-mid); }
.highlight-card:nth-child(4) { border-top-color: var(--gold-lt); }
.highlight-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 50%;
  margin: 0 auto 11px;
  display: flex; align-items: center; justify-content: center;
}
.highlight-card:nth-child(2) .highlight-icon { background: var(--gold); }
.highlight-card:nth-child(3) .highlight-icon { background: var(--navy-mid); }
.highlight-card:nth-child(4) .highlight-icon { background: var(--navy-lt); }
.highlight-icon svg { width: 19px; height: 19px; stroke: white; stroke-width: 2; fill: none; }
.highlight-card h4 { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--navy); margin-bottom: 5px; }
.highlight-card p { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 22px;
}
.service-card { background: var(--white); padding: 22px 18px; transition: background 0.2s; }
.service-card:hover { background: #fafbfd; }
.service-card img { width: 100%; height: 130px; object-fit: cover; margin-bottom: 14px; border: 1px solid var(--border); }
.service-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.service-card p { font-size: 13px; color: var(--text-sm); line-height: 1.6; }

/* SERVICE DETAIL */
.service-detail {
  border: 1px solid var(--border);
  background: var(--white);
  margin-bottom: 14px;
  border-radius: 2px;
  overflow: hidden;
}
.service-detail-head {
  background: var(--navy);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-detail-head .num {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  width: 25px; height: 25px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-detail-head h3 { font-size: 14.5px; font-weight: 700; color: var(--white); }
.service-detail-body { padding: 18px; display: flex; gap: 18px; }
.service-detail-body img { width: 190px; height: 125px; object-fit: cover; flex-shrink: 0; border: 1px solid var(--border); }
.service-detail-body p { font-size: 13.5px; color: var(--text-sm); line-height: 1.75; }
.includes { margin-top: 9px; font-size: 13px; color: var(--text-sm); }
.includes strong { color: var(--navy); }

/* CTA BAND */
.cta-band {
  background: var(--navy);
  padding: 36px 0;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  margin-bottom: 22px;
}
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-text h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; color: var(--white); margin-bottom: 5px; }
.cta-text p { color: rgba(255,255,255,0.55); font-size: 14px; }

/* SIDEBAR */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 18px;
  border-radius: 2px;
  overflow: hidden;
}
.widget-header {
  background: var(--navy);
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  border-left: 3px solid var(--gold);
}
.widget-body { padding: 14px 16px; font-size: 13px; }
.widget-list { list-style: none; }
.widget-list li { border-bottom: 1px solid var(--gray-lt); padding: 7px 0; }
.widget-list li:last-child { border-bottom: none; }
.widget-list li a { color: var(--text-sm); font-size: 13px; display: flex; align-items: center; gap: 8px; }
.widget-list li a::before {
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.widget-list li a:hover { color: var(--navy); text-decoration: none; }
.widget-list li a.active { color: var(--navy); font-weight: 700; }

.widget-info-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.widget-info-table tr { border-bottom: 1px solid var(--gray-lt); }
.widget-info-table tr:last-child { border-bottom: none; }
.widget-info-table td { padding: 7px 0; color: var(--text-sm); vertical-align: top; }
.widget-info-table td:first-child { color: var(--gray); width: 45%; font-size: 11.5px; }
.widget-info-table td:last-child { font-weight: 600; color: var(--navy); }

.widget-emergency { background: var(--red-emrg); border-color: #a93226; }
.widget-emergency .widget-header { background: rgba(0,0,0,0.25); border-left-color: white; }
.widget-emergency .widget-body { text-align: center; }
.emrg-phone { font-size: 20px; font-weight: 700; color: var(--white); display: block; margin-bottom: 5px; letter-spacing: 0.5px; }
.emrg-note { font-size: 12px; color: rgba(255,255,255,0.7); }

.badge-legal { display: flex; flex-direction: column; gap: 8px; padding: 12px 14px; }
.badge-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  background: var(--off-white);
  border-left: 3px solid var(--navy);
  font-size: 12px;
}
.badge-item .bi-title { font-weight: 700; color: var(--navy); font-size: 11.5px; }
.badge-item .bi-sub { color: var(--gray); font-size: 11px; }
.status-ok {
  display: inline-block;
  background: #27ae60;
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 2px;
  margin-top: 4px;
  align-self: flex-start;
}

/* DATA TABLES */
.data-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.data-table thead tr { background: var(--navy); }
.data-table thead th {
  padding: 12px 16px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}
.data-table tbody tr:nth-child(even) { background: var(--off-white); }
.data-table tbody tr:hover { background: #f0f3f8; }
.data-table tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-sm);
}
.data-table tbody td:first-child { color: var(--navy); font-weight: 600; }
.td-ok { color: #27ae60; font-weight: 700; font-size: 12px; }

/* DOC CARDS */
.doc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  padding: 18px;
  border-radius: 2px;
}
.doc-card:nth-child(even) { border-top-color: var(--gold); }
.doc-card .dc-title { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.dc-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px dotted var(--gray-lt); font-size: 12.5px; }
.dc-row:last-child { border-bottom: none; }
.dc-key { color: var(--gray); }
.dc-val { color: var(--text); font-weight: 600; text-align: right; max-width: 60%; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.team-card { background: var(--white); border: 1px solid var(--border); text-align: center; overflow: hidden; }
.team-card img { width: 100%; height: 130px; object-fit: cover; object-position: top; border-bottom: 3px solid var(--gold); }
.team-card-info { padding: 14px 12px; }
.tc-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.tc-role { font-size: 11.5px; color: var(--gray); margin-top: 3px; }
.tc-quota {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-lt);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  margin-top: 8px;
  border-radius: 2px;
}

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.value-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  padding: 16px;
}
.value-card:nth-child(2n) { border-left-color: var(--gold); }
.value-card h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--navy); margin-bottom: 7px; }
.value-card p { font-size: 12.5px; color: var(--text-sm); line-height: 1.6; }

/* MVV */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); background: var(--white); }
.mvv-item { padding: 22px 20px; border-right: 1px solid var(--border); }
.mvv-item:last-child { border-right: none; }
.mvv-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--gold); margin-bottom: 8px; }
.mvv-item h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 16px; color: var(--navy); margin-bottom: 11px; }
.mvv-item p { font-size: 13px; color: var(--text-sm); line-height: 1.75; }

/* LEGAL CHECKLIST */
.legal-check-list { list-style: none; }
.legal-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text-sm);
}
.legal-check-list li:last-child { border-bottom: none; }
.chk {
  width: 22px; height: 22px;
  background: #27ae60;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.chk svg { width: 12px; height: 12px; stroke: white; stroke-width: 3; fill: none; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-group { margin-bottom: 15px; }
.form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--navy);
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 13px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { height: 128px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892a4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.contact-info-item { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 2px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ci-icon svg { width: 17px; height: 17px; stroke: white; stroke-width: 1.5; fill: none; }
.ci-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 2px; }
.ci-value { font-size: 14px; color: var(--navy); font-weight: 600; }
.ci-sub { font-size: 12px; color: var(--gray); }

/* FOOTER */
.site-footer {
  background: var(--navy);
  border-top: 4px solid var(--gold);
  padding: 48px 0 0;
  margin-top: 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-col h4 {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-lt);
  margin-bottom: 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a::before {
  content: '';
  width: 4px; height: 4px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.footer-col ul li a:hover { color: var(--gold-lt); text-decoration: none; }
.footer-logo img { height: 56px; opacity: 0.8; margin-bottom: 14px; }
.footer-bottom {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; color: rgba(255,255,255,0.3); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .util-bar { display: none; }
  .site-header .container { flex-wrap: wrap; }
  .header-right { width: 100%; text-align: left; margin-top: 12px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .home-hero { height: 340px; }
  .hero-inner h2 { font-size: 26px; }
  .stats-bar .container { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .layout-wrapper { grid-template-columns: 1fr; }
  .sidebar-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .highlights-row { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .mvv-grid { grid-template-columns: 1fr; }
  .mvv-item { border-right: none; border-bottom: 1px solid var(--border); }
  .mvv-item:last-child { border-bottom: none; }
  .doc-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band .container { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 560px) {
  .logo-text .company-name { font-size: 17px; }
  .home-hero { height: 280px; }
  .hero-inner h2 { font-size: 20px; }
  .btn-outline { display: none; }
  .highlights-row { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 5px; text-align: center; }
  .sidebar-col { grid-template-columns: 1fr; }
  .service-detail-body { flex-direction: column; }
  .service-detail-body img { width: 100%; height: 170px; }
  .page-hero h1 { font-size: 22px; }
  .stat-item { flex: 0 0 100%; }
}
