@charset "UTF-8";
:root {
  --brand-primary: #0d7272;
  --brand-primary-dark: #095858;
  --brand-primary-light: #0e8a8a;
  --brand-accent: #E07818;
  --brand-accent-light: #f08828;
  --brand-text: #1a2332;
  --brand-text-subtle: #5a6e82;
  --brand-text-muted: #8fa0b0;
  --brand-bg: #ffffff;
  --brand-page-bg: #f4f6f8;
  --brand-border: #e2e8ef;
  --brand-sidebar-bg: #f0f8f8;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --teal: #0d7272;
  --teal-dark: #0a5a5a;
  --teal-deep: #085041;
  --orange: #e07818;
  --mint: #e1f5ee;
  --mint-text: #0f6e56;
  --mint-line: #9fe1cb;
  --page: #f4f5f4;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #5b6470;
  --line: rgba(0, 0, 0, 0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

body.blog,
body.single {
  background: var(--brand-page-bg);
}

body .msg-btn, body .link, body .ghost, body .btn-primary, body .btn-outline {
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--sans);
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
body .link:focus-visible, body .ghost:focus-visible, body .btn-primary:focus-visible, body .btn-outline:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
body .link:disabled, body .ghost:disabled, body .btn-primary:disabled, body .btn-outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
body .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  cursor: pointer;
}
body .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
body .btn-outline:active {
  background-color: rgba(255, 255, 255, 0.2);
}
body .btn-outline:hover, body .btn-outline:visited {
  color: #fff;
}
body .btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
body .btn-primary:hover {
  background-color: #C96912;
}
body .btn-primary:active {
  background-color: #B35D0F;
}
body .btn-primary:visited:hover {
  color: #fff;
}
body .ghost {
  background-color: var(--teal-dark);
  color: #fff;
}
body .ghost:hover {
  background-color: var(--teal-deep);
}
body .ghost:active {
  background-color: #064237;
}
body .link {
  color: var(--mint-text);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
}
body .link i {
  transition: all 0.15s ease;
}
body .link:visited {
  color: var(--teal-dark);
}
body .link:visited:hover {
  color: var(--teal-dark);
}
body .link:hover {
  color: var(--teal-dark);
}
body .link:active {
  color: #08402F;
}
body .link:disabled {
  text-decoration: none;
}
body .link-underline:hover .link-text {
  text-decoration: underline;
}
body a.has-arrow:hover .ti {
  transform: translateX(3px);
}

a .ti {
  transition: all 0.15s ease;
}

.msg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.msg-btn.msg-wa {
  background: #25d366;
  color: #06351f;
}
.msg-btn.msg-wa:hover {
  background: color-mix(in srgb, #25d366, black 10%);
}
.msg-btn.msg-tg {
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.section-header .section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-text);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-header .section-title span {
  color: var(--brand-primary);
}
.section-header .section-subtitle {
  font-size: 14px;
  color: var(--brand-text-subtle);
  margin-top: 6px;
  font-weight: 400;
  margin-bottom: 0;
}

.blog-hero-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-text);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.blog-hero-title em {
  font-style: normal;
  color: var(--brand-primary);
}

.article-h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-text);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .article-h1 {
    font-size: 24px;
  }
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-text);
  margin: 28px 0 12px;
  letter-spacing: -0.01em;
}
.article-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin: 20px 0 12px;
  font-weight: 600;
  color: var(--brand-text);
}
.article-content h4,
.article-content h5,
.article-content h6 {
  font-family: var(--font-heading);
  color: var(--brand-text);
}
.article-content p {
  font-size: 15px;
  color: var(--brand-text-subtle);
  line-height: 1.75;
  margin-bottom: 16px;
}
.article-content p:last-of-type {
  margin-bottom: 0;
}
.article-content strong {
  color: var(--brand-text);
  font-weight: 700;
}
.article-content a {
  color: var(--brand-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(13, 114, 114, 0.3);
}
.article-content a:hover {
  border-bottom-color: var(--brand-primary);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.site-header .accent-btn.mini {
  line-height: 1.6;
}

.single .site-main,
.search .site-main,
.category .site-main,
.page-builder .site-main,
.blog .site-main {
  padding-top: 126px;
  padding-bottom: 48px;
}

.page-builder .site-main,
.single-projects .site-main {
  padding-top: 122px;
}
@media (max-width: 991.98px) {
  .page-builder .site-main,
  .single-projects .site-main {
    padding-top: 118px;
  }
}
@media (max-width: 575.98px) {
  .page-builder .site-main,
  .single-projects .site-main {
    padding-top: 84px;
  }
}

.blog .site-header,
.page-builder .site-header,
.single .site-header,
.search .site-header,
.archive .site-header,
.category .site-header,
.home .site-header {
  background-color: #006d76;
}

.search .page-header {
  margin-top: clamp(1.5rem, 1.2404rem + 1.1538vw, 2.625rem);
}
.search h1 {
  font-family: var(--font-heading);
  color: #555;
  text-transform: none;
  font-size: clamp(1.5rem, 1.3269rem + 0.7692vw, 2.25rem);
}
.search h1 span {
  color: #333;
  text-transform: uppercase;
}

.view-switcher {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0a1a2a;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.view-switcher span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 8px;
}

.vs-btn {
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.vs-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}
.vs-btn.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
}

.view {
  display: none;
}
.view.active {
  display: block;
}

.blog .breadcrumb,
.breadcrumb,
.category .breadcrumb,
.single .breadcrumb {
  padding: 14px 48px;
  background: white;
  border-bottom: 1px solid var(--brand-border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--brand-text-subtle);
  margin-bottom: 0;
}
.blog .breadcrumb a,
.breadcrumb a,
.category .breadcrumb a,
.single .breadcrumb a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 400;
}
.blog .breadcrumb a:hover,
.breadcrumb a:hover,
.category .breadcrumb a:hover,
.single .breadcrumb a:hover {
  text-decoration: underline;
}
.blog .breadcrumb .sep,
.breadcrumb .sep,
.category .breadcrumb .sep,
.single .breadcrumb .sep {
  color: var(--brand-text-muted);
  font-size: 11px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
  padding-bottom: 2px;
}
.section-link:hover {
  border-color: var(--brand-primary);
}
.section-link::after {
  content: "→";
  font-size: 16px;
}

.share-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.share-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-text-subtle);
}

.share-btns {
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  border: 1px solid var(--brand-border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.2s;
  color: var(--brand-text-subtle);
}
.share-btn:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-text-subtle);
}

.stars {
  display: flex;
  gap: 3px;
}

.star {
  font-size: 18px;
  color: var(--brand-accent);
}
.star.empty {
  color: #ddd;
}

.rating-score {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-text);
}

.rating-count {
  font-size: 13px;
  color: var(--brand-text-muted);
}

.spec-note {
  background: #fff8e7;
  border: 1px solid #f5dba0;
  border-radius: 6px;
  padding: 16px 20px;
  margin: 0 0 24px;
  font-size: 13px;
  color: #7a5a00;
  line-height: 1.6;
}
.spec-note strong {
  color: #5a3a00;
}

