/* ============================================================
   WEB - Frontend Demo Recreation of vip-web.cc
   Phase 1: Design tokens + structural styles
   Phase 2: Header / hero / stats / CTA / About Us
   Phase 3: remaining sections
   Fonts are loaded via <link> in the HTML head (preconnect
   enabled) instead of @import for faster first paint.
   ============================================================ */

/* ---------- Design tokens (from reference site analysis) ---------- */
:root {
  /* Brand / primary */
  --header-blue: #007bff;
  --green-900: #006d77;
  --green-500: #83c5be;
  --green-100: #afeae4;
  --green-bg: #bee1e6;

  /* Ink & grays */
  --ink: #101828;
  --gray-1000: #1f2938;
  --gray-600: #475467;
  --gray-500: #667085;
  --gray-400: #98a2b3;
  --gray-300: #d0d5dd;
  --gray-100: #f2f4f7;

  /* Pastel section backgrounds (bg-1 .. bg-10) */
  --bg-1: #eae4e9;
  --bg-2: #fff3ea;
  --bg-3: #fde2e4;
  --bg-4: #fad2e1;
  --bg-5: #dbece5;
  --bg-6: #bee1e6;
  --bg-7: #f0efeb;
  --bg-8: #dfe7fd;
  --bg-9: #d1ecfd;
  --bg-10: #ddd3fa;

  /* Accent */
  --orange-900: #e29578;
  --orange-100: #faede3;

  /* Type (reference): body = Chivo, h1-h6 = Noto Sans,
     .text-heading-, .btn, .tag-1 = Chivo, .text-body- = Noto Sans */
  --font-body: "Chivo", sans-serif;
  --font-heading: "Noto Sans", sans-serif;
  --font-display: "Chivo", sans-serif;

  /* Radii */
  --radius-pill: 50px;
  --radius-lg: 16px;
  --radius-md: 8px;

  /* Bootstrap-parity colors (reference homepage uses BS utilities) */
  --bs-primary: #0d6efd;
  --bs-primary-hover: #0b5ed7;
  --bs-link-hover: #0a58ca;
  --bs-success: #198754;
  --bs-warning: #ffc107;

  /* Spacing scale used by reference utilities (mt-*, mb-*) */
  --space-120: 120px;
  --space-100: 100px;
  --space-90: 90px;
  --space-80: 80px;
  --space-70: 70px;
  --space-50: 50px;
  --space-40: 40px;
  --space-30: 30px;
  --space-20: 20px;
  --space-15: 15px;
  --space-10: 10px;

  --container-max: 1320px;
  --header-height: 60px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: var(--green-900);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--green-500);
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 69px; }
h2 { font-size: 55px; line-height: 67px; }
h3 { font-size: 44px; line-height: 54px; }
h4 { font-size: 28px; line-height: 34px; }
h5 { font-size: 22px; line-height: 28px; }
h6 { font-size: 16px; line-height: 22px; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}

.section-box {
  display: block;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}
.row > [class*="col-"] {
  padding: 0 16px;
}
.col-12 { width: 100%; }
.col-6  { width: 50%; }
.col-4  { width: 33.3333%; }
@media (min-width: 576px) {
  .col-sm-6 { width: 50%; }
  .col-sm-8 { width: 66.6667%; }
  .col-sm-12 { width: 100%; }
}
@media (min-width: 768px) {
  .col-md-12 { width: 100%; }
}
.col-lg-2 { width: 16.6667%; }
.col-lg-3 { width: 25%; }
.col-lg-4 { width: 33.3333%; }
.col-lg-6 { width: 50%; }
.col-lg-7 { width: 58.3333%; }
.col-lg-8 { width: 66.6667%; }
.col-lg-9 { width: 75%; }
.col-lg-10 { width: 83.3333%; }

@media (max-width: 991.98px) {
  .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10 {
    width: 100%;
  }
  h1 { font-size: 48px; }
  h2 { font-size: 38px; line-height: 46px; }
  h3 { font-size: 32px; line-height: 40px; }
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.align-items-center { align-items: center; }
.d-block { display: block; }
.d-none { display: none; }
@media (min-width: 992px) {
  .d-lg-block { display: block !important; }
}
.hover-up { transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1); }
.hover-up:hover { transform: translateY(-3px); }
.img-responsive { max-width: 100%; }

