/* ============================================================
   Fizioteka — custom stylesheet (faithful rebuild of the Divi site)
   Palette:  gold #e2c34f · charcoal #565656 · ink #072032 · text #666
   Fonts:    Lato (headings/nav) · Open Sans (body) · Poppins (page copy)
   ============================================================ */

:root {
  --gold: #e2c34f;
  --gold-dark: #d1b03d;
  --charcoal: #565656;
  --charcoal-dark: #4a4a4a;
  --ink: #072032;
  --text: #666;
  --white: #fff;
  --header-h: 104px;
  --container: 1080px;
  --radius: 6px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; }
a:hover { text-decoration: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

.container { width: 90%; max-width: var(--container); margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  border-radius: var(--radius);
  transition: transform .25s, background .25s, color .25s;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: #fff; }
.btn--white { background: #fff; color: var(--gold); }
.btn--white:hover { background: #efefef; transform: translateY(-2px); }
/* full-width gold bar used at the bottom of service pages */
.btn-wide {
  display: block;
  width: 100%;
  background: var(--gold);
  color: #fff;
  text-align: center;
  padding: 20px;
  font-weight: 700;
  text-decoration: underline;
  border-radius: var(--radius);
  transition: background .25s;
}
.btn-wide:hover { background: var(--gold-dark); color: #fff; }

/* ---------- Sections ---------- */
.section { padding: 60px 0; }
.section--light { background: var(--white); }
.section--dark { background: var(--charcoal); color: #d7d7d7; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section-title {
  text-align: center;
  font-size: 48px;
  letter-spacing: -1px;
  margin-bottom: 44px;
  color: var(--ink);
}
.section--dark .section-title { color: #fff; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: var(--charcoal);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}
.brand-logo { max-width: 200px; height: auto; display: block; }

/* nav */
.site-nav > .nav-menu { list-style: none; display: flex; margin: 0; padding: 0; gap: 4px; }
.site-nav .nav-menu li { position: relative; }
.site-nav .nav-menu a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 17px;
  white-space: nowrap;
}
.site-nav > .nav-menu > li > a:hover,
.site-nav > .nav-menu > li.active > a { color: var(--gold); }
.caret { font-size: .75em; }

/* dropdowns — white panels like the live site */
.site-nav .sub-menu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 240px;
  background: #fff;
  list-style: none;
  margin: 0; padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: .2s;
  z-index: 10;
}
.site-nav li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.site-nav .sub-menu a { color: #000; font-size: 17px; font-weight: 500; padding: 10px 24px; }
.site-nav .sub-menu a:hover { color: var(--gold-dark); }
.site-nav .sub-menu .caret { float: right; }
/* third level flies out to the left (parent panel sits near the right viewport edge) */
.site-nav .sub-menu .sub-menu { top: -20px; left: auto; right: 100%; }

/* mobile hamburger (gold glyph, live style) */
.hamburger { display: none; background: none; border: 0; cursor: pointer; color: var(--gold); font-size: 28px; line-height: 1; padding: 4px 8px; }

/* ============================================================
   Mobile full-screen overlay menu (replicates live custom widget)
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  left: -100%;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transition: left .3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
  font-family: "Lato", sans-serif;
}
.mobile-menu.open { left: 0; }
.mobile-menu .overlay-header { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu .brand-name { font-size: 1.25rem; font-weight: 700; color: #222; }
.mobile-menu .close-btn { font-size: 1.5rem; cursor: pointer; background: none; border: 0; color: #222; padding: 0; }
.mobile-menu .menu { margin-top: 2.5rem; flex: 0 0 auto; }
.mobile-menu .menu-item {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1.125rem; font-weight: 500; padding: .875rem 0;
  cursor: pointer; color: #222;
}
.mobile-menu a.menu-item { display: block; }
.mobile-menu .submenu { display: none; padding-left: .75rem; }
.mobile-menu .submenu.open { display: block; }
.mobile-menu .submenu a { display: block; font-size: 1.125rem; font-weight: 500; padding: .875rem 0; color: #222; }
.mobile-menu .get-started {
  background: var(--gold); color: #000;
  font-size: 1rem; font-weight: 600;
  padding: .875rem; border-radius: 6px;
  width: 100%; margin: 2rem 0;
  text-align: center; display: inline-block;
}
.mobile-menu .socials { text-align: center; font-size: .875rem; color: #aaa; padding-bottom: .625rem; }
.mobile-menu .socials a { margin: 0 .75rem; color: #aaa; }

/* ============================================================
   Hero slider
   ============================================================ */
.hero { position: relative; height: 700px; overflow: hidden; }
.hero-track { display: flex; height: 100%; transition: transform .7s ease-in-out; }
.hero-slide { position: relative; flex: 0 0 100%; height: 100%; }
.hero-slide > img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.62);
  display: flex; align-items: center; justify-content: center;
  padding: 0 16px; text-align: center;
}
.hero-content { max-width: 720px; }
.hero-content h1 {
  color: var(--gold);
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
}
.hero-content p { color: #fff; font-size: 20px; margin: 16px 0 0; font-family: "Open Sans", sans-serif; }
.hero-actions { margin-top: 26px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(40,40,40,.5); color: #fff; border: 0;
  width: 44px; height: 44px; border-radius: 50%; font-size: 18px; cursor: pointer; z-index: 5;
}
.hero-arrow:hover { background: rgba(40,40,40,.8); }
.hero-arrow.prev { left: 16px; } .hero-arrow.next { right: 16px; }
.hero-dots { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 5; }
.hero-dots button { width: 12px; height: 12px; border-radius: 50%; border: 0; background: #fff; opacity: .5; cursor: pointer; }
.hero-dots button.active { opacity: 1; }

/* ============================================================
   Home — pricing cards (Promotivna ponuda)
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.price-card { border-radius: 10px; padding: 30px 26px; box-shadow: 0 8px 24px rgba(0,0,0,.08); background: #fff; display: flex; flex-direction: column; }
.price-card--gold { background: var(--gold); color: #fff; }
.price-card--gold h3, .price-card--gold .price { color: #fff; }
.price-card--dark { background: var(--charcoal); color: #eee; }
.price-card--dark h3, .price-card--dark .price { color: #fff; }
.price-card h3 { font-size: 22px; }
.price-card .desc { font-size: 14px; margin-bottom: 14px; }
.price-card .price { font-size: 40px; font-weight: 900; font-family: "Lato", sans-serif; margin: 10px 0 22px; }
.price-card .card-actions { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.price-card .btn { padding: 10px 18px; font-size: 14px; }

/* ============================================================
   Generic cards carousel (promo packages, Google reviews)
   ============================================================ */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; align-items: stretch; transition: transform .5s ease; }
.carousel-cell { flex: 0 0 33.3333%; min-width: 0; padding: 12px 13px; display: flex; }
.carousel-cell > * { flex: 1; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #b9b9b9; font-size: 30px; cursor: pointer; padding: 4px;
}
.carousel-arrow:hover { color: #666; }
.carousel-arrow.prev { left: -32px; }
.carousel-arrow.next { right: -32px; }
.carousel-dots { text-align: center; margin-top: 12px; }
.carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; background: #ccc;
  margin: 0 4px; padding: 0; cursor: pointer;
}
.carousel-dots button.active { background: var(--gold); }
@media (max-width: 1180px) {
  .carousel-arrow.prev { left: -14px; }
  .carousel-arrow.next { right: -14px; }
}
@media (max-width: 980px) { .carousel-cell { flex-basis: 50%; } }
@media (max-width: 640px) { .carousel-cell { flex-basis: 100%; } }

/* ============================================================
   Google reviews (static Trustindex-style carousel)
   ============================================================ */
.reviews-summary { text-align: center; margin-bottom: 10px; }
.reviews-summary .rs-title { font-family: "Open Sans", sans-serif; font-weight: 800; font-size: 21px; letter-spacing: .5px; color: #222; margin: 0; }
.reviews-summary .rs-stars { color: #f8af0d; font-size: 30px; line-height: 1.15; letter-spacing: 3px; }
.reviews-summary .rs-count { color: #555; font-size: 14px; margin: 2px 0 6px; }
.reviews-summary .rs-google { font-family: Arial, Helvetica, sans-serif; font-weight: 700; font-size: 26px; margin: 0; line-height: 1; }
.rs-google span:nth-child(1) { color: #4285F4; }
.rs-google span:nth-child(2) { color: #EA4335; }
.rs-google span:nth-child(3) { color: #FBBC05; }
.rs-google span:nth-child(4) { color: #4285F4; }
.rs-google span:nth-child(5) { color: #34A853; }
.rs-google span:nth-child(6) { color: #EA4335; }
.review-card { background: #f5f5f5; border-radius: 8px; padding: 20px 22px; display: flex; flex-direction: column; text-align: left; }
.rev-head { display: flex; align-items: center; gap: 12px; }
.rev-avatar { width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto; }
.rev-who { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.rev-who strong { font-family: "Open Sans", sans-serif; font-size: 15px; color: #111; }
.rev-who span { font-size: 13px; color: #999; }
.rev-g { flex: 0 0 auto; }
.rev-stars { display: flex; align-items: center; gap: 7px; color: #f8af0d; font-size: 18px; letter-spacing: 2px; margin: 10px 0 8px; }
.rev-text { font-size: 14px; color: #333; line-height: 1.55; margin: 0; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.review-card.expanded .rev-text { display: block; -webkit-line-clamp: unset; }
.rev-more { background: none; border: 0; color: #999; font-size: 13px; padding: 0; margin-top: 8px; cursor: pointer; text-align: left; }
.rev-more:hover { color: #555; }

/* ============================================================
   Floating contact buttons (bottom-right, replaces Buttonizer)
   ============================================================ */
.fab { position: fixed; right: 5%; bottom: 5%; z-index: 900; display: flex; flex-direction: column; align-items: flex-end; }
.fab-actions {
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px; margin-bottom: 16px;
  opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .25s, transform .25s;
}
.fab.open .fab-actions { opacity: 1; transform: none; pointer-events: auto; }
.fab-item { display: flex; align-items: center; gap: 12px; }
.fab-label {
  background: var(--gold); color: #fff; font-family: "Open Sans", sans-serif; font-weight: 700;
  font-size: 14px; padding: 8px 16px; border-radius: 6px; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.fab-btn {
  width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
  box-shadow: 0 4px 14px rgba(0,0,0,.18); transition: transform .15s;
}
.fab-item:hover .fab-btn { transform: scale(1.08); }
.fab-toggle {
  width: 56px; height: 56px; border-radius: 50%; border: 0; background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.25); transition: transform .25s;
}
.fab-toggle svg { transition: transform .25s; }
.fab.open .fab-toggle svg { transform: rotate(45deg); }
@media (max-width: 640px) {
  .fab { right: 16px; bottom: 16px; }
  .fab-toggle { width: 52px; height: 52px; }
}

/* team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 820px; margin: 0 auto; }
.team-grid img { border-radius: 6px; width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* partner logos — full colour, 5 per row (matches live) */
.partner-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 60px 40px; align-items: center; }
.partner-grid img { max-height: 80px; max-width: 160px; width: auto; margin: 0 auto; }

/* services icon grid */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 30px; text-align: center; }
.svc-item { color: #fff; }
.svc-item img, .svc-item .svc-icon { height: 74px; margin: 0 auto 18px; width: auto; }
.svc-item h3 { color: #fff; font-size: 22px; font-weight: 400; font-family: "Poppins", sans-serif; margin-bottom: 12px; }
.svc-item .svc-arrow { color: #fff; font-size: 22px; display: inline-block; transition: transform .2s; }
.svc-item:hover .svc-arrow { transform: translateX(6px); }

/* diagnoze grid */
.diag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.diag-card { display: block; color: var(--ink); }
.diag-card img { width: 100%; aspect-ratio: 16/11; object-fit: cover; border-radius: 4px; margin-bottom: 14px; }
.diag-card h3 { font-family: "Open Sans", sans-serif; font-size: 20px; color: #333; font-weight: 700; }
.diag-card:hover h3 { color: var(--gold-dark); }

/* ============================================================
   Service leaf page
   ============================================================ */
.service-page .service-top { display: grid; grid-template-columns: 2fr 3fr; gap: 40px; align-items: start; }
.service-page .service-top--noimg { grid-template-columns: 1fr; max-width: 860px; }
.service-title { color: var(--gold); font-family: "Poppins", sans-serif; font-size: 50px; font-weight: 700; }
.service-intro, .service-body { font-family: "Poppins", sans-serif; color: #666; font-size: 16px; }
.service-media img { border-radius: 16px; width: 100%; object-fit: cover; }
.service-body { margin: 34px 0; }
.service-page .btn-wide { margin-top: 30px; }

/* ============================================================
   Generic prose / content page
   ============================================================ */
.prose { font-family: "Poppins", sans-serif; color: #555; font-size: 16px; line-height: 1.8; }
.prose--narrow { max-width: 820px; margin: 0 auto; }
.prose-title { font-family: "Poppins", sans-serif; color: var(--gold); font-size: 46px; font-weight: 700; margin-bottom: 24px; }
.section--dark .prose { color: #d7d7d7; }
.prose h2 { font-size: 30px; margin: 32px 0 12px; color: var(--ink); }
.prose h3 { font-size: 22px; margin: 26px 0 10px; color: var(--ink); }
.section--dark .prose h2, .section--dark .prose h3 { color: #fff; }
.prose img { border-radius: 12px; margin: 20px 0; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--gold-dark); text-decoration: underline; }

/* ============================================================
   Hub grid (Fizikalne procedure / Manualne tehnike children)
   ============================================================ */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.hub-card {
  background: var(--charcoal-dark); border-radius: 10px; overflow: hidden;
  color: #fff; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.hub-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.3); }
.hub-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.hub-card h3 { color: #fff; font-family: "Poppins", sans-serif; font-weight: 500; font-size: 20px; margin: 20px 22px 8px; }
.hub-card .svc-arrow { color: var(--gold); margin: 0 22px 20px; font-size: 22px; }

/* service hub link list (Fizikalne procedure / Manualne tehnike) */
.link-list { list-style: none; padding: 0; }
.link-list li { margin-bottom: 8px; }
.link-list a { color: var(--gold-dark); font-weight: 600; font-size: 18px; text-decoration: underline; }
.link-list a:hover { color: var(--gold); }

/* ============================================================
   Cjenik (price list)
   ============================================================ */
.pricelist { max-width: 820px; margin: 0 auto; }
.pricelist-group { text-transform: uppercase; color: #999; letter-spacing: 1px; font-family: "Open Sans", sans-serif; font-weight: 700; font-size: 14px; margin: 26px 0 10px; }
.price-row {
  background: #fff; border-radius: 8px; margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.price-row summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 22px; cursor: pointer; list-style: none;
}
.price-row summary::-webkit-details-marker { display: none; }
.price-row .pr-name { font-family: "Open Sans", sans-serif; font-weight: 700; color: #333; font-size: 15px; }
.price-row .pr-name::before { content: "+"; color: var(--gold); font-weight: 700; margin-right: 12px; }
.price-row[open] .pr-name::before { content: "−"; }
.price-row .pr-price { color: var(--gold-dark); font-weight: 700; white-space: nowrap; }
.price-row .pr-body { padding: 0 22px 18px 47px; }
.price-row .pr-body p { color: #666; font-size: 14px; margin: 0 0 14px; }
.price-row .pr-body .btn { padding: 9px 18px; font-size: 13px; }
.pricelist-notes { margin-top: 26px; color: #999; font-size: 14px; }
.pricelist-notes p { margin: 6px 0; }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-page { max-width: 780px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 38px; }
.faq-header h1 {
  font-family: "Lato", sans-serif; font-weight: 900; font-size: 42px;
  color: var(--ink); margin: 6px 0 12px;
}
.faq-lead { color: #888; font-size: 16px; max-width: 480px; margin: 0 auto; }

.faq-item {
  background: #fff; border-radius: 10px; margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 20px 24px; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 17px; color: var(--ink);
}
.faq-q:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 10px; }
/* gold disc toggle — same gesture as the floating contact button */
.faq-q .faq-ic {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold); color: #fff; font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s;
}
.faq-item.open .faq-q { color: var(--gold-dark); }
.faq-item.open .faq-q .faq-ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 74px 22px 24px; color: #666; font-family: "Poppins", sans-serif; line-height: 1.7; }
.faq-a-inner p { margin: 0 0 10px; }
.faq-item.open .faq-a { max-height: 600px; }

/* "still have questions" panel */
.faq-cta {
  background: var(--charcoal); border-radius: 12px;
  text-align: center; padding: 44px 30px; margin-top: 44px;
}
.faq-cta h2 { color: #fff; font-family: "Lato", sans-serif; font-weight: 700; font-size: 26px; margin: 0 0 8px; }
.faq-cta p { color: #ccc; margin: 0 0 24px; }
.faq-cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
  .faq-q .faq-ic, .faq-a, .faq-item { transition: none; }
}
@media (max-width: 640px) {
  .faq-header h1 { font-size: 32px; }
  .faq-q { padding: 16px 18px; font-size: 16px; }
  .faq-a-inner { padding: 0 18px 18px; }
}

/* ============================================================
   Team (Stručni tim)
   ============================================================ */
.team-intro { max-width: 820px; margin: 0 auto 46px; font-family: "Poppins", sans-serif; color: #666; }
.person { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; margin-bottom: 54px; }
.person-photo img { width: 100%; border-radius: 10px; object-fit: cover; }
.person-name { color: var(--gold); font-family: "Poppins", sans-serif; font-size: 30px; font-weight: 600; margin-bottom: 2px; }
.person-role { font-style: italic; color: #888; margin-bottom: 16px; }
.person-bio { font-family: "Poppins", sans-serif; color: #666; font-size: 15px; line-height: 1.8; }
.team-section-title { color: var(--gold); font-family: "Poppins", sans-serif; font-size: 40px; margin: 20px 0 40px; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid a { display: block; overflow: hidden; border-radius: 8px; }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .3s; }
.gallery-grid a:hover img { transform: scale(1.05); }

/* ============================================================
   Blog / diagnoze articles
   ============================================================ */
.article { max-width: 820px; margin: 0 auto; font-family: "Poppins", sans-serif; }
.article-title { color: var(--ink); font-size: 40px; margin-bottom: 20px; }
.article-hero { width: 100%; border-radius: 12px; margin-bottom: 26px; }
.article-body { color: #555; font-size: 16px; line-height: 1.85; }
.article-body h2 { font-size: 26px; margin: 30px 0 12px; }
.article-body img { border-radius: 10px; margin: 20px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

@media (max-width: 980px) {
  .person { grid-template-columns: 1fr; }
  .gallery-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-card { background: #fff; max-width: 900px; margin: 0 auto; padding: 50px 60px; border-radius: 4px; }
.contact-eyebrow { letter-spacing: 2px; text-transform: uppercase; font-size: 13px; color: #888; font-weight: 700; font-family: "Open Sans", sans-serif; }
.contact-card h1 { font-size: 52px; color: var(--ink); margin: 6px 0 30px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 30px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form label { display: block; font-size: 15px; color: #555; margin-bottom: 6px; font-family: "Open Sans", sans-serif; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 0; border-bottom: 1px solid #cfcfcf; padding: 8px 2px;
  font-family: "Open Sans", sans-serif; font-size: 15px; background: transparent; color: #333;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 0; border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-submit-row { grid-column: 1 / -1; display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.contact-captcha { display: flex; align-items: center; gap: 8px; color: #555; }
.contact-captcha input { width: 60px; border-bottom: 1px solid #cfcfcf; }
.form-note { grid-column: 1/-1; padding: 12px 16px; border-radius: 4px; font-size: 14px; }
.form-note.ok { background: #e8f6ec; color: #1c7a3e; }
.form-note.err { background: #fdeaea; color: #b23; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--charcoal); color: #cfcfcf; padding-top: 40px; font-size: 15px; }
.site-footer a { color: #cfcfcf; }
.site-footer a:hover { color: var(--gold); }
.site-footer h4 { color: #fff; font-family: "Open Sans", sans-serif; font-size: 18px; margin-bottom: 14px; }
.footer-topbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.15); flex-wrap: wrap; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer-nav a { font-weight: 700; font-family: "Lato", sans-serif; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.08); color: #fff;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1.2fr; gap: 40px; padding: 40px 0; }
.footer-contact, .footer-links { list-style: none; padding: 0; margin: 0 0 24px; }
.footer-contact li, .footer-links li { margin-bottom: 8px; }
.footer-contact a { text-decoration: underline; }
.footer-pay { display: flex; gap: 10px; align-items: center; }
.pay-badge {
  background: #fff; border-radius: 6px; height: 36px; min-width: 56px;
  display: flex; align-items: center; justify-content: center; padding: 0 10px;
}
.pay-badge img { height: 20px; width: auto; display: block; }
.footer-logo { height: 60px; width: auto; margin-bottom: 12px; }
.footer-map iframe { border-radius: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 16px 0; text-align: center; font-size: 13px; color: #bbb; }
.footer-bottom p { margin: 0 0 2px; }
.footer-bottom a { text-decoration: underline; }

/* offset the fixed header (all pages — header is always solid) */
#main { padding-top: var(--header-h); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hamburger { display: block; }
  .site-nav { display: none; }
  :root { --header-h: 96px; }
  .brand-logo { max-width: none; height: 80px; width: auto; }
  .pricing-grid, .team-grid, .diag-grid { grid-template-columns: 1fr; }
  .svc-grid, .partner-grid, .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .service-page .service-top { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-card { padding: 34px 22px; }
  .section-title { font-size: 34px; }
}