@media (max-width: 991.98px) {
  .footer-right-col .widget-title {
    margin-top: 20px;
  }
}

body.page-builder.page,
body.home {
  background: var(--page);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.home .hero {
  min-height: 560px;
  padding-top: 120px;
  padding-bottom: 20px;
}

section {
  padding: 64px 24px;
}
section.alt {
  background: #fff;
}

.page-builder .site-main section:last-child {
  margin-bottom: -46px;
}

/* ==========================================
   BLOCK 1: CONTACT DIRECTORY & FORM SPLIT
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}
.contact-grid .form-card {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 16px;
  padding: 30px;
}
.contact-grid .form-card h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-grid .form-card .lead {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 22px;
}
.contact-grid .form-card .contact-form-wrapper .field {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 18px;
}
.contact-grid .form-card .contact-form-wrapper .field .full {
  grid-column: 1/3;
}
.contact-grid .form-card .contact-form-wrapper input:not([class^=iti]),
.contact-grid .form-card .contact-form-wrapper textarea {
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 9px;
  padding: 13px 14px;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
  background: #fff;
  color: var(--text);
}
.contact-grid .form-card .contact-form-wrapper textarea {
  resize: vertical;
  min-height: 96px;
}
.contact-grid .form-card .form-note {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin: 14px 0 0;
}
.contact-grid .side .panel {
  background: var(--teal);
  color: #fff;
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 18px;
}
.contact-grid .side .panel h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-grid .side .panel .resp {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mint-line);
  font-size: 14px;
  margin-bottom: 16px;
}
.contact-grid .side .panel .resp .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34c759;
  animation: pulse-circle 1s linear infinite;
}
.contact-grid .side .panel a {
  color: var(--card);
}
.contact-grid .side .panel a:hover {
  color: var(--mint);
}
.contact-grid .side .panel a:visited {
  color: var(--mint);
}
.contact-grid .side .panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.contact-grid .side .panel ul li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
}
.contact-grid .side .panel ul li i {
  color: var(--mint-line);
  font-size: 19px;
  margin-top: 1px;
}
.contact-grid .side .panel ul li a {
  font-weight: 600;
  text-decoration: none;
}
.contact-grid .side .office {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 14px;
}
.contact-grid .side .office .tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--mint);
  color: var(--mint-text);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.contact-grid .side .office h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px;
}
.contact-grid .side .office p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}
.contact-grid .side .office .book {
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.why {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.why .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--mint-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}
.why h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
}
.why p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

p.lead {
  font-size: 16px;
  color: #374151;
  max-width: 760px;
  line-height: 1.75;
  margin: 0;
}

/* ==========================================
   BLOCK 2: MULTI-OFFICE MAP GRID
   ========================================== */
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mapcard {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
  border: 0.5px solid var(--line);
  background: var(--teal-deep);
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}
.mapcard .road {
  position: absolute;
  height: 3px;
  background: rgba(159, 225, 203, 0.28);
  border-radius: 3px;
}
.mapcard .road.r1 {
  top: 38%;
  left: -5%;
  width: 70%;
  transform: rotate(-8deg);
}
.mapcard .road.r2 {
  top: 64%;
  left: 20%;
  width: 90%;
  transform: rotate(6deg);
}
.mapcard .pin {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -100%);
  color: var(--orange);
  font-size: 40px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
}
.mapcard .pin.pin2 {
  left: 34%;
  top: 60%;
  font-size: 30px;
  color: #fff;
}
.mapcard .label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  border-radius: 10px;
  padding: 13px 15px;
}
.mapcard .label strong {
  display: block;
  font-size: 15px;
}
.mapcard .label span {
  font-size: 12.5px;
  color: var(--muted);
}
.mapcard .city {
  position: absolute;
  top: 14px;
  left: 16px;
  background: rgba(8, 50, 50, 0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 11px;
  border-radius: 20px;
}

.map-note {
  font-size: 13px;
  color: var(--muted);
  margin: 16px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================
   BLOCK 3: STEP PROCESS TIMELINE
   ========================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.steps .step {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.steps .step .no {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--mint-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--serif);
  font-size: 19px;
  margin-bottom: 14px;
}
.steps .step h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 6px;
}
.steps .step p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* ==========================================
   MEDIA QUERIES (Responsive Rules)
   ========================================== */
@media (max-width: 900px) {
  .contact-grid,
  .map-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .cards,
  .timeline,
  .stats,
  .trust,
  .objs {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .contact-grid .form-card .contact-form-wrapper .field {
    grid-template-columns: 1fr;
  }
  .contact-grid .form-card .contact-form-wrapper .field .full {
    grid-column: auto;
  }
  .cards,
  .timeline,
  .stats,
  .trust,
  .objs {
    grid-template-columns: 1fr;
  }
  section {
    padding: 44px 20px;
  }
}
.price-drivers-section .sec-sub {
  margin-bottom: 28px;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.legend {
  background: #fff7ec;
  border-bottom: 1px solid #f0d8b4;
  color: #8a5a16;
  font-size: 13px;
  padding: 10px 24px;
  text-align: center;
}

.slot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--mint-text);
  background: var(--mint);
  border: 1px dashed var(--mint-line);
  padding: 3px 7px;
  border-radius: 6px;
}

.drivers {
  display: grid;
  gap: 0;
  border: 0.5px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.drivers .drv {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
}
.drivers .drv + .drv {
  border-top: 0.5px solid var(--line);
}
.drivers .drv h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 4px;
}
.drivers .drv p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
  max-width: 760px;
}
.drivers .drv .imp {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 20px;
  white-space: nowrap;
}
.drivers .drv .imp.h {
  background: #fdece0;
  color: #b4500f;
}
.drivers .drv .imp.mh {
  background: var(--mint);
  color: var(--mint-text);
}
.drivers .drv .imp.m {
  background: #eef1f1;
  color: var(--muted);
}
@media (max-width: 820px) {
  .drivers .drv {
    grid-template-columns: 1fr;
  }
}

.drv-note {
  display: flex;
  gap: 9px;
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 14px;
  align-items: center;
}
.drv-note i {
  flex-shrink: 0;
  margin-top: 1px;
}

.twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}
@media (max-width: 820px) {
  .twocol {
    grid-template-columns: 1fr;
  }
}

.icard {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.icard .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--mint-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 16px;
}
.icard h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
}
.icard p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 16px;
}
.icard .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.icard .chips span {
  background: var(--mint);
  color: var(--mint-text);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
}
.icard .ilink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.slot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--mint-text);
  background: var(--mint);
  border: 1px dashed var(--mint-line);
  padding: 3px 8px;
  border-radius: 6px;
}

.sec-eb {
  color: var(--teal);
  font-size: 14px;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.sec {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  line-height: 1.08;
  max-width: 760px;
}

.sec-sub {
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 680px;
  font-size: 16px;
}

.news-card .card-image-placeholder {
  max-height: 180px;
}
.news-card.article-card .card-body {
  padding: 18px;
}
.news-card.article-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.6;
}
.news-card .card-read-more {
  margin-top: 0;
}

