@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --teal: #008080;
  --teal-dark: #006666;
  --teal-light: #e0f2f2;
  --gold: #DAA520;
  --gold-light: #f5e6b0;
  --grey: #696969;
  --grey-light: #f5f5f5;
  --forest: #228B22;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-body: #333333;
  --border: #dde4e4;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-body);
  background-color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }

p {
  margin-bottom: 1.2rem;
  line-height: 1.75;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

ul li, ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ======= NAVBAR ======= */
.navbar-mirox {
  background-color: var(--white);
  border-bottom: 2px solid var(--teal-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,128,128,0.08);
}

.navbar-mirox .navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.5px;
}

.navbar-mirox .navbar-brand span {
  color: var(--gold);
}

.navbar-mirox .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.9rem;
  transition: color 0.2s ease;
}

.navbar-mirox .nav-link:hover,
.navbar-mirox .nav-link.active {
  color: var(--teal);
  text-decoration: none;
}

.navbar-mirox .navbar-toggler {
  border-color: var(--teal);
}

.navbar-mirox .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23008080' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ======= HERO ======= */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,64,64,0.78) 40%, rgba(0,128,128,0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 660px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-badge {
  display: inline-block;
  background-color: var(--gold);
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero-disclaimer {
  display: inline-block;
  background-color: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  margin-top: 1.5rem;
  border-left: 3px solid var(--gold);
}

/* ======= BUTTONS ======= */
.btn-teal {
  background-color: var(--teal);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.65rem 1.8rem;
  border-radius: 4px;
  border: 2px solid var(--teal);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  display: inline-block;
}

.btn-teal:hover {
  background-color: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-outline-teal {
  background-color: transparent;
  color: var(--teal);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.65rem 1.8rem;
  border-radius: 4px;
  border: 2px solid var(--teal);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  display: inline-block;
}

.btn-outline-teal:hover {
  background-color: var(--teal);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.65rem 1.8rem;
  border-radius: 4px;
  border: 2px solid var(--gold);
  transition: background-color 0.2s ease, transform 0.15s ease;
  display: inline-block;
}

.btn-gold:hover {
  background-color: #c4911a;
  border-color: #c4911a;
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

/* ======= SECTION SPACING ======= */
.section-padded {
  padding: 80px 0;
}

.section-padded-sm {
  padding: 56px 0;
}

/* ======= SECTION LABELS ======= */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.75;
}

/* ======= TWO-COLUMN LAYOUT ======= */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col-section.reverse {
  direction: rtl;
}

.two-col-section.reverse > * {
  direction: ltr;
}

.two-col-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.two-col-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ======= CARDS ======= */
.card-mirox {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.card-mirox:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,128,128,0.12);
}

.card-mirox .card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-mirox .card-body-custom {
  padding: 1.4rem 1.5rem 1.6rem;
}

.card-mirox .card-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.5rem;
  display: block;
}

.card-mirox h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.card-mirox p {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 1rem;
  line-height: 1.65;
}

/* ======= ICON CARDS ======= */
.icon-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,128,128,0.1);
}

.icon-card .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.icon-card .icon-circle svg {
  width: 28px;
  height: 28px;
  fill: var(--teal);
}

.icon-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.icon-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ======= BACKGROUND VARIATIONS ======= */
.bg-teal-light {
  background-color: var(--teal-light);
}

.bg-grey-light {
  background-color: var(--grey-light);
}

.bg-teal {
  background-color: var(--teal);
  color: var(--white);
}

.bg-teal h2,
.bg-teal h3,
.bg-teal p,
.bg-teal .section-label {
  color: var(--white);
}

.bg-teal .section-label {
  color: var(--gold-light);
}

.bg-dark-teal {
  background-color: #004d4d;
  color: var(--white);
}

.bg-dark-teal h2,
.bg-dark-teal h3,
.bg-dark-teal p,
.bg-dark-teal .section-label {
  color: var(--white);
}

/* ======= STAT PANEL ======= */
.stat-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: 10px;
  overflow: hidden;
}

.stat-item {
  background-color: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-item .stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.4;
}

/* ======= FULL-WIDTH BANNER ======= */
.banner-section {
  position: relative;
  overflow: hidden;
}

.banner-section .banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner-section .banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,77,77,0.75);
  z-index: 1;
}

.banner-section .banner-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  color: var(--white);
}

.banner-section .banner-content h2 {
  color: var(--white);
}

.banner-section .banner-content p {
  color: rgba(255,255,255,0.9);
}

/* ======= FACT BOX ======= */
.fact-box {
  background-color: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

.fact-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.65;
}

/* ======= DISCLAIMER BOX ======= */
.disclaimer-box {
  background-color: #fff8e1;
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
}

.disclaimer-box p {
  margin: 0;
  font-size: 0.88rem;
  color: #5c4a00;
  line-height: 1.65;
}

.disclaimer-box strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.3rem;
  color: #7a6200;
}

/* ======= FAQ ======= */
.faq-accordion .card {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.faq-accordion .card-header {
  background-color: var(--white);
  padding: 0;
  border-bottom: none;
}

.faq-accordion .faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 1.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-accordion .faq-btn:hover {
  color: var(--teal);
}

.faq-accordion .faq-btn .faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  fill: var(--teal);
}