/* Spacing utilities (reference parity) */
.mt-15 { margin-top: var(--space-15) !important; }
.mt-20 { margin-top: var(--space-20) !important; }
.mt-30 { margin-top: var(--space-30) !important; }
.mt-40 { margin-top: var(--space-40) !important; }
.mt-50 { margin-top: var(--space-50) !important; }
.mt-70 { margin-top: var(--space-70) !important; }
.mt-80 { margin-top: var(--space-80) !important; }
.mt-90 { margin-top: var(--space-90) !important; }
.mt-100 { margin-top: var(--space-100) !important; }
.mt-120 { margin-top: var(--space-120) !important; }
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: var(--space-10) !important; }
.mb-15 { margin-bottom: var(--space-15) !important; }
.mb-20 { margin-bottom: var(--space-20) !important; }
.mb-30 { margin-bottom: var(--space-30) !important; }
.mb-40 { margin-bottom: var(--space-40) !important; }
.mb-60 { margin-bottom: var(--space-60, 60px) !important; }
.mb-90 { margin-bottom: var(--space-90) !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.pt-5 { padding-top: 5px !important; }
.pb-70 { padding-bottom: 70px !important; }
@media (min-width: 1200px) {
  .mt-lg-100 { margin-top: 100px; }
  .mb-lg-100 { margin-bottom: 100px; }
}

/* ---------- Text / color utilities ---------- */
.text-heading-1 { font-family: var(--font-display); font-weight: 700; font-size: 56px; line-height: 64px; letter-spacing: -0.01em; color: var(--ink); }
.text-heading-2 { font-family: var(--font-display); font-weight: 700; font-size: 42px; line-height: 44px; color: var(--ink); }
.text-heading-3 { font-family: var(--font-display); font-weight: 700; font-size: 35px; line-height: 38px; color: var(--ink); }
.text-heading-4 { font-family: var(--font-display); font-weight: 700; font-size: 28px; line-height: 32px; color: var(--ink); }
.text-heading-5 { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 24px; color: var(--ink); }
.text-heading-6 { font-family: var(--font-display); font-weight: 700; font-size: 18px; line-height: 22px; color: var(--ink); }
.text-display-3 { font-family: var(--font-display); font-weight: 700; font-size: 64px; line-height: 72px; color: var(--ink); }
.text-body-lead-large { font-family: var(--font-heading); font-weight: 400; font-size: 24px; line-height: 32px; }
.text-body-lead { font-family: var(--font-heading); font-weight: 700; font-size: 16px; line-height: 24px; }
.text-body-excerpt { font-family: var(--font-heading); font-weight: 400; font-size: 18px; line-height: 26px; }
.text-body-text { font-family: var(--font-heading); font-weight: 400; font-size: 16px; line-height: 28px; }
.text-body-small { font-family: var(--font-heading); font-weight: 500; font-size: 13px; line-height: 16px; }
.text-body-text-md { font-family: var(--font-heading); font-weight: 400; font-size: 14px; line-height: 19px; }

/* Responsive typography (reference parity) */
@media (max-width: 991.98px) {
  .text-heading-1 { font-size: 46px; line-height: 52px; }
}
@media (max-width: 575.98px) {
  .text-heading-1 { font-size: 35px; line-height: 44px; }
  .text-heading-2 { font-size: 28px; line-height: 32px; }
  .text-heading-3 { font-size: 25px; line-height: 30px; }
  .text-heading-4 { font-size: 20px; line-height: 26px; }
  .text-heading-5 { font-size: 18px; }
  .text-body-lead-large { font-size: 20px; line-height: 28px; }
  .section-box.mt-40,
  .section-box.mt-70,
  .section-box.mt-80,
  .section-box.mt-100 { margin-top: 30px !important; }
}

.color-gray-900 { color: var(--ink) !important; }
.color-gray-1000 { color: var(--gray-1000); }
.color-gray-600 { color: var(--gray-600); }
.color-gray-500 { color: var(--gray-500); }
.color-gray-400 { color: var(--gray-400) !important; }
.color-gray-100 { color: var(--gray-100); }
.color-green-900 { color: var(--green-900) !important; }
.color-white { color: #ffffff !important; }

.bg-1 { background-color: var(--bg-1) !important; }
.bg-2 { background-color: var(--bg-2) !important; }
.bg-5 { background-color: var(--bg-5) !important; }
.bg-6 { background-color: var(--bg-6) !important; }
.bg-9 { background-color: var(--bg-9) !important; }
.bg-10 { background-color: var(--bg-10) !important; }
.bg-gray-100 { background-color: var(--gray-100) !important; }
.box-gray-100 { background-color: var(--gray-100); border-radius: 16px; }
.bg-green-900 { background-color: var(--green-900) !important; color: #ffffff; }
.bg-white { background-color: #ffffff !important; }

.pt-90 { padding-top: var(--space-90) !important; }
.pb-90 { padding-bottom: var(--space-90) !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  padding: 22px 32px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.45px;
}

.btn-black {
  background-color: var(--ink);
  color: #ffffff;
  font-family: var(--font-heading);
}
.btn-black:hover { background-color: var(--gray-300); color: var(--ink); }

.btn-green-900 {
  background-color: var(--green-900);
  color: #ffffff;
}
.btn-green-900:hover { background-color: var(--ink); color: #ffffff; transform: translateY(-2px); }

.btn-default {
  background-color: var(--gray-100);
  color: var(--ink);
}
.btn-default:hover { background-color: var(--ink); color: #ffffff; transform: translateY(-2px); }

.btn-blue {
  background-color: var(--header-blue);
  color: #ffffff;
}

.btn.shape-square { border-radius: 4px; }

/* Bootstrap-parity button variants (reference CTA uses these) */
.btn-primary {
  background-color: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  color: #ffffff;
}
.btn-primary:hover { background-color: var(--bs-primary-hover); border-color: var(--bs-link-hover); color: #ffffff; }
.btn-lg { padding: 0.5rem 1rem; font-size: 1.25rem; border-radius: 0.5rem; }
.rounded-pill { border-radius: 50rem !important; }
.d-inline-flex { display: inline-flex; }
.gap-2 { gap: 0.5rem !important; }
.shadow { box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }

/* ---------- Tag pill ---------- */
.tag-1 {
  display: inline-block;
  background-color: var(--bg-2);
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  color: var(--orange-900);
  font-size: 14px;
  line-height: 14px;
  font-family: var(--font-display);
}

/* ---------- Forms ---------- */
.form-group { margin-bottom: 25px; }
.form-control {
  background: #fff;
  border: 1px solid #eee;
  height: 56px;
  box-shadow: none;
  padding: 0 20px;
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  border-radius: 4px;
  color: var(--ink);
  font-family: var(--font-body);
}
.form-control:focus { border-color: var(--green-900); outline: none; }
textarea.form-control {
  min-height: 160px;
  padding: 20px;
  resize: vertical;
}
.form-control::placeholder { color: var(--gray-400); }
.text-body-capitalized {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 2px;
}
.text-uppercase { text-transform: uppercase; }

/* ---------- Banner heroes ---------- */
.banner-hero { position: relative; padding: 60px 0 20px; }
.banner-breadcrums { padding: 80px 0; }

/* ---------- Header (reference: 60px #007bff bar, centered WEB, burger right) ---------- */
.site-header {
  background-color: var(--header-blue);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}
.site-header .header-inner {
  height: var(--header-height);
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.site-header .brand-text {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}
.burger-toggle {
  position: absolute;
  right: 16px;
  top: calc(50% - 15px);
  transform: translateY(-50%);
  cursor: pointer;
  background: none;
  border: 0;
  padding: 6px;
  z-index: 1001;
}
.burger-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  display: block;
  margin: 4px 0;
  border-radius: 2px;
}

/* ---------- Slide-in mobile menu ---------- */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: calc(100% - var(--header-height));
  background-color: #f8f9fa;
  z-index: 999;
  overflow-y: auto;
  transition: left 0.3s ease-in-out;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}
.mobile-menu.open { left: 0; }
.mobile-menu .menu-user {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #e4e4e4;
  gap: 10px;
}
.mobile-menu .menu-user img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.mobile-menu .menu-user h6 { margin: 0; font-weight: 600; }
.mobile-menu .menu-nav { padding: 16px; }
.mobile-menu .menu-nav a {
  display: block;
  color: var(--bs-primary);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 8px 0;
}
.mobile-menu .menu-nav a:hover { color: var(--bs-link-hover); }

.menu-overlay {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: rgba(16, 24, 40, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.menu-overlay.open { opacity: 1; visibility: visible; }

/* ---------- Hero slider (reference: 260px slides, auto-rotate, no dots) ---------- */
.hero-slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: var(--container-max);
}
.hero-slider .slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}
.hero-slider .slide {
  min-width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider .slide img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 576px) {
  .hero-slider .slide { height: 220px; }
}

/* ---------- News ticker (reference: Segoe UI, white bg, FAQ label) ---------- */
.news-ticker {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  color: #000000;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  padding: 0.5rem 1rem;
  overflow: hidden;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.news-label {
  flex: 0 0 auto;
  margin-right: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  border-right: 2px solid rgba(0, 0, 0, 0.1);
  padding-right: 1rem;
  white-space: nowrap;
}
.ticker-wrapper {
  flex: 1 1 auto;
  overflow: hidden;
  position: relative;
}
.ticker-content {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: ticker-scroll 20s linear infinite;
  font-size: 1rem;
  color: #000000;
}
.news-ticker:hover .ticker-content { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 576px) {
  .news-label { font-size: 0.85rem; padding-right: 0.5rem; margin-right: 0.5rem; }
  .ticker-content { font-size: 0.85rem; }
}

/* ---------- Statistics (reference: Bootstrap display-6 / text-* utilities) ---------- */
.display-6 { font-size: 2.5rem; line-height: 1.2; font-weight: 300; }
.fw-bold { font-weight: 700 !important; }
.text-primary { color: var(--bs-primary) !important; }
.text-success { color: var(--bs-success) !important; }
.text-warning { color: var(--bs-warning) !important; }
.text-muted { color: var(--gray-500) !important; }
.small { font-size: 0.875rem; }
.justify-content-center { justify-content: center; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.text-black { color: #000000 !important; }
.lead { font-size: 1.25rem; font-weight: 300; line-height: 1.5; }
@media (min-width: 576px) {
  .px-sm-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .pt-sm-3 { padding-top: 1rem !important; }
  .mt-sm-1 { margin-top: 0.25rem !important; }
  .mt-sm-2 { margin-top: 0.5rem !important; }
  .mt-sm-3 { margin-top: 1rem !important; }
}

/* ---------- Icon list items ---------- */
.list-icons .item-icon {
  position: relative;
  padding: 0 0 40px 80px;
  margin-bottom: 40px;
  border-bottom: 2px solid #e4e7ec;
}
.list-icons .item-icon.none-bd {
  border-bottom: 0;
  padding: 0 0 20px 80px;
  margin-bottom: 40px;
}
.list-icons .icon-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
}
@media (max-width: 575.98px) {
  .list-icons .item-icon.none-bd { margin-bottom: 20px; }
}

/* ---------- Feature boxes ---------- */
.box-square {
  width: 100%;
  height: 455px;
  border-radius: var(--radius-lg);
  padding: 55px 50px 0 50px;
  text-align: center;
}
.box-square .box-image-inner {
  border-radius: var(--radius-lg);
  padding: 23px 19px;
  margin-top: 30px;
}
.box-square .box-image-inner.bg-color-1 { background-color: #ebecf4; }
.box-square .box-image-inner.bg-color-2 { background-color: #cbd1e5; }
@media (max-width: 991.98px) {
  .box-square { height: auto; margin-bottom: 30px; }
}

/* ---------- Steps ---------- */
.list-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.list-steps li {
  width: 33.3333%;
  padding: 0 15px 60px;
  vertical-align: top;
  position: relative;
}
.list-steps .block-step {
  background-color: var(--bg-2);
  padding: 38px 30px 30px;
  border-radius: var(--radius-md);
  height: 100%;
}
@media (max-width: 991.98px) {
  .list-steps li { width: 100%; }
}

/* ---------- Testimonial cards ---------- */
.card-grid-style-3 {
  padding: 40px 40px 10px;
  width: 100%;
  border-radius: 0;
  background: #ffffff;
  border: 10px solid var(--bg-4);
  margin-bottom: 30px;
  transition: box-shadow 0.2s;
}
.card-grid-style-3:hover { box-shadow: 0 45px 80px rgba(0, 0, 0, 0.04); }
.card-grid-style-3.bd-bg-6  { border-color: var(--bg-6); }
.card-grid-style-3.bd-bg-9  { border-color: var(--bg-9); }
.card-grid-style-3.bd-bg-10 { border-color: var(--bg-10); }
.card-grid-style-3 .grid-3-img img {
  border-radius: 50%;
  width: 55px;
  height: 55px;
}

/* ---------- Shared image treatments ---------- */
.bdrd-16 { border-radius: var(--radius-lg); }
.col-lg-6.block-we-do-2 { padding-left: 12px; }
.block-img-we-do { position: relative; }
.block-we-do .inner-image { position: relative; }
.block-we-do .inner-image .block-image-bottom {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 313px;
}
.block-we-do .inner-image .block-image-bottom img {
  box-shadow: 0 47px 65px rgba(21, 28, 38, 0.1);
  border-radius: 16px;
}
@media (max-width: 991.98px) {
  .block-img-we-do { margin-bottom: 30px; }
  .col-lg-6.block-we-do-2 { padding-left: 12px; }
}
@media (max-width: 991.98px) {
  .block-we-do .inner-image .block-image-bottom { bottom: -80px; right: -30px; }
}
@media (max-width: 767.98px) {
  .block-we-do .inner-image .block-image-bottom { right: -20px; }
}
@media (min-width: 1400px) {
  .block-we-do { padding-left: 40px; }
  .block-img-we-do { padding-right: 30px; }
}
@media (max-width: 575.98px) {
  .block-we-do .inner-image .block-image-bottom { bottom: -50px; right: -5px; }
}
.line-bd-green { border: 1px dashed var(--green-900); }
.icon-leaf { padding-left: 28px; background: url("../assets/img/icon-leaf.svg") no-repeat 0 2px; }
@media (max-width: 575.98px) {
  .responsive-heading {
    font-size: 20px !important;
    white-space: normal !important;
    word-wrap: break-word;
    padding: 0 10px;
  }
}

/* ---------- Testimonial carousel (reference: swiper-style) ---------- */
.box-swiper { position: relative; }
.swiper-container { position: relative; overflow: hidden; }
.swiper-wrapper {
  display: flex;
  transition: transform 0.4s ease-in-out;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 0 12px;
  display: flex;
}
.swiper-slide .card-grid-style-3 {
  width: 100%;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .swiper-slide { width: 50%; }
}
@media (min-width: 992px) {
  .swiper-slide { width: 25%; }
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: -65px;
  width: 64px;
  height: 64px;
  margin-top: -55px;
  cursor: pointer;
  z-index: 10;
}
.swiper-button-next { left: auto; right: 0; background: url("../assets/img/swiper-next.svg") no-repeat 0 0; }
.swiper-button-next:hover { background: url("../assets/img/swiper-next-active.svg") no-repeat 0 0; }
.swiper-button-prev { left: auto; right: 84px; background: url("../assets/img/swiper-prev.svg") no-repeat 0 0; }
.swiper-button-prev:hover { background: url("../assets/img/swiper-prev-active.svg") no-repeat 0 0; }
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled { opacity: 1; }
.swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}
.swiper-pagination-bullet {
  display: inline-block;
  margin: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: background 0.2s;
}
.swiper-pagination-bullet-active { background: var(--green-500); }
@media (max-width: 575.98px) {
  .swiper-button-next,
  .swiper-button-prev { display: none; }
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: var(--space-50);
}
.site-footer .footer-bottom {
  border-top: 1px solid var(--gray-300);
  padding: 30px 0;
  color: var(--gray-500);
  font-size: 14px;
  text-align: center;
}

/* ---------- Placeholder styles (phase 1 only) ---------- */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 120px;
  border: 2px dashed var(--gray-400);
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  color: var(--gray-500);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: center;
  padding: 16px;
}
.ph-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-6);
  color: var(--green-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--green-900);
}
.ph-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--bg-9);
  border: 2px dashed var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 12px;
}