.msg-cta {
  display: flex;
  gap: 12px;
  margin: 14px 0 18px;
}
.msg-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 15px;
}

.hero {
  background: var(--teal-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 225, 203, 0.18), transparent 70%);
}
.hero .wrap {
  padding: 60px 24px 52px;
  position: relative;
  z-index: 1;
}
.hero .wrap .eyebrow {
  color: var(--mint-line);
  font-size: 14px;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero .wrap h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5.4vw, 58px);
  line-height: 1.04;
  font-weight: 600;
  max-width: 780px;
}
.hero .wrap p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 17px;
}
.hero .wrap .hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 26px 0 28px;
}
.hero .wrap .hero-chips .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.hero .wrap .hero-chips .chip i {
  color: var(--mint-line);
}
.hero .wrap .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero .ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.18);
  font-size: 64px;
}
.hero .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 50, 50, 0.92) 0%, rgba(8, 50, 50, 0.62) 55%, rgba(8, 50, 50, 0.35) 100%);
}
.hero-inner {
  position: relative;
  width: 100%;
  padding: 64px 24px;
}
.hero .price {
  color: var(--orange);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  font-family: var(--serif);
}

.trustbar {
  background: #fff;
  border-bottom: 0.5px solid var(--line);
}
.trustbar .grow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 24px;
}
.trustbar .t-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.trustbar .t-item i {
  color: var(--teal);
  font-size: 22px;
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 28px;
  flex-wrap: wrap;
}
.sec-head h2.sec {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  margin: 0;
  line-height: 1.1;
}

.prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}

.prop {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.prop .img {
  position: relative;
  height: 210px;
  background: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 34px;
}
.prop .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prop .body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prop .name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 6px;
}
.prop .desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.6;
  flex: 1;
}
.prop .pfoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.prop .pprice {
  color: var(--orange);
  font-weight: 600;
  font-size: 16px;
  font-family: var(--serif);
}
.prop .meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(10, 90, 90, 0.92));
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 26px 14px 12px;
  font-size: 12.5px;
}
.prop .meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.intro {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.intro p {
  font-size: 16.5px;
  color: var(--muted);
  margin: 0 0 14px;
}
.intro .stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.intro .stat-row .stat {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}
.intro .stat-row .stat .num {
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}
.intro .stat-row .stat .cap {
  color: var(--muted);
  font-size: 13px;
  margin-top: 7px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.stats .stat {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}
.stats .stat .num {
  font-family: var(--sans);
  font-size: 38px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}
.stats .stat .cap {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 8px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.cards .card-life,
.cards .case {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}
.cards .card-life .ic,
.cards .case .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--mint-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 16px;
}
.cards .card-life h3,
.cards .case h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}
.cards .card-life p,
.cards .case p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

.loc {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  margin-top: 30px;
  align-items: stretch;
}
.loc .dist {
  display: grid;
  gap: 12px;
}
.loc .dist .drow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
}
.loc .dist .drow .l {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
}
.loc .dist .drow .l i {
  color: var(--teal);
  font-size: 20px;
}
.loc .dist .drow .v {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--teal);
}

.mapcard {
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 450px;
}
.mapcard .pin {
  position: absolute;
  left: 48%;
  top: 46%;
  transform: translate(-50%, -100%);
  color: var(--orange);
  font-size: 40px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
}
.mapcard .label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
  padding: 13px 15px;
}
.mapcard .label strong {
  display: block;
  font-size: 15px;
}
.mapcard .label span {
  font-size: 12.5px;
  color: var(--muted);
}

.mapcard {
  position: relative;
  overflow: hidden;
}
.mapcard iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}
.mapcard .label {
  position: absolute;
  z-index: 2;
}
.mapcard .pin {
  display: none;
}

.objs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.objs .obj {
  border: 0.5px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.objs .img {
  height: 150px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: #fff;
}
.objs .body {
  padding: 18px;
}
.objs .body h4 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}
.objs .body p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 4px 0 12px;
}
.objs .body a {
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.objs .body a:hover {
  color: color-mix(in srgb, var(--orange), black 10%);
}

.dev {
  background: var(--teal);
  color: #fff;
  border-radius: 20px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 34px;
  align-items: center;
  margin-top: 8px;
}
.dev h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}
.dev p {
  color: rgba(255, 255, 255, 0.85);
  margin: 12px 0 0;
}
.dev .logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.dev .logos span {
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
}

.bridge {
  background: var(--mint);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.bridge h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--mint-text);
}
.bridge p {
  color: var(--mint-text);
  margin: 6px 0 0;
  font-size: 14.5px;
  max-width: 560px;
}

.pay {
  background: var(--teal);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-top: 34px;
}
.pay h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}
.pay .lead {
  color: var(--mint-line);
  margin: 6px 0 28px;
}
.pay .foot {
  margin-top: 20px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.timeline .tl {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
}
.timeline .tl::before {
  content: none;
}
.timeline .big {
  font-family: var(--sans);
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.timeline .lbl {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-top: 8px;
}

.faq {
  margin-top: 30px;
  max-width: 880px;
}
.faq details {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq details summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq details summary::-webkit-details-marker {
  display: none;
}
.faq details summary .pl {
  color: var(--orange);
  font-size: 24px;
  transition: transform 0.2s;
  flex: none;
}
.faq details[open] summary .pl {
  transform: rotate(45deg);
}
.faq details[open] .ans {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.trust .tcard {
  text-align: center;
  padding: 10px;
}
.trust .tcard i {
  font-size: 30px;
  color: var(--teal);
}
.trust .tcard h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 4px;
}
.trust .tcard p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0;
}

.lead-block {
  background: var(--teal);
  color: #fff;
  border-radius: 20px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 34px;
  align-items: center;
  margin-top: 8px;
}
.lead-block h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
}
.lead-block p {
  color: rgba(255, 255, 255, 0.85);
  margin: 10px 0 22px;
}
.lead-block .lead-msg {
  display: flex;
  gap: 12px;
}
.lead-block .lead-msg a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.lead-block .form-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  display: grid;
  gap: 12px;
  color: var(--text);
}

form,
.sib-form,
.sib_embed_signup {
  display: grid;
  gap: 12px;
  width: 100%;
}
form input[type=text],
form input[type=email],
form input[type=tel],
form textarea,
form .sib-input input,
.sib-form input[type=text],
.sib-form input[type=email],
.sib-form input[type=tel],
.sib-form textarea,
.sib-form .sib-input input,
.sib_embed_signup input[type=text],
.sib_embed_signup input[type=email],
.sib_embed_signup input[type=tel],
.sib_embed_signup textarea,
.sib_embed_signup .sib-input input {
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 9px;
  padding: 13px 14px;
  font-size: 14px;
  font-family: inherit;
  text-transform: none;
  width: 100%;
  color: var(--text);
  background: #fff;
  box-sizing: border-box;
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=tel]:focus,
form textarea:focus,
form .sib-input input:focus,
.sib-form input[type=text]:focus,
.sib-form input[type=email]:focus,
.sib-form input[type=tel]:focus,
.sib-form textarea:focus,
.sib-form .sib-input input:focus,
.sib_embed_signup input[type=text]:focus,
.sib_embed_signup input[type=email]:focus,
.sib_embed_signup input[type=tel]:focus,
.sib_embed_signup textarea:focus,
.sib_embed_signup .sib-input input:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
form textarea,
.sib-form textarea,
.sib_embed_signup textarea {
  resize: vertical;
  min-height: 92px;
}