.faq-accordion .faq-btn.collapsed .faq-icon {
  transform: rotate(0deg);
}

.faq-accordion .faq-btn:not(.collapsed) .faq-icon {
  transform: rotate(180deg);
}

.faq-accordion .card-body {
  padding: 0 1.4rem 1.2rem;
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.75;
}

/* ======= TABLE ======= */
.table-mirox {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 0.92rem;
}

.table-mirox thead {
  background-color: var(--teal);
  color: var(--white);
}

.table-mirox thead th {
  padding: 0.9rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.table-mirox tbody tr:nth-child(even) {
  background-color: var(--teal-light);
}

.table-mirox tbody td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}

/* ======= TIMELINE ======= */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--teal-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.65rem;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--teal);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}

.timeline-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 0;
  line-height: 1.65;
}

/* ======= CONTACT FORM ======= */
.contact-form .form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.contact-form .form-control {
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--text-body);
  padding: 0.7rem 1rem;
  transition: border-color 0.2s ease;
}

.contact-form .form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,128,128,0.12);
  outline: none;
}

/* ======= FOOTER ======= */
.footer-mirox {
  background-color: #0d2626;
  color: rgba(255,255,255,0.75);
  padding-top: 60px;
}

.footer-mirox h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-mirox p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.65);
}

.footer-mirox a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  display: block;
  margin-bottom: 0.4rem;
  transition: color 0.2s ease;
}

.footer-mirox a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-mirox .footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.footer-mirox .footer-brand span {
  color: var(--gold);
}

.footer-mirox .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 0;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-mirox .footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-disclaimer {
  background-color: rgba(218,165,32,0.1);
  border-top: 1px solid rgba(218,165,32,0.2);
  padding: 1rem 0;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  font-style: italic;
}

/* ======= COOKIE BANNER ======= */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0d2626;
  border-top: 3px solid var(--teal);
  padding: 1.2rem 1.5rem;
  z-index: 9999;
  display: none;
}

#cookie-banner .cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

#cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}

#cookie-banner .cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

#cookie-banner .cookie-actions button,
#cookie-banner .cookie-actions a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

#cookie-banner #btn-accept {
  background-color: var(--teal);
  color: var(--white);
}

#cookie-banner #btn-accept:hover {
  background-color: var(--teal-dark);
}

#cookie-banner #btn-decline {
  background-color: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
}

#cookie-banner #btn-decline:hover {
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
}

#cookie-banner #btn-learn {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

#cookie-banner #btn-learn:hover {
  background-color: var(--gold);
  color: var(--text-dark);
}

/* ======= PAGE HEADER ======= */
.page-header {
  background-color: var(--teal);
  padding: 60px 0 50px;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.page-header p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin: 0;
}

.page-header .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0.8rem;
}

.page-header .breadcrumb-item a {
  color: var(--gold-light);
  font-size: 0.82rem;
}

.page-header .breadcrumb-item.active {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4);
}

/* ======= ABOUT PAGE ======= */
.value-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  border-top: 4px solid var(--teal);
}

.value-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 0;
  line-height: 1.65;
}

/* ======= POLICY PAGES ======= */
.policy-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.policy-content h2:first-of-type {
  margin-top: 1.5rem;
  border-top: none;
}

.policy-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.policy-content ul {
  margin-bottom: 1rem;
}

.policy-content ul li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--text-body);
}

/* ======= THANK YOU PAGE ======= */
.thankyou-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thankyou-box {
  max-width: 500px;
  padding: 3rem 2rem;
}

.thankyou-box .check-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.thankyou-box .check-circle svg {
  width: 36px;
  height: 36px;
  fill: var(--teal);
}

/* ======= CTA SECTION ======= */
.cta-strip {
  background-color: var(--teal);
  padding: 48px 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--white);
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.cta-strip p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

/* ======= INFO BOX GRID ======= */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.info-box {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.info-box h3 {
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.info-box p {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 0;
  line-height: 1.65;
}

/* ======= HIGHLIGHTED LIST ======= */
.hl-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hl-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}

.hl-list li:last-child {
  border-bottom: none;
}

.hl-list li .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 991px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-content h1 { font-size: 2.2rem; }
  .section-padded { padding: 60px 0; }
  .two-col-section { grid-template-columns: 1fr; gap: 36px; }
  .two-col-section.reverse { direction: ltr; }
  .stat-panel { grid-template-columns: repeat(2, 1fr); }
  .value-panel { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.15rem; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-section { min-height: 70vh; padding: 60px 0; }
  .section-padded { padding: 48px 0; }
  .section-padded-sm { padding: 36px 0; }
  .stat-panel { grid-template-columns: 1fr 1fr; }
  .value-panel { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .two-col-img img { height: 280px; }
  .footer-mirox .footer-bottom { flex-direction: column; text-align: center; }
  .page-header { padding: 40px 0 36px; }
  .page-header h1 { font-size: 1.7rem; }
}
