/* Lider Depolama — theme tokens from live site (Inter + brand hex) */
:root {
  --accent: #ff7063;
  --navy: #1e3446;
  --teal: #177265;
  --body: #626b72;
  --soft: #f3f6f6;
  --white: #ffffff;
  --line: rgba(30, 52, 70, 0.08);
  --container: 1140px;
  --gutter: 15px;
  --font: "Inter", sans-serif;
  --radius: 0;
  --shadow: 0 2px 20px rgba(30, 52, 70, 0.08);
  /* Fibonacci spacing scale (5px base) */
  --fib-1: 5px;
  --fib-2: 8px;
  --fib-3: 13px;
  --fib-4: 21px;
  --fib-5: 34px;
  --fib-6: 55px;
  --fib-7: 89px;
  --fib-8: 144px;
}

@media (min-width: 1400px) {
  :root { --container: 1320px; }
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--accent); }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-padding { padding: 100px 0; }
.pt-0 { padding-top: 0 !important; }
.pt-120 { padding-top: 120px; }

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.theme-btn:hover { background: var(--teal); }

.page-wrapper { position: relative; overflow: hidden; }

/* ---- 00 Topbar (40px) ---- */
.topbar--compact {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
}
.topbar-compact__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.topbar-compact__links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.topbar-compact__links a:hover { color: var(--accent); }
.topbar-compact__sep {
  color: rgba(255, 255, 255, 0.28);
  font-size: 11px;
}
.topbar-compact__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.topbar-compact__phone svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.topbar-compact__phone:hover { color: var(--accent); }

/* ---- 01 Header (~78px nav) ---- */
.site-header {
  background: var(--white);
  position: relative;
  z-index: 100;
  box-shadow: 0 1px 0 var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.site-header__logo img { max-width: 160px; height: auto; }
.site-header__panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1;
}
.site-header__panel-top { display: none; }
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
}
.site-header__nav > li { position: relative; }
.site-header__nav > li > a {
  display: block;
  padding: 26px 18px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
}
.site-header__nav > li > a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-header__nav > li > a:hover,
.site-header__nav > li > a.is-active { color: var(--teal); }
.site-header__nav > li > a:hover::after,
.site-header__nav > li > a.is-active::after { transform: scaleX(1); }

.site-header__nav .sub-menu {
  position: absolute;
  left: 0;
  top: 110%;
  width: 235px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
}
.site-header__nav > li:hover > .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.site-header__nav .sub-menu a {
  display: block;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.site-header__nav .sub-menu a:hover { color: var(--teal); }

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 10px;
  background: var(--accent);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 22px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.site-header__cta:hover { background: var(--teal); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--navy);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 52, 70, 0.45);
  z-index: 90;
}
.nav-backdrop.is-open { display: block; }
.drawer-close { display: none; }

.mobile-header-cta {
  display: none;
  background: var(--navy);
  color: #fff;
  padding: 10px 15px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mobile-header-cta__text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}
.mobile-header-cta__text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.mobile-header-cta__btn {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 14px;
  text-transform: uppercase;
}