.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  display: grid;
  gap: 12px;
  box-sizing: border-box;
}
.form-card .drow,
.form-card .sib-form-row,
.form-card .sib-form-grid {
  display: flex;
  gap: 12px;
  width: 100%;
}
.form-card .drow input,
.form-card .drow .sib-input,
.form-card .sib-form-row input,
.form-card .sib-form-row .sib-input,
.form-card .sib-form-grid input,
.form-card .sib-form-grid .sib-input {
  flex: 1;
  width: 100%;
}
.form-card button:not([class^=iti]),
.form-card input[type=submit],
.form-card .sib-form-block button {
  background: var(--orange);
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}
.form-card label,
.form-card .entry__label,
.form-card .sib-form-message-panel {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
  display: block;
}

.iti {
  width: 100%;
  height: 51px;
}
.iti .iti__search-input {
  width: 100%;
  border-width: 0;
  border-radius: 3px;
  padding-left: calc(var(--iti-spacer-horizontal) + var(--iti-globe-icon-size) + var(--iti-spacer-horizontal));
  padding-right: calc(var(--iti-spacer-horizontal) + var(--iti-clear-icon-size) + var(--iti-spacer-horizontal));
}
.iti .iti__country-list {
  color: var(--muted);
}

.iti__country-name {
  font-size: 14px;
}

.iti__tel-input {
  font-family: inherit !important;
  font-size: 14px !important;
  line-height: 1.6;
}

.iti__tel-input:focus {
  outline-offset: 2px;
  border-color: transparent !important;
}

.iti__country-selector {
  overflow: hidden;
}

.iti__selected-dial-code {
  font-size: 14px;
  color: #777;
}

@media (max-width: 600px) {
  .form-card .drow,
  .form-card .sib-form-row,
  .form-card .sib-form-grid {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 920px) {
  .intro,
  .loc,
  .dev,
  .lead-block {
    grid-template-columns: 1fr;
  }
  .cards,
  .objs,
  .stats,
  .timeline,
  .trust {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .home section {
    padding: 48px 20px;
  }
  body .col {
    padding: 0;
  }
  .cards,
  .objs,
  .stats,
  .timeline,
  .trust,
  .intro .stat-row {
    grid-template-columns: 1fr;
  }
  .hero .wrap .hero-cta {
    flex-direction: column;
  }
  .hero .wrap .hero-cta a {
    width: 100%;
  }
  .lead-block .lead-msg {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.legend {
  background: #fff7ec;
  border-bottom: 1px solid #f0d8b4;
  color: #8a5a16;
  font-size: 13px;
  padding: 10px 24px;
  text-align: center;
}

.units-cta a.link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14.5px;
}

.slot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--mint-text);
  background: var(--mint);
  border: 1px dashed var(--mint-line);
  padding: 3px 8px;
  border-radius: 6px;
  vertical-align: middle;
}

.sec-eb {
  font-size: 14px;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

/* ===== ABOUT DEVELOPER — тиловая панель доверия ===== */
.dev-band {
  background: var(--teal);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.dev-band::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 225, 203, 0.16), transparent 70%);
}

.dev-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: start;
}

.dev-band .sec-eb {
  color: var(--mint-line);
}

.dev-band h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 10px;
}

.dev-ticker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 11px;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 18px;
}

.dev-ticker i {
  color: var(--mint-line);
  font-size: 15px;
}

.dev-band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0 0 18px;
}

.dev-locs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.dev-locs span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
}

.dev-locs span i {
  color: var(--mint-line);
  font-size: 16px;
}

/* факты доверия — чекмарки (по референсу), НЕ выдуманные цифры */
.dev-points {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.dev-points .pt {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 14px 16px;
}

.dev-points .pt i {
  color: var(--mint-line);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.dev-points .pt b {
  font-weight: 600;
  font-size: 14.5px;
}

.dev-points .pt span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

@media (max-width: 760px) {
  .dev-band {
    padding: 28px;
  }
  .dev-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
.numbers {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  font-family: var(--sans);
}

.hero h1 {
  font-family: var(--serif);
  color: #fff;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.08;
  margin: 0;
  text-transform: none;
  max-width: 820px;
  font-weight: 600;
}
.hero .eyebrow {
  color: var(--mint-line);
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.hero .sub {
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin: 26px 0 6px;
  color: #fff;
  font-size: 14px;
}
.hero-meta i {
  color: var(--mint-line);
}
.hero .price {
  color: var(--orange);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  font-family: var(--sans);
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.single-projects .msg-btn.msg-wa {
  background: var(--orange);
  color: #fff;
}
.single-projects section.tight {
  padding: 36px 24px;
}
.single-projects .hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.single-projects .hero-cta .price {
  color: var(--orange);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
}
.single-projects .hero-cta .ratechip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 6px 13px;
  border-radius: 30px;
  font-size: 14px;
}
.single-projects .hero-cta .ratechip i {
  color: var(--orange);
}
.single-projects .hero {
  position: relative;
  background: var(--teal-dark);
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.single-projects .hero-inner {
  position: relative;
  width: 100%;
  background: linear-gradient(transparent, rgba(8, 50, 50, 0.9));
  padding: 48px 24px 40px;
}
.single-projects .legend {
  background: #fff7ec;
  border-bottom: 1px solid #f0d8b4;
  color: #8a5a16;
  font-size: 13px;
  padding: 10px 24px;
  text-align: center;
}
.single-projects .slot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--mint-text);
  background: var(--mint);
  border: 1px dashed var(--mint-line);
  padding: 3px 8px;
  border-radius: 6px;
}
.single-projects .sec {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.1;
}
.single-projects .sec-sub {
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 680px;
}
.single-projects {
  /* top control bar: currency + gross/net */
}
.single-projects .topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 14px;
}
.single-projects .seg {
  display: inline-flex;
  background: #e7ecec;
  border-radius: 9px;
  padding: 3px;
}
.single-projects .seg button {
  border: none;
  background: transparent;
  padding: 7px 14px;
  border-radius: 7px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}
.single-projects .seg button.on {
  background: #fff;
  color: var(--teal);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.single-projects .seg .lab {
  align-self: center;
  font-size: 12px;
  color: var(--muted);
  padding: 0 8px 0 4px;
}
.single-projects .roi {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.single-projects .roi-tabs {
  display: flex;
  gap: 6px;
  padding: 10px;
  background: var(--mint);
  flex-wrap: wrap;
}
.single-projects .roi-tab {
  flex: 1;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--mint-text);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.single-projects .roi-tab i {
  font-size: 18px;
}
.single-projects .roi-tab.active {
  background: var(--teal);
  color: #fff;
}
.single-projects .roi-tab .hint {
  font-weight: 400;
  font-size: 11.5px;
  opacity: 0.8;
  display: block;
}
.single-projects .roi-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}
.single-projects .roi-inputs {
  padding: 30px;
  border-right: 0.5px solid var(--line);
}
.single-projects .roi-out {
  padding: 30px;
  background: #fafbfb;
}
.single-projects .ctrl {
  margin-bottom: 26px;
}
.single-projects .ctrl:last-child {
  margin-bottom: 0;
}
.single-projects .ctrl label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.single-projects .ctrl .name {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.single-projects .ctrl .val {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}
.single-projects input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(var(--teal), var(--teal)) no-repeat, #e7ecec;
  background-size: 50% 100%;
  outline: none;
}
.single-projects input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-deep);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.single-projects input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-deep);
  cursor: pointer;
  border: 3px solid #fff;
}
.single-projects .ctrl .ends {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.single-projects .out-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 4px;
}
.single-projects .out-mode {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}
.single-projects .out-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 0.5px solid var(--line);
  font-size: 14.5px;
}
.single-projects .out-row .k {
  color: var(--muted);
}
.single-projects .out-row .v {
  font-family: var(--sans);
  font-weight: 600;
}
.single-projects .out-row.cost .v {
  color: #b45309;
}
.single-projects .out-hi {
  background: var(--teal);
  color: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 18px;
}
.single-projects .out-hi .big {
  font-family: var(--sans);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}
