@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Space+Grotesk:wght@300..700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Montserrat:ital,wght@0,100..550;1,100..550&display=swap');
:root {
  --primary: #0D2B4D;
  --primary-2: #0D2B4D;
  --accent: #FFC107;
  --accent-dark: #FFC107;
  --bg: #f7f6f8;
  --surface: #ffffff;
  --muted-surface: #efedf1;
  --text: #17191d;
  --muted: #626a73;
  --line: #d9dce2;
  --danger: #b83232;
  --shadow: 0 12px 28px rgba(6, 27, 51, 0.14);
  --container: min(1180px, calc(100% - 32px));
  --radius: 4px;
  --header-height: 78px;
  --font-primary: "Google Sans Flex", sans-serif;
  --color-blue: var(--primary);
  --color-yellow: var(--accent);
  --color-white: var(--surface);
  --color-text: var(--text);
  --color-text-light: var(--muted);
  --color-border: var(--line);
  --color-footer-bg: var(--primary);
  --radius-md: var(--radius);
  --radius-lg: var(--radius);
  font-family: "Google Sans Flex", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Google Sans Flex", sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}
main{
  margin-top: 50px;
}
img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font-family: inherit;
  font: inherit;
}

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

.section-pad {
  padding: 60px 0;
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  min-height: 58px;
  margin: 0 auto;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: auto;
  height: 50px;
  object-fit: contain;
}

.nav {
  display: none;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.nav a {
  color: #1e2937;
  padding: 21px 0 18px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  color: var(--primary);
  border-color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hotline {
  display: none;
  color: #10151c;
  font-size: 14px;
  font-weight: 500;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 9px 14px;
  color: #fff;
  background: var(--primary);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.menu-toggle,
.menu-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--primary);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle svg,
.menu-close svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.3;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background: rgba(6, 20, 36, 0);
  transition: background 0.28s ease;
}

.mobile-menu.is-open {
  pointer-events: auto;
  background: rgba(6, 20, 36, 0.48);
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(84vw, 340px);
  height: 100%;
  padding: 18px;
  background: #fff;
  box-shadow: -18px 0 42px rgba(6, 27, 51, 0.18);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu__head img {
  width: auto;
  height: 36px;
}

.mobile-nav {
  display: grid;
  gap: 4px;
  padding-top: 20px;
}

.mobile-nav a {
  padding: 15px 4px;
  color: var(--primary);
  border-bottom: 1px solid var(--line);
  font-size: 1.08rem;
  font-weight: 600;
}
.nav {
  display: none;
  align-items: center;
  gap: 26px;
}

.nav .menu-item {
  position: relative;
}

.nav .menu-item > a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1e2937;
  padding: 21px 0 18px;
  border-bottom: 2px solid transparent;
  font-weight: 600;
}

.nav .menu-item > a:hover {
  color: var(--primary);
  border-color: var(--accent);
}

.menu-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
  z-index: 20;
}

.sub-menu .menu-item > a {
  padding: 12px 18px;
  border: 0;
  font-size: .9rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.sub-menu .menu-item > a:hover {
  background: #f5f7fb;
}

.has-dropdown:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav .menu-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 4px;
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: 600;
}

.mobile-nav .sub-menu {
  display: none;
  padding-left: 14px;
}

.mobile-nav .sub-menu .menu-item > a {
  font-size: .96rem;
  font-weight: 500;
  padding: 12px 4px;
}

.mobile-nav .menu-item.is-open > .sub-menu {
  display: block;
}
.mobile-nav .has-dropdown > a {
  position: relative;
  padding-right: 40px;
}

.mobile-nav .menu-arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  margin-top: -7px;
  transform: rotate(45deg);
  transition: .25s ease;
}

.mobile-nav .menu-item.is-open > a .menu-arrow {
  transform: rotate(225deg);
  margin-top: -2px;
}
.mobile-nav .menu-item > .sub-menu {
  display: none;
}