/* ---- Page hero (~380px) — canlı wpo-page-title hizası ---- */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  background: var(--navy) center top / cover no-repeat;
  color: #fff;
  z-index: 1;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, #1e3446 45%, transparent 65%);
  opacity: 0.95;
}
.page-hero__vectors {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.page-hero__vector {
  position: absolute;
  left: -125px;
  top: 0;
  width: 200px;
  height: 115%;
  background: #177265;
  opacity: 0.12;
  transform: rotate(345deg);
}
.page-hero__vector--2 { left: -125px; top: -100px; transform: rotate(20deg); }
.page-hero__vector--3 { left: -155px; top: 0; transform: rotate(348deg); }
.page-hero__vector--4 { left: -155px; top: -100px; transform: rotate(17deg); }
.page-hero__vector--5 { left: -185px; transform: rotate(351deg); }
.page-hero__vector--6 { left: -185px; top: -100px; transform: rotate(14deg); }
.page-hero__vector--7 { left: -205px; transform: rotate(354deg); }
.page-hero__vector--8 { left: -215px; top: -100px; transform: rotate(11deg); }
.page-hero__watermark {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
  color: #fff;
  line-height: 1;
}
.page-hero__watermark strong {
  display: block;
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.85);
}
.page-hero__watermark span {
  display: block;
  margin-top: 8px;
  font-size: clamp(10px, 1.2vw, 14px);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  -webkit-text-stroke: 0;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero__inner {
  position: relative;
  width: 100%;
  max-width: 820px;
  padding: 90px 0 70px;
  text-align: left;
}
.page-hero h1 {
  color: #fff;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}
.page-hero__lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 18px;
  max-width: 640px;
}
.page-hero__crumb {
  margin-top: 8px;
}
.page-hero__crumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.page-hero__crumb li {
  position: relative;
  display: inline-block;
  padding: 0 20px 0 5px;
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  line-height: 34px;
}
.page-hero__crumb li:last-child {
  padding-right: 0;
}
.page-hero__crumb li:not(:last-child)::after {
  content: "//";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 700;
}
.page-hero__crumb a {
  color: #fff;
  text-decoration: none;
}
.page-hero__crumb a:hover { color: var(--accent); }
.page-hero__crumb li:last-child span {
  color: #cbd4fd;
}

/* Sidebar contact — canlı wpo-contact-widget */
.sidebar-contact {
  position: relative;
  background: var(--navy) center / cover no-repeat;
  color: #fff;
  padding: 56px 30px;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}
.sidebar-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 112, 99, 0.82);
  z-index: -1;
}
.sidebar-contact::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -75%;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: -1;
}
.sidebar-contact > * { position: relative; z-index: 1; }
.sidebar-contact__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 16px;
}
.sidebar-contact__text {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}
.sidebar-contact__call { margin-bottom: 28px; }
.sidebar-contact__label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #fff;
}
.sidebar-contact__phone {
  font-size: 22px;
  font-weight: 700;
  color: #fff !important;
  display: block;
  text-decoration: none;
}
.sidebar-contact .theme-btn {
  background: var(--navy);
  width: 100%;
}
.sidebar-contact .theme-btn:hover { background: #fff; color: var(--navy); }
.content-area { padding: 100px 0; }
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
  gap: 40px;
  align-items: start;
}
.content-layout--full { grid-template-columns: 1fr; }
.content-layout--detail {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
}
.content-sidebar {
  align-self: start;
  min-width: 0;
}
@media (min-width: 992px) {
  .content-layout--detail .content-sidebar {
    position: sticky;
    top: 24px;
  }
}
.content-main h2, .content-main h3 {
  font-size: 28px;
  margin: 28px 0 14px;
}
.content-main h2:first-child,
.content-main h3:first-child { margin-top: 0; }
.content-main p { margin-bottom: 16px; }
.content-main ol {
  list-style: decimal;
  padding-left: 22px;
  margin: 0 0 20px;
}
.content-main ol li { margin-bottom: 8px; }
.content-main a { font-weight: 600; }
.content-main__img { margin-bottom: 28px; }
.content-main__img img { width: 100%; max-width: 420px; }

.why-choose {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  background: var(--teal);
  color: #fff;
  padding: 36px 32px;
  margin: 36px 0;
}
.why-choose h2 {
  color: #fff;
  font-size: 24px;
  margin: 0 0 12px;
}
.why-choose p { color: rgba(255, 255, 255, 0.9); margin: 0 0 10px; }
.why-choose__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
.why-choose__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.why-choose__item i {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.why-choose__item i svg { width: 12px; height: 12px; color: #fff; }

.sidebar-widget {
  background: var(--soft);
  padding: 28px 24px;
  margin-bottom: 24px;
}
.sidebar-widget__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}
.sidebar-widget ul li { margin-bottom: 10px; }
.sidebar-widget ul a {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}
.sidebar-widget ul a:hover { color: var(--accent); }

/* Listing cards */
.content-page__intro { margin-bottom: 36px; }
.content-page__intro h2 { font-size: 32px; margin-bottom: 14px; }
.content-page__lead p { margin-bottom: 14px; }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.blog-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card__image {
  display: block;
  min-height: 200px;
  background: var(--soft);
  overflow: hidden;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}
.blog-card__body { padding: 24px 26px; }
.blog-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.blog-card__title {
  font-size: 22px;
  margin: 0 0 10px;
}
.blog-card__title a { color: var(--navy); }
.blog-card__title a:hover { color: var(--accent); }
.blog-card__excerpt {
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--body);
}
.blog-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.blog-card__link:hover { color: var(--accent); }

.content-page__hero {
  margin-bottom: 28px;
}
.content-page__hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
.content-page__article h2 { font-size: 26px; margin: 28px 0 12px; }
.content-page__article p { margin-bottom: 16px; }