.single-projects .out-hi .lbl {
  font-size: 13px;
  opacity: 0.85;
}
.single-projects .out-hi .ann {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 13.5px;
  opacity: 0.92;
}
.single-projects .out-profit {
  background: var(--mint);
  color: var(--mint-text);
  border-radius: 12px;
  padding: 13px 16px;
  margin-top: 12px;
  font-size: 14px;
}
.single-projects .out-profit b {
  font-weight: 600;
}
.single-projects .costnote {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 8px;
}
.single-projects .disc {
  padding: 18px 30px 26px;
}
.single-projects .disc .imp {
  display: flex;
  gap: 10px;
  background: #fff8ec;
  border: 1px solid #f0d8b4;
  color: #8a5a16;
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 12.5px;
  line-height: 1.55;
}
.single-projects .disc .imp i {
  color: #c98a2b;
  font-size: 18px;
  flex-shrink: 0;
}
.single-projects .disc .fine {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  margin-top: 12px;
  line-height: 1.55;
}
.single-projects .disc .fine i {
  flex-shrink: 0;
  margin-top: 1px;
}
@media (max-width: 820px) {
  .single-projects .roi-grid {
    grid-template-columns: 1fr;
  }
  .single-projects .roi-inputs {
    border-right: none;
    border-bottom: 0.5px solid var(--line);
  }
  .single-projects .roi-tab .hint {
    display: none;
  }
  .single-projects .topbar {
    justify-content: flex-start;
  }
}

.lead p {
  font-size: 16px;
  color: #374151;
  max-width: 760px;
  line-height: 1.75;
}

/* ==========================================
   GLOBAL SUB-HEADERS & INDICATORS
   ========================================== */
.eyebrow-sec {
  color: var(--mint-text);
  font-size: 14px;
  letter-spacing: 0.5px;
  margin: 0 0 6px;
  font-weight: 500;
}

/* ==========================================
   BLOCK 1: SPECIFICATIONS METRICS BAR
   ========================================== */
.specs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
}
.specs .cell {
  background: #fff;
  padding: 18px 16px;
}
.specs .k {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 4px;
}
.specs .v {
  font-size: 15px;
  font-weight: 600;
}

.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.tag {
  background: var(--mint);
  color: var(--mint-text);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 7px;
}

/* ==========================================
   BLOCK 2: DYNAMIC PHOTO GALLERY GRID
   ========================================== */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 10px;
}
.gallery .g {
  border-radius: 10px;
  background: #cfe3dd;
  position: relative;
}
.gallery .g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.gallery .g.big {
  grid-row: 1/3;
  background: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 34px;
}
.gallery .g.more {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-text);
  font-weight: 600;
}
.gallery .g .more-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 4px 12px;
  border-radius: 6px;
  background-color: #cfe3dd;
}

/* ==========================================
   BLOCK 3: VIDEO BANNER
   ========================================== */
.video {
  position: relative;
  background: var(--teal-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video video {
  object-fit: cover;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1399.98px) {
  .video video {
    height: 500px;
  }
}
@media (max-width: 575.98px) {
  .video video {
    height: 300px;
  }
}
.video .play {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 45px);
  left: calc(50% - 45px);
}
.video .play::before {
  content: "";
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform-origin: center center;
  border-radius: 200px;
  animation: 2s linear 0s infinite normal none running img-scale;
}
.video .play i {
  font-size: 32px;
  color: var(--teal);
  margin-left: 4px;
}
.video .cap {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  font-size: 15px;
}

/* ==========================================
   BLOCK 4: FLOOR PLAN SPECIFICATION CARDS
   ========================================== */
.fp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.fp-grid .fp-card {
  margin: 0;
  background: var(--card);
  border: 0.5px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.fp-grid .fp-card img,
.fp-grid .fp-card .img-ph {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #fff;
  border-bottom: 0.5px solid var(--line);
  display: block;
}
.fp-grid .fp-card .img-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-line);
  font-size: 44px;
  background: var(--mint);
}
.fp-grid .fp-card figcaption {
  padding: 16px 18px 18px;
}
.fp-grid .fp-card figcaption .fp-title {
  display: block;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
}
.fp-grid .fp-card figcaption .fp-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}
.fp-grid .fp-card figcaption .fp-meta b {
  color: var(--text);
  font-weight: 600;
}
.fp-grid .fp-card figcaption .fp-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--mint-line);
}
.fp-grid .fp-card figcaption .fp-meta .fp-price {
  color: var(--orange);
  font-weight: 600;
}

/* ==========================================
   BLOCK 5: AMENITIES GRID LIST
   ========================================== */
.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}
.amenities .amenity {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
}
.amenities .amenity i {
  color: var(--teal);
  font-size: 30px;
}
.amenities .amenity div {
  font-size: 14px;
  margin-top: 8px;
}

/* ==========================================
   BLOCK 6: WHY INVEST REASON TILES
   ========================================== */
.grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.grid3 .card {
  background: var(--card);
  border: 0.5px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.grid3 .card i {
  color: var(--teal);
  font-size: 26px;
}
.grid3 .card h3 {
  font-size: 17px;
  margin: 10px 0 6px;
  font-weight: 600;
}
.grid3 .card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ==========================================
   BLOCK 7: THE ENVELOPE / PAYMENT BANNER & GRID
   ========================================== */
.pay-banner {
  background: var(--teal);
  color: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 14px;
}
.pay-banner .t {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}
.pay-banner .s {
  color: var(--mint-line);
  font-size: 14px;
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.pay-grid .pay-cell {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}
.pay-grid .pay-cell .n {
  color: var(--teal);
  font-size: 26px;
  font-weight: 600;
}
.pay-grid .pay-cell .d {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* ==========================================
   BLOCK 8: DETAILED MILESTONES GRAPHIC (Collision Fixed)
   ========================================== */
.pay-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}
.pay-layout .steps .step {
  background: var(--mint);
  border-radius: 14px;
  padding: 18px;
}
.pay-layout .steps .step .ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #fff;
  color: var(--mint-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 12px;
}
.pay-layout .steps .step .pc {
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}
.pay-layout .steps .step .nm {
  font-size: 13px;
  color: var(--mint-text);
  font-weight: 600;
  margin-top: 6px;
}
.pay-layout .steps .step .ds {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.pay-layout .plan {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 18px;
  padding: 30px;
}
.pay-layout .plan .bar {
  display: flex;
  height: 12px;
  border-radius: 8px;
  overflow: hidden;
  margin: 22px 0 8px;
  border: 0.5px solid var(--line);
}
.pay-layout .plan .bar .b1 {
  background: var(--teal);
  flex: 0 0 20%;
}
.pay-layout .plan .bar .b2 {
  background: var(--mint-line);
  flex: 0 0 60%;
}
.pay-layout .plan .bar .b3 {
  background: var(--orange);
  flex: 0 0 20%;
}
.pay-layout .plan .barkey {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}
.pay-layout .plan .barkey span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pay-layout .plan .barkey b {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}
.pay-layout .plan .note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 16px;
  display: flex;
  gap: 8px;
}
.pay-layout .plan .note i {
  flex-shrink: 0;
  margin-top: 1px;
}
.pay-layout .accent {
  background: var(--teal);
  color: #fff;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pay-layout .accent::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 225, 203, 0.18), transparent 70%);
}
.pay-layout .accent .big {
  font-family: var(--sans);
  font-size: clamp(44px, 6vw, 60px);
  font-weight: 600;
  line-height: 1;
  position: relative;
}
.pay-layout .accent .big small {
  font-size: 20px;
  font-weight: 600;
  opacity: 0.85;
}
.pay-layout .accent .tag {
  position: relative;
  margin-top: 6px;
  font-size: 15px;
  opacity: 0.92;
}
.pay-layout .accent .feats {
  position: relative;
  margin-top: 20px;
  display: grid;
  gap: 10px;
}
.pay-layout .accent .feats div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
}
.pay-layout .accent .feats i {
  color: var(--mint-line);
  font-size: 19px;
}

/* ==========================================
   BLOCK 9: PURCHASE TIMELINE PORTRAIT
   ========================================== */
.tl {
  position: relative;
  margin-top: 10px;
  padding-left: 34px;
}
.tl::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--mint-line), var(--teal-deep));
}
.tl .tlstep {
  position: relative;
  padding: 0 0 26px 18px;
}
.tl .tlstep::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--teal);
}
.tl .tlstep.fin::before {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
}
.tl .tlstep:last-child {
  padding-bottom: 0;
}
.tl .tlstep p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 8px 0 0 50px;
}
.tl .tlhead {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tl .tlhead .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--mint-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.tl .tlhead h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.tl .tlhead .when {
  margin-left: auto;
  font-size: 12.5px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eef1f1;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ==========================================
   BLOCK 10: USER RATINGS & REVIEW SUMMARY
   ========================================== */
.rating-card {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.rating-card .rating-score {
  text-align: center;
  min-width: 110px;
}
.rating-card .rating-score .big {
  font-size: 48px;
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
}
.rating-card .rating-score .stars {
  color: var(--orange);
  font-size: 18px;
  margin-top: 6px;
}
.rating-card .rating-score .count {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.rating-rate {
  flex: 1;
  min-width: 220px;
  border-left: 0.5px solid var(--line);
  padding-left: 28px;
}
.rating-rate .lbl {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.rating-rate #ratestars {
  color: #cfae8a;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  gap: 6px;
}
.rating-rate #ratestars i:hover {
  transform: scale(1.1);
}
.rating-rate #ratemsg {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

/* ==========================================
   BLOCK 11: GEOGRAPHY & DISTANCE GRID
   ========================================== */
.loc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.loc-grid .map {
  height: auto;
  min-height: 360px;
}
.loc-grid .map .label {
  position: absolute;
  left: 16px;
  top: 16px;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
}
.loc-grid .map .label strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}
.loc-grid .distances {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 12px;
  padding: 4px 22px;
}
.loc-grid .distances .dist {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 0.5px solid var(--line);
}
.loc-grid .distances .dist:last-child {
  border-bottom: none;
}
.loc-grid .distances .dist i {
  color: var(--teal);
  font-size: 22px;
  flex: none;
}
.loc-grid .distances .dist .dn {
  font-size: 15px;
}
.loc-grid .distances .dist .dv {
  margin-left: auto;
  color: var(--muted);
  font-size: 15px;
}

/* ==========================================
   BLOCK 12: UNIT AVAILABILITY PANELS
   ========================================== */
.units {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.units .unit {
  border: 0.5px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.units .unit .price .k {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.units .unit .price .v {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1.1;
}
.units .unit .view {
  color: var(--orange);
  font-weight: 600;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.units .unit .img {
  height: 160px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.units .unit .img .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-deep);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
}
.units .unit .img .nm {
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}
.units .unit .body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.units .unit .body .chips {
  display: flex;
  gap: 8px;
}
.units .unit .body .chips span {
  background: var(--mint);
  color: var(--mint-text);
  font-size: 12.5px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 7px;
}
.units .unit .body .foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}

.units-cta {
  margin-top: 24px;
  border: 0.5px dashed var(--line);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
}

/* ==========================================
   BLOCK 13: LEAD DIRECT CALL-TO-ACTION (MAKE ORDER)
   ========================================== */
.cta-block {
  background: var(--teal);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-block .cta-left .cta-h {
  font-family: var(--serif);
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 12px;
}
.cta-block .cta-left .cta-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 420px;
}
.cta-block .cta-left .cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-block .cta-left .cta-btns .cta-msg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 12px 22px;
  border-radius: 9px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
}
.cta-block .cta-left .cta-btns .cta-msg:hover {
  background: rgba(255, 255, 255, 0.24);
}
.cta-block .cta-form {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
}
.cta-block .cta-form input,
.cta-block .cta-form textarea {
  width: 100%;
  border: 0.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 9px;
  padding: 13px 15px;
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 12px;
  resize: vertical;
}
.cta-block .cta-form .cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-block .cta-form .cta-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 2px;
}

/* ==========================================
   BLOCK 14: ACCORDION LISTS (Collision Fixed)
   ========================================== */
.project-faq {
  max-width: 860px;
}
.project-faq details {
  border-top: 0.5px solid var(--line);
}
.project-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
}
.project-faq summary::-webkit-details-marker {
  display: none;
}
.project-faq summary .ti-plus {
  transition: transform 0.2s;
}
.project-faq details[open] summary .ti-plus {
  transform: rotate(45deg);
}
.project-faq p {
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ==========================================
   MEDIA QUERIES (Adaptive Grid Adjustments)
   ========================================== */
@media (max-width: 900px) {
  .pay-layout,
  .plan .steps,
  .units,
  .cta-block {
    grid-template-columns: 1fr;
  }
  .tlhead .when {
    margin-left: 0;
  }
  .tlstep p {
    margin-left: 0;
  }
}
@media (max-width: 860px) {
  .loc-grid {
    grid-template-columns: 1fr;
  }
  .loc-grid .map {
    min-height: 280px;
  }
}
@media (max-width: 760px) {
  .specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px;
  }
  .gallery .big {
    grid-row: auto;
    grid-column: 1/3;
  }
  .rating-rate {
    border-left: none;
    padding-left: 0;
    border-top: 0.5px solid var(--line);
    padding-top: 16px;
  }
  .cta-block .cta-form .cta-row {
    grid-template-columns: 1fr;
  }
}
/* Scrim Overlay background */
.scrim-nav {
  position: fixed;
  inset: 0;
  background: rgba(8, 50, 50, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s;
  z-index: 40;
}
.scrim-nav.open {
  opacity: 1;
  visibility: visible;
}

/* Slide-out Drawer Panel */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 340px;
  max-width: 86vw;
  background: var(--teal-dark);
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.drawer.open {
  transform: translateX(0);
}
.drawer .logo {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 2px;
}

/* Drawer Header Area */
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.drawer-head .logo {
  font-size: 20px;
}
.drawer-head .logo small {
  font-size: 12px;
  opacity: 0.85;
  letter-spacing: 1px;
}
.drawer-head .drawer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 2px;
}

/* Drawer Main Navigation Groupings */
.drawer-body {
  padding: 8px 24px 24px;
  flex: 1;
}

body .nav-group a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 21px;
  font-family: var(--serif);
  padding: 9px 0;
  transition: color 0.15s, padding-left 0.15s;
}
body .nav-group a i {
  font-size: 18px;
  color: var(--mint-line);
  width: 20px;
}
body .nav-group a:hover {
  color: var(--mint-line);
  padding-left: 4px;
}
body .nav-group a.active {
  color: var(--orange);
}
body .nav-group a.active i {
  color: var(--orange);
}