.mobile-nav .menu-item.is-open > .sub-menu {
  display: block;
}
@media (max-width: 1024px) {

  .mobile-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 100%;
    padding: 6px 0 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

}
.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-nav {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.hero {
  background: var(--muted-surface);
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  min-height: calc(75svh - 58px);
}


.pill {
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 10px;
  color: #fff;
  background: var(--accent-dark);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}
h1,
h2,
h3,h4,h5,h6 {
  font-weight: 500;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  color: #0a0d12;
  font-size: clamp(2.25rem, 3vw, 3.55rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 500;
}

h3 {
  font-size: 1.05rem;
}

.hero-copy p:not(.pill) {
  max-width: 500px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 600;
}

.btn-primary {
  color: #111;
  background: var(--accent);
}

.btn-primary:hover {
  background: #ffc928;
}

.btn-outline {
  color: var(--primary);
  background: transparent;
  border-color: var(--primary);
}

.btn-light-solid {
  min-width: 160px;
  color: var(--primary);
  background: #fff7dc;
}

.hero-image {
  position: relative;
  margin: 0;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -10px 10px 10px -10px;
  z-index: 0;
  background: rgb(255 242 203 / 24%);
  border-radius: var(--radius);
}

.hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border: 6px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media screen and (max-width: 414px){
  .hero-image img {
    height: 100% !important;
  }
}
.section-heading {
  margin-bottom: 36px;
  text-align: center;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-heading span {
  display: block;
  width: 96px;
  height: 3px;
  margin: 12px auto 0;
  background: var(--accent);
}

.section-heading h2 {
  margin-inline: auto;
  line-height: 1.18;
}

.project-head h2,
.offer-box h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.18;
}

.solution-features h3,
.benefits-grid h3 {
  font-size: 1.04rem;
  line-height: 1.25;
}
.benefits{
  padding-bottom: 40px;
}
.problem {
  background: #fff;
}

.problem-grid {
  display: grid;
  gap: 22px;
}

.problem-card {
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

.problem-card:hover {
  border-color: var(--accent);
}

.problem-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.problem-card h3 {
  padding: 14px 14px 0;
  margin-bottom: 8px;
  font-size: 1rem;
}

.problem-card p {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.solution {
  background: var(--bg);
}

.compare-box {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 5px 16px rgba(6, 27, 51, 0.04);
}

.compare-box > h3 {
  margin-bottom: 18px;
  text-align: center;
}

.compare-grid {
  display: grid;
  gap: 18px;
}

.compare-grid img {
  width: 100%;
  height: 75svh;
  max-height: 760px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.compare-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.compare-grid .bad {
  color: var(--danger);
}

.compare-grid .good {
  color: var(--accent-dark);
}

.compare-box > p {
  max-width: 830px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.solution-features {
  display: grid;
  gap: 30px;
  margin-top: 46px;
  text-align: center;
}

.solution-features article {
  max-width: 320px;
  margin: 0 auto;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  color: var(--accent-dark);
  background: #f8edcf;
  border-radius: 50%;
  font-weight: 600;
}

.mini-icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.solution-features p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.video-section {
  background: #fff;
}

.video-card {
  display: block;
  width: 80%;
  overflow: hidden;
  background: var(--primary);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  margin: auto;
}
@media screen and (max-width: 575px){
.video-card {width: 100%;}
}
.benefits {
  background: var(--bg);
}

.benefits-grid {
  display: grid;
  gap: 18px;
}

.benefits .benefits-grid {
  margin-top: 28px;
}

.benefits-grid article {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  background: #fff;
  border-bottom: 4px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(6, 27, 51, 0.06);
  text-align: left;
}

.benefits-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.benefits-grid h3 {
  padding: 18px 18px 0;
}

.benefits-grid p {
  margin: 8px 0 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.projects {
  background: var(--muted-surface);
}

.project-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.project-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.project-head > a {
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
}

.project-slider-wrap {
  position: relative;
}

.project-slider {
  overflow: hidden;
  padding-bottom: 2px;
}

.project-slider .swiper-wrapper {
  align-items: stretch;
}

.project-slider .swiper-slide {
  height: auto;
}

.project-slider a {
  display: block;
  cursor: zoom-in;
}

.project-slider img {
  width: 100%;
  height: 75svh;
  max-height: 760px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(6, 27, 51, 0.12);
  user-select: none;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.project-slider a:hover img {
  filter: brightness(0.92);
  transform: scale(1.015);
}

.project-controls {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.project-controls--mobile {
  display: none;
}

.project-nav {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--primary);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.project-nav:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-1px);
}

.project-nav.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.35;
  transform: none;
}

.project-nav svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.offer-strip {
  padding: 52px 0;
  background: var(--accent);
}

.offer-box {
  display: grid;
  gap: 22px;
  padding: 30px;
  color: #fff;
  background: var(--primary);
  border-radius: var(--radius);
  align-items: center;
}

.offer-box h2 {
  color: #fff;
}

.offer-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.offer-box li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
}

.offer-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.offer-action {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.offer-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.final-cta {
  padding: 76px 0;
  color: #fff;
  background: var(--primary);
}

.final-grid {
  display: grid;
  gap: 42px;
  align-items: center;
}

.final-copy h2 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.final-copy > p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #c8d7e7;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-list div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--primary);
  background: var(--accent);
  border-radius: 50%;
}

.contact-list svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.4;
}

.contact-list p {
  margin: 0;
}

.contact-list small {
  display: block;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-list strong {
  display: block;
  color: #fff;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 30px;
  color: var(--text);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form h3 {
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 1.35rem;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 2px solid rgba(247, 184, 1, 0.28);
  border-color: var(--accent);
}

.form-submit {
  min-height: 48px;
  color: #fff !important;
  background: var(--primary) !important;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.footer {
  padding: 42px 0 0;
  color: #c8d7e7;
  background: var(--primary);
  border-top: 4px solid var(--accent);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer h2,
.footer h3 {
  color: #fff;
}

.footer h2 {
  font-size: 1.35rem;
}

.footer h3 {
  margin-bottom: 12px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer p,
.footer a {
  display: block;
  margin: 8px 0 0;
  color: #c8d7e7;
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--accent);
}

.footer-contact {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: #c8d7e7;
  font-size: 0.9rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--accent);
  stroke-width: 2.2;
}

.footer-contact a,
.footer-contact span {
  margin: 0;
}

.footer-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 240px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.footer-links a {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  margin-top: 34px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(200, 215, 231, 0.74);
  font-size: 0.86rem;
  text-align: center;
}

.sticky-cta {
  position: fixed;
  z-index: 60;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sticky-cta a {
  display: grid;
  place-items: center;
  flex: 1;
  min-height: 44px;
  color: #fff;
  background: var(--primary);
  border-radius: 2px;
  font-weight: 600;
}

.sticky-cta a:last-child {
  color: var(--primary);
  background: var(--accent);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 59;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--primary);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  color: var(--primary);
  background: var(--accent);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.blog-page {
  background: #fff;
}

.content-heading {
  margin-bottom: 26px;
}

.content-heading h1 {
  max-width: 820px;
  font-size: clamp(1.65rem, 2vw, 2.45rem);
  line-height: 1.16;
}

.content-heading p:not(.pill) {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.blog-layout {
  display: grid;
  gap: 20px;
  align-items: start;
}

.blog-main,
.post-content {
  min-width: 0;
}

.blog-grid {
  display: grid;
  gap: 22px;
}

.post-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(6, 27, 51, 0.06);
}

.post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.post-card:hover img {
  filter: brightness(0.94);
  transform: scale(1.01);
}

.post-card__body {
  padding: 18px;
}

.post-meta {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.post-card h2,
.post-card h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.98rem;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-card p:not(.post-meta) {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.pagination a, .pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600;
}

.pagination a.is-current,
.pagination a:hover, .page-numbers.current {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.blog-sidebar {
  min-width: 0;
}

.sidebar-box {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(6, 27, 51, 0.08);
}

.sidebar-box h2 {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.sidebar-box a {
  display: block;
  padding: 11px 0;
  color: var(--primary);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
}

.sidebar-box a:last-child {
  border-bottom: 0;
}

.post-content {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(6, 27, 51, 0.05);
}

.post-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 22px;
  border-radius: var(--radius);
}

.post-content > h2 {
  margin-top: 26px;
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
}

.post-content > p {
  color: var(--muted);
  font-size: 0.96rem;
}

.post-content blockquote {
  margin: 28px 0;
  padding: 22px;
  color: var(--primary);
  background: #fff7dc;
  border-left: 5px solid var(--accent);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
}

.related-posts {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.related-posts > h2 {
  margin-bottom: 20px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

@media (min-width: 720px) {
  .nav,
  .hotline {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid,
  .final-grid {
    grid-template-columns: 1fr 1fr;
  }

  .problem-grid,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.05fr 1fr 1fr 0.72fr;
  }

  .compare-grid,
  .offer-box {
    grid-template-columns: 1fr 1fr;
  }

  .solution-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offer-action {
    justify-items: end;
    text-align: right;
  }

  .sticky-cta {
    display: none;
  }

  .blog-layout {
    grid-template-columns: minmax(0, 4fr) minmax(220px, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-sidebar {
    position: sticky;
    top: 84px;
  }
}

@media (max-width: 719px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: clamp(1.95rem, 9vw, 2.65rem);
    line-height: 1.1;
  }

  h2,
  .final-copy h2 {
    font-size: clamp(1.45rem, 6vw, 2rem);
    line-height: 1.16;
  }

  h3,
  .lead-form h3 {
    font-size: 1rem;
    line-height: 1.25;
  }

  .project-head h2,
  .offer-box h2 {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
  }

  .solution-features h3,
  .benefits-grid h3,
  .problem-card h3 {
    font-size: 0.98rem;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .hero-copy p:not(.pill),
  .final-copy > p {
    font-size: 0.96rem;
  }

  .section-pad {
    padding: 25px 0;
  }

  .header-inner {
    min-height: 54px;
  }

  .quote-btn {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 0.68rem;
  }

  .project-head {
    align-items: start;
    flex-direction: column;
  }

  .project-head .project-controls {
    display: none;
  }

  .project-controls--mobile {
    display: flex;
    justify-content: center;
    margin-top: 18px;
  }

  .hero-image img {
    height: 56svh;
    max-height: 520px;
  }

  .compare-grid img,
  .project-slider img {
    height: 56svh;
    max-height: 520px;
  }

  .final-cta {
    padding-bottom: 92px;
  }

  .footer {
    padding-bottom: 94px;
  }

  .back-to-top {
    right: 14px;
    bottom: 78px;
  }
  .lead-form{
    padding: 20px;
  }

  .content-heading p:not(.pill) {
    font-size: 0.9rem;
  }

  .content-heading h1 {
    font-size: clamp(1.3rem, 5vw, 1rem);
  }

  .post-card img {
    height: 190px;
  }

  .post-content {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.post-detail-content img{
  border-radius: 5px;
  margin: 10px 0px;
  max-width: 100% !important;
}
.post-detail-content h1{
  font-size: 28px;
  margin: 10px 0px;
}
.post-detail-content h2{
  font-size: 24px;
  margin: 10px 0px;
}
.post-detail-content h3{
  font-size: 20px;
  margin: 10px 0px;
}
.post-detail-content p{
  text-align: justify;l
}
@media screen and (max-width: 768px){
  .post-detail-content h1{
    font-size: 20px;
  }
    .post-detail-content h2{
    font-size: 18px;
  }
    .post-detail-content h3{
    font-size: 16px;
  }
  .header-actions .mb-none{
    display: none;
  }
  .logo img{
    height: 35px;
  }
  .hero-container-kono-new{
  }
  .hero-video-kono-new{
    height: unset !important;
  }
  .hero-video-box-kono-new, .hero-video-box-kono-new video{
    min-height: 100% !important;
  }
}
.phone-bar a{
  background: #e60808 !important;
}
#ez-toc-container{
  margin-top: 15px;
}