/* Contact */
.contact-map {
  width: 100%;
  height: 450px;
  background: var(--soft);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 40px;
  align-items: start;
}
.contact-form-area h2 { font-size: 32px; margin-bottom: 8px; }
.contact-form-area > p { margin-bottom: 28px; }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form .fullwidth { grid-column: 1 / -1; }
.contact-form .form-control {
  width: 100%;
  border: 1px solid #e5e8eb;
  background: var(--soft);
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
}
.contact-form .form-control:focus { border-color: var(--teal); background: #fff; }
.contact-form textarea.form-control { min-height: 140px; resize: vertical; }
.contact-form .submit-area { grid-column: 1 / -1; }
.office-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.office-info-item:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.office-info-icon {
  width: 54px;
  height: 54px;
  background: rgba(23, 114, 101, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.office-info-icon svg { width: 22px; height: 22px; }
.office-info-text h2 { font-size: 16px; margin-bottom: 4px; }
.office-info-text p { margin: 0; font-size: 14px; }

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 36px;
  font-size: 15px;
}
.pricing-table th,
.pricing-table td {
  border: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
}
.pricing-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}
.pricing-table tr:nth-child(even) td { background: var(--soft); }
.pricing-note {
  background: var(--soft);
  padding: 20px 22px;
  margin-top: 20px;
  border-left: 3px solid var(--accent);
}

/* FAQ */
.faq-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.faq-head span {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 14px;
}
.faq-head h2 { font-size: 36px; margin-bottom: 12px; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.faq-item {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0;
}
.faq-item__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.faq-item__q::after {
  content: "+";
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
.faq-item.is-open .faq-item__q::after { content: "–"; }
.faq-item__a {
  display: none;
  padding: 0 22px 20px;
  color: var(--body);
  font-size: 15px;
}
.faq-item.is-open .faq-item__a { display: block; }
.faq-cta { text-align: center; margin-top: 40px; }

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 22px; margin: 28px 0 10px; }
.legal-content p { margin-bottom: 14px; }

/* ---- Footer (see assets/css/footer.css) ---- */

/* Float CTAs */
.float-cta {
  position: fixed;
  left: 18px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-cta a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.float-cta__phone { background: #e53935; }
.float-cta__wa { background: #25d366; }
.float-cta svg { width: 22px; height: 22px; }

.back-top {
  position: fixed;
  right: 18px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 112, 99, 0.9);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}
.back-top.is-visible { display: flex; }
.back-top svg { width: 18px; height: 18px; }

/* Desktop-first: mobile overrides come in responsive pass via styles + main */
@media (max-width: 1199px) {
  .site-header__nav > li > a { padding: 24px 14px; font-size: 15px; }
  .site-header__nav > li > a::after { left: 14px; right: 14px; }
  .site-header__cta { padding: 12px 16px; font-size: 12px; }
  .content-layout:not(.content-layout--detail),
  .contact-grid { grid-template-columns: minmax(0, 1fr) 300px; gap: 28px; }
  .content-layout--detail {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: 28px;
  }
}

@media (max-width: 991px) {
  .topbar-compact__links { display: none; }
  .topbar-compact { justify-content: center; min-height: 38px; }
  .site-header__inner {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .menu-toggle {
    display: flex;
    background: var(--accent);
    border-radius: 4px;
    width: 44px;
    height: 44px;
  }
  .menu-toggle span { background: #fff; width: 18px; }
  .site-header__logo img { max-width: 140px; }
  .site-header__panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100dvh;
    background: var(--navy);
    z-index: 120;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .site-header.is-open .site-header__panel { transform: translateX(0); }
  .site-header__panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
  }
  .site-header__panel-top img {
    max-width: 140px;
    filter: brightness(0) invert(1);
  }
  .drawer-close {
    display: flex;
    margin-left: auto;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
  }
  .site-header__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 12px 0;
  }
  .site-header__nav > li > a {
    color: #fff;
    padding: 12px 8px;
  }
  .site-header__nav > li > a::after { display: none; }
  .site-header__nav .sub-menu {
    position: static;
    width: auto;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    padding: 0 0 8px 12px;
    display: none;
  }
  .site-header__nav .has-sub.is-open .sub-menu { display: block; }
  .site-header__nav .sub-menu a { color: rgba(255, 255, 255, 0.85); padding: 8px; }
  .site-header__cta {
    display: flex;
    width: 100%;
    margin: 12px 0 0;
  }
  .mobile-header-cta { display: flex; }
  .page-hero { min-height: 250px; }
  .page-hero h1 { font-size: 30px; line-height: 1.2; }
  .page-hero__inner { padding: 56px 0 44px; max-width: none; }
  .page-hero__watermark { display: none; }
  .page-hero__crumb ol { justify-content: flex-start; }
  .page-hero__crumb li { font-size: 15px; }
  .section-padding, .content-area { padding: 56px 0; }
  .content-layout:not(.content-layout--detail),
  .contact-grid { grid-template-columns: 1fr; }
  .content-layout--detail {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    gap: 24px;
  }
  .content-main__img img { margin-inline: auto; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card__image img { min-height: 180px; max-height: 220px; }
  .why-choose { grid-template-columns: 1fr; padding: 28px 22px; }
  .why-choose__checks { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-head h2 { font-size: 28px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-map { height: 320px; }
  .sidebar-contact { margin-top: 12px; }
}

@media (max-width: 767px) {
  .content-layout--detail {
    grid-template-columns: 1fr;
  }
  .page-hero h1 { font-size: 28px; }
  .content-main h2, .content-main h3 { font-size: 24px; }
  .pricing-table { font-size: 13px; }
  .pricing-table th, .pricing-table td { padding: 10px; }
  .float-cta { left: 12px; bottom: 18px; }
  .float-cta a { width: 46px; height: 46px; }
}