.nav-group {
  padding: 20px 0 6px;
}
.nav-group + .nav-group {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.nav-group h4 {
  color: var(--mint-line);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin: 0 0 6px;
}

/* Drawer Footer Info & Social Block */
.drawer-foot {
  padding: 20px 24px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--teal-deep);
  color: #fff;
}
.drawer-foot .ph {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 14px;
  text-decoration: none;
}
.drawer-foot .ph i {
  color: var(--mint-line);
}
.drawer-foot .msg-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.drawer-foot .msg-btn {
  flex: 1;
  justify-content: center;
  padding: 11px;
  font-size: 14px;
}
.drawer-foot .msg-btn.msg-tg {
  background: #fff;
  color: var(--teal-dark);
}
.drawer-foot .msg-btn.msg-tg:hover {
  background: color-mix(in srgb, #fff, black 10%);
}
.drawer-foot .drawer-lang {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
}
.drawer-foot .drawer-lang span {
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.drawer-foot .drawer-lang .on {
  background: #fff;
  color: var(--teal-dark);
  border-color: #fff;
  font-weight: 600;
}

.contact-form-wrapper .lead-form {
  padding: 0;
}

.lead-form {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lead-form__full {
  padding: 0;
}
.lead-form .full {
  grid-column: 1/3;
}
.lead-form input:not([class^=iti]),
.lead-form textarea {
  border: 0.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
  line-height: 1.6;
}
.lead-form .submit {
  grid-column: 1/3;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.single-projects .iti {
  height: 47px;
}

@media (max-width: 760px) {
  .cta-block {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}
@media (max-width: 640px) {
  .hero-inner {
    padding: 48px 20px;
  }
  .pay-grid {
    grid-template-columns: 1fr 1fr;
  }
  .head-right .phone,
  .online {
    display: none;
  }
  .lead-form {
    grid-template-columns: 1fr;
  }
  .lead-form .full,
  .lead-form .submit {
    grid-column: auto;
  }
  .trustbar .grow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    padding: 16px 20px;
  }
  .t-item {
    font-size: 13px;
    gap: 8px;
  }
  .t-item i {
    font-size: 18px;
  }
}
.grid-objects .object-item {
  opacity: 1;
}

.article-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  transition: transform box-shadow;
  cursor: pointer;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 114, 114, 0.12);
}

.card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.card-image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}
.card-image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.card-image-placeholder .img-icon {
  position: relative;
  z-index: 1;
  font-size: 40px;
  opacity: 0.4;
}
.card-image-placeholder.img-abs {
  display: block;
  position: relative;
}
.card-image-placeholder.img-abs img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-featured .card-image-placeholder {
  aspect-ratio: 16/10;
}

.card-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 1;
}

.article-card .card-body {
  padding: 20px 22px 24px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.card-date {
  font-size: 12px;
  color: var(--brand-text-muted);
  font-weight: 500;
}

.card-cat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-text);
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.card-featured .card-title {
  font-size: 22px;
  line-height: 1.3;
}

.card-excerpt {
  font-size: 14px;
  color: var(--brand-text-subtle);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
}
.card-read-more::after {
  content: "→";
}
.card-read-more:visited {
  color: var(--brand-primary);
}

.home-articles-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1024px) {
  .home-articles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .home-articles-grid .card-featured {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .home-articles-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-articles-grid .card-featured {
    grid-column: auto;
  }
}
@media (max-width: 480px) {
  .home-articles-grid {
    gap: 12px;
  }
}

.promo-strip {
  background: var(--brand-primary);
  padding: 40px 0;
  margin-top: 0;
}
.promo-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.promo-text h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.promo-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.promo-cta {
  padding: 14px 32px;
  background: var(--brand-accent);
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.promo-cta:hover {
  background: var(--brand-accent-light);
}

.featured-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.featured-card:hover {
  box-shadow: 0 8px 28px rgba(13, 114, 114, 0.1);
}

.featured-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #073d3d 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.featured-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.featured-img-wrap span {
  position: relative;
  font-size: 52px;
  opacity: 0.35;
}

.featured-img-wrap.img-abs {
  position: relative;
  display: block;
}
.featured-img-wrap.img-abs img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--brand-accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.featured-body {
  padding: 24px 28px 28px;
}

.featured-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.featured-date {
  font-size: 13px;
  color: var(--brand-text-muted);
  font-weight: 500;
}

.featured-views {
  font-size: 13px;
  color: var(--brand-text-muted);
}

.featured-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-text);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.featured-excerpt {
  font-size: 14px;
  color: var(--brand-text-subtle);
  line-height: 1.65;
}

.featured-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 10px 20px;
  background: var(--brand-primary);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}
.featured-read:hover {
  background: var(--brand-primary-dark);
  color: white !important;
}
.featured-read::after {
  content: "→";
}
.featured-read:visited {
  color: white !important;
}

.recent-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recent-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: white;
  border: 1px solid var(--brand-border);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color box-shadow;
}
.recent-item:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 4px 12px rgba(13, 114, 114, 0.08);
}

.recent-thumb {
  width: 76px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #073d3d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0.85;
  overflow: hidden;
}

.recent-info {
  flex: 1;
  min-width: 0;
}

.recent-date {
  font-size: 11px;
  color: var(--brand-text-muted);
  margin-bottom: 5px;
  font-weight: 500;
}

.recent-title,
.recent-title a {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-cat {
  font-size: 11px;
  color: var(--brand-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 5px;
}

.home-section {
  padding: 72px 0;
  background: var(--brand-bg);
}

.blog-hero {
  background: white;
  padding: 40px 0 0;
  border-bottom: 1px solid var(--brand-border);
  margin-bottom: 40px;
}

.blog-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 0;
}

.blog-hero-sub {
  font-size: 15px;
  color: var(--brand-text-subtle);
  margin-bottom: 28px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 520px;
  width: 100%;
  margin-bottom: 32px;
  border: 2px solid var(--brand-border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.search-bar:focus-within {
  border-color: var(--brand-primary);
}
.search-bar .search-input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--brand-text);
  background: white;
  margin-bottom: 0;
}
.search-bar .search-input::placeholder {
  color: var(--brand-text-muted);
}
.search-bar .search-btn {
  padding: 12px 20px;
  background: var(--brand-primary);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}
.search-bar .search-btn:hover {
  background: var(--brand-primary-dark);
}

.cat-tabs {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--brand-border);
  width: 100%;
  max-width: 860px;
  overflow-x: auto;
}

.cat-tab {
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-text-subtle);
  cursor: pointer;
  border: none;
  background: transparent;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  font-family: var(--font-body);
  margin-bottom: -1px;
}
.cat-tab:hover {
  color: var(--brand-primary);
}
.cat-tab.active {
  color: var(--brand-primary);
  border-bottom-color: var(--brand-primary);
  font-weight: 700;
}

.blog-featured-row {
  margin-bottom: 48px;
}

.blog-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.blog-grid-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-text);
}

.article-count {
  font-size: 13px;
  color: var(--brand-text-muted);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.articles-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 575.98px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 40px 0;
}
.pagination .page-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-text);
  cursor: pointer;
  background: white;
  transition: all 0.2s;
}
.pagination .page-btn:hover, .pagination .page-btn.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
}
.pagination .page-btn.prev, .pagination .page-btn.next {
  font-size: 16px;
}

.article-layout {
  padding: 36px 0 24px;
}

.wp-block-heading + .rank-math-block {
  margin-top: 20px;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.article-content-wrap {
  background: white;
  border-radius: 6px;
  border: 1px solid var(--brand-border);
  overflow: hidden;
}

.article-hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #073d3d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  opacity: 0.9;
  position: relative;
  overflow: hidden;
}
.article-hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.article-hero-img span {
  position: relative;
  z-index: 1;
  opacity: 0.4;
}
.article-hero-img.img-abs {
  position: relative;
  display: block;
}
.article-hero-img.img-abs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body-wrap {
  padding: 32px 40px 40px;
}

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--brand-border);
}
@media (max-width: 575.98px) {
  .article-meta-row {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}

.article-cat-badge {
  padding: 5px 12px;
  background: rgba(13, 114, 114, 0.08);
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}

.article-date-meta {
  font-size: 13px;
  color: var(--brand-text-muted);
}

.article-views {
  font-size: 13px;
  color: var(--brand-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-author {
  font-size: 13px;
  color: var(--brand-text-subtle);
}
.article-author a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
}

.article-highlight {
  margin: 28px 0;
  padding: 20px 24px;
  background: rgba(13, 114, 114, 0.06);
  border-left: 4px solid var(--brand-primary);
  border-radius: 0 4px 4px 0;
}
.article-highlight p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-text);
  line-height: 1.6;
}

.article-footer {
  padding: 24px 40px;
  border-top: 1px solid var(--brand-border);
  background: var(--brand-page-bg);
}

.subscribe-block {
  margin: 24px 40px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 575.98px) {
  .subscribe-block {
    margin: 0;
    flex-wrap: wrap;
  }
}
.subscribe-text h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.subscribe-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form {
  display: flex;
  gap: 8px;
  min-width: 320px;
}
.subscribe-form .subscribe-input {
  flex: 1;
  padding: 11px 16px;
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  margin: 0;
}
.subscribe-form .subscribe-submit {
  padding: 11px 20px;
  background: var(--brand-accent);
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.subscribe-form .subscribe-submit:hover {
  background: var(--brand-accent-light);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 70px;
}

.sidebar-block {
  background: white;
  border: 1px solid var(--brand-border);
  border-radius: 6px;
  overflow: hidden;
}
.sidebar-block > p:empty {
  display: none;
}

.sidebar-block-title {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-text);
  border-bottom: 1px solid var(--brand-border);
  letter-spacing: -0.01em;
}

.top-articles-list {
  padding: 12px 0;
  line-height: 1;
}

.top-article-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.15s;
}
.top-article-item:hover {
  background: rgba(13, 114, 114, 0.04);
}

.top-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: rgba(13, 114, 114, 0.15);
  line-height: 1;
  min-width: 24px;
  margin-top: 2px;
}

.top-article-title a {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-primary);
  line-height: 1.4;
}

.top-article-date {
  font-size: 11px;
  color: var(--brand-text-muted);
  margin-top: 4px;
}

.cat-list {
  padding: 8px 0;
}

.cat-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid var(--brand-border);
}
.cat-list-item:last-child {
  border-bottom: none;
}
.cat-list-item:hover {
  background: rgba(13, 114, 114, 0.04);
}

.cat-list-name {
  font-size: 14px;
  color: var(--brand-text);
  font-weight: 500;
}
.cat-list-name:hover {
  color: var(--brand-primary);
}

.cat-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-text-muted);
  background: var(--brand-page-bg);
  padding: 2px 8px;
  border-radius: 10px;
}

.sidebar-cta {
  padding: 24px 20px;
  text-align: center;
  background: linear-gradient(160deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
}
.sidebar-cta h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.3;
}
.sidebar-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
  line-height: 1.5;
}

.sidebar-cta-btn,
a.sidebar-cta-btn {
  display: block;
  padding: 12px 20px;
  background: var(--brand-accent);
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.sidebar-cta-btn:hover,
a.sidebar-cta-btn:hover {
  background: var(--brand-accent-light);
  color: white !important;
}
.sidebar-cta-btn:visited,
a.sidebar-cta-btn:visited {
  color: white;
}

.single .kk-star-ratings .kksr-muted {
  display: none;
  opacity: 0;
}

.related-section {
  padding: 48px 0;
  border-top: 1px solid var(--brand-border);
  background: white;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}