/* ============================================
   CILINDROS HIDRÁULICOS — MAIN STYLES
   ============================================ */

.ch-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.ch-hide-mobile { display: inline-flex; }

/* TOP BAR */
.ch-topbar {
  background: var(--color-blue);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.ch-topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.ch-topbar__left, .ch-topbar__right { display: flex; gap: 24px; align-items: center; }
.ch-topbar__item {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .2s ease;
}
.ch-topbar__item:hover { color: white; }
.ch-topbar__item svg { color: var(--color-orange); flex-shrink: 0; }
.ch-topbar__loc { color: rgba(255,255,255,.6); }

/* HEADER */
.ch-header {
  background: white;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(14,31,63,.07);
  transition: box-shadow .25s ease;
}
.ch-header.is-scrolled { box-shadow: 0 4px 20px rgba(14,31,63,.12); }
.ch-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; height: var(--header-h);
}

/* Logo + info wrapper */
.ch-logo-wrap { display: flex; align-items: center; gap: 14px; flex-shrink: 0; text-decoration: none; }
.ch-logo { display: flex; align-items: center; flex-shrink: 0; }
.ch-logo img, .ch-logo .custom-logo { height: 50px; width: auto; }
.ch-logo-info { display: flex; flex-direction: column; gap: 2px; }
.ch-logo-company {
  font-size: 11px; font-weight: 800;
  color: var(--color-blue); letter-spacing: .08em; text-transform: uppercase;
}
.ch-logo-tagline {
  font-size: 10px; color: var(--color-text-mute); font-weight: 500; letter-spacing: .04em;
}

/* NAV */
.ch-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-menu li a {
  display: inline-block; padding: 10px 14px;
  font-size: 13px; font-weight: 700; letter-spacing: .05em;
  color: var(--color-blue); text-decoration: none;
  border-radius: var(--radius);
  transition: all .2s ease;
  position: relative;
}
.nav-menu li a:hover { color: var(--color-blue); background: var(--color-blue-soft); }
.nav-menu li.current-menu-item a, .nav-menu li.current_page_item a {
  color: var(--color-blue);
}
.nav-menu li.current-menu-item a::after, .nav-menu li.current_page_item a::after {
  content: '';
  position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--color-blue);
  border-radius: 2px;
}
.nav-external a { color: var(--color-text-mute) !important; font-size: 12px; }
.nav-external a:hover { color: var(--color-blue) !important; background: var(--color-blue-soft); }

/* CTA BUTTON */
.ch-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--color-orange);
  color: white !important;
  font-weight: 700; font-size: 14px; letter-spacing: .04em;
  border-radius: var(--radius);
  transition: all .25s ease;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255,107,0,0.28);
  flex-shrink: 0;
}
.ch-cta-btn:hover {
  background: var(--color-orange-dark); color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,107,0,0.4);
}
.ch-cta-btn--full { width: 100%; justify-content: center; padding: 16px; }

/* BURGER */
.ch-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.ch-burger span { display: block; width: 26px; height: 2px; background: var(--color-text); transition: all .25s; }
.ch-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ch-burger.is-open span:nth-child(2) { opacity: 0; }
.ch-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.ch-mobile-menu {
  background: white;
  border-top: 1px solid var(--color-border);
  padding: 20px 24px 28px;
  box-shadow: 0 8px 24px rgba(14,31,63,.1);
}
.ch-mobile-menu .nav-menu-mobile { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.ch-mobile-menu .nav-menu-mobile li a {
  display: block; padding: 14px 16px;
  font-size: 15px; font-weight: 600;
  border-radius: var(--radius);
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}
.ch-mobile-menu .nav-menu-mobile li a:hover { background: var(--color-blue-soft); color: var(--color-blue); }
.ch-mobile-menu .nav-menu-mobile li.current-menu-item a { color: var(--color-blue); }
.ch-mobile-menu .nav-external a { color: var(--color-text-mute) !important; }
.ch-mobile-menu .nav-external a:hover { color: var(--color-blue) !important; background: var(--color-blue-soft); }

/* BUTTONS */
.ch-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-weight: 700; font-size: 15px; letter-spacing: .03em;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .25s ease;
  cursor: pointer;
}
.ch-btn--primary {
  background: var(--color-orange); color: white !important;
  box-shadow: 0 6px 18px rgba(255,107,0,0.3);
}
.ch-btn--primary:hover { background: var(--color-orange-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,107,0,0.45); }
.ch-btn--ghost {
  background: rgba(255,255,255,.1); color: white !important;
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(10px);
}
.ch-btn--ghost:hover { background: rgba(255,255,255,.2); border-color: white; }
.ch-btn--ghost-light {
  background: transparent; color: white !important;
  border: 1.5px solid rgba(255,255,255,.5);
}
.ch-btn--ghost-light:hover { background: rgba(255,255,255,.15); border-color: white; }
.ch-btn--lg { padding: 16px 32px; font-size: 16px; }

/* EYEBROWS / SECTION HEADS */
.ch-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 700; letter-spacing: .18em;
  color: var(--color-blue); text-transform: uppercase;
  margin-bottom: 16px;
}
.ch-eyebrow__line { display: inline-block; width: 36px; height: 2px; background: var(--color-orange); }
.ch-eyebrow--center { color: var(--color-blue); }
.ch-eyebrow--light { color: rgba(255,255,255,.85); }
.ch-eyebrow__line--light { background: var(--color-orange); }

.ch-h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--color-text);
  margin-bottom: 20px;
  text-wrap: balance;
}
.ch-h2--light { color: white; }

.ch-section { padding: 96px 0; background: white; }
.ch-section--alt { background: var(--color-bg-alt); }
.ch-section-head { margin-bottom: 56px; }
.ch-section-head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; margin-bottom: 64px; }

/* TRUST STRIP */
.ch-trust {
  background: var(--color-blue-deep); color: white;
  padding: 36px 0;
}
.ch-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.ch-trust__item { text-align: center; }
.ch-trust__num {
  font-size: 44px; font-weight: 900;
  color: var(--color-orange); line-height: 1;
  letter-spacing: -.02em;
}
.ch-trust__num span { font-size: 28px; }
.ch-trust__lab { color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; margin-top: 8px; letter-spacing: .04em; }

/* ABOUT */
.ch-about { padding: 96px 0; background: white; }
.ch-about__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.ch-about__text p { color: var(--color-text-soft); margin-bottom: 16px; font-size: 16px; line-height: 1.75; }
.ch-checklist { list-style: none; margin: 24px 0 32px; display: grid; gap: 12px; }
.ch-checklist li { display: flex; align-items: center; gap: 12px; color: var(--color-text); font-weight: 500; }
.ch-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  background: var(--color-blue-soft); color: var(--color-blue);
  border-radius: 50%; font-weight: 800; font-size: 13px;
  flex-shrink: 0;
}
.ch-about__media { position: relative; }
.ch-about__photo {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid white;
  outline: 2px solid var(--color-blue-soft);
}
.ch-about__badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--color-blue);
  color: white;
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.ch-about__badge-num { font-size: 36px; font-weight: 900; line-height: 1; letter-spacing: -.02em; }
.ch-about__badge-lab { font-size: 12px; font-weight: 600; letter-spacing: .12em; opacity: .9; margin-top: 4px; text-transform: uppercase; }

/* SERVICES */
.ch-services { padding: 96px 0; background: var(--color-bg-alt); }
.ch-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ch-service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all .35s ease;
  display: flex; flex-direction: column;
}
.ch-service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--color-blue); }
.ch-service-card__media {
  height: 220px;
  background-size: cover; background-position: center;
  position: relative;
}
.ch-service-card__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,31,63,.3));
}
.ch-service-card__body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.ch-service-card__num {
  display: inline-block;
  font-size: 14px; font-weight: 800;
  color: var(--color-orange);
  letter-spacing: .12em;
  margin-bottom: 8px;
}
.ch-service-card__body h3 { font-size: 24px; font-weight: 800; color: var(--color-text); margin-bottom: 12px; letter-spacing: -.01em; }
.ch-service-card__body p { color: var(--color-text-soft); margin-bottom: 20px; font-size: 15px; }
.ch-service-card__list { list-style: none; margin-bottom: 24px; flex: 1; }
.ch-service-card__list li { padding: 6px 0; color: var(--color-text); font-size: 14px; font-weight: 500; }
.ch-service-card__cta {
  font-weight: 700; color: var(--color-blue); letter-spacing: .04em;
  text-decoration: none;
  font-size: 14px;
  align-self: flex-start;
  transition: all .2s ease;
}
.ch-service-card__cta:hover { color: var(--color-orange); transform: translateX(4px); }

/* REASONS */
.ch-reasons { padding: 96px 0; background: white; }
.ch-reasons__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.ch-reason {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all .3s ease;
}
.ch-reason:hover { border-color: var(--color-blue); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ch-reason__icon {
  width: 56px; height: 56px;
  background: var(--color-blue-soft);
  color: var(--color-blue);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.ch-reason h4 { font-size: 18px; font-weight: 800; color: var(--color-text); margin-bottom: 8px; }
.ch-reason p { color: var(--color-text-soft); font-size: 14.5px; line-height: 1.6; }

/* VALUES (page-nosotros) */
.ch-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ch-value {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all .3s ease;
}
.ch-value:hover { border-color: var(--color-blue); transform: translateY(-4px); }
.ch-value__num {
  display: inline-block; color: var(--color-orange);
  font-size: 14px; font-weight: 800; letter-spacing: .14em; margin-bottom: 8px;
}
.ch-value h4 { font-size: 20px; font-weight: 800; color: var(--color-text); margin-bottom: 8px; }
.ch-value p { color: var(--color-text-soft); font-size: 15px; }

/* PROJECTS */
.ch-projects { padding: 96px 0; background: var(--color-bg-alt); }
.ch-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.ch-project {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background-size: cover; background-position: center;
  text-decoration: none; color: white;
  cursor: pointer;
  transition: all .35s ease;
}
.ch-project--big { grid-row: 1 / 3; grid-column: 1 / 2; }
.ch-project::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,31,63,.85) 0%, rgba(14,31,63,.2) 60%, transparent 100%);
  transition: all .3s ease;
}
.ch-project:hover { transform: scale(1.02); }
.ch-project:hover::before { background: linear-gradient(0deg, rgba(30,111,232,.9) 0%, rgba(30,111,232,.3) 60%, rgba(30,111,232,.1) 100%); }
.ch-project__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 1;
}
.ch-project__cat {
  display: inline-block; padding: 4px 10px;
  background: var(--color-orange);
  font-size: 11px; font-weight: 800; letter-spacing: .12em;
  border-radius: 4px; margin-bottom: 8px;
}
.ch-project__overlay h3 { font-size: 20px; font-weight: 800; color: white; }
.ch-project--big .ch-project__overlay h3 { font-size: 28px; }

/* FINAL CTA */
.ch-final-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--color-blue-deep) 0%, var(--color-blue-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.ch-final-cta::before {
  content: ''; position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,.15) 0%, transparent 70%);
  pointer-events: none;
}
.ch-final-cta__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.ch-final-cta__lead { color: rgba(255,255,255,.85); font-size: 18px; margin: 16px 0 28px; max-width: 540px; }
.ch-final-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ch-final-cta__card {
  background: white; color: var(--color-text);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.ch-final-cta__card h4 {
  font-size: 13px; font-weight: 800; color: var(--color-blue);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 2px solid var(--color-blue-soft);
}
.ch-final-cta__card ul { list-style: none; }
.ch-final-cta__card li {
  display: flex; flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.ch-final-cta__card li:last-child { border-bottom: none; }
.ch-final-cta__card li strong {
  font-size: 11px; font-weight: 700; color: var(--color-text-mute);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 2px;
}
.ch-final-cta__card li a, .ch-final-cta__card li span { font-weight: 600; color: var(--color-text); font-size: 15px; text-decoration: none; }
.ch-final-cta__card li a:hover { color: var(--color-blue); }

/* PAGE HERO (interior) */
.ch-page-hero {
  padding: 100px 0 80px;
  color: white;
  background-size: cover; background-position: center;
  text-align: left;
}
.ch-page-hero__title { font-size: clamp(32px, 5vw, 56px); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 16px; max-width: 900px; }
.ch-page-hero__lead { font-size: 18px; color: rgba(255,255,255,.85); max-width: 700px; }

/* CONTACT */
.ch-contact__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.ch-contact__form h2 { margin-bottom: 8px; }
.ch-contact__form > p { color: var(--color-text-soft); margin-bottom: 28px; }
.ch-form { display: flex; flex-direction: column; gap: 16px; }
.ch-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ch-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; color: var(--color-text); letter-spacing: .04em; }
.ch-form input, .ch-form textarea, .ch-form select {
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit; font-size: 15px;
  background: white;
  transition: border-color .2s ease;
}
.ch-form input:focus, .ch-form textarea:focus, .ch-form select:focus {
  outline: none; border-color: var(--color-blue);
  box-shadow: 0 0 0 4px var(--color-blue-soft);
}
.ch-form__note { font-size: 13px; color: #B45309; background: #FEF3C7; padding: 12px 16px; border-radius: var(--radius); }

/* CF7 styles */
.wpcf7-form input, .wpcf7-form textarea, .wpcf7-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit; font-size: 15px;
  background: white;
  margin-top: 4px;
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus { outline: none; border-color: var(--color-blue); box-shadow: 0 0 0 4px var(--color-blue-soft); }
.wpcf7-form p { margin-bottom: 16px; font-weight: 600; font-size: 14px; }
.wpcf7-form input[type="submit"] {
  background: var(--color-orange); color: white;
  font-weight: 700; padding: 16px 32px;
  border: none; cursor: pointer;
  width: auto;
  box-shadow: 0 6px 18px rgba(255,107,0,0.3);
}
.wpcf7-form input[type="submit"]:hover { background: var(--color-orange-dark); }

.ch-contact__info {
  background: var(--color-bg-alt);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.ch-contact__info h3 { font-size: 18px; font-weight: 800; margin-bottom: 20px; color: var(--color-blue); }
.ch-contact__info ul { list-style: none; }
.ch-contact__info li { padding: 14px 0; border-bottom: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 4px; }
.ch-contact__info li:last-child { border-bottom: none; }
.ch-contact__label { font-size: 11px; font-weight: 700; color: var(--color-text-mute); letter-spacing: .12em; text-transform: uppercase; }
.ch-contact__val { font-weight: 600; color: var(--color-text); text-decoration: none; }
.ch-contact__val:hover { color: var(--color-blue); }

.ch-map iframe { display: block; }

/* FOOTER */
.ch-footer {
  background: var(--color-blue-deep);
  color: rgba(255,255,255,.75);
  padding-top: 72px;
}
.ch-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}
.ch-footer__logo {
  display: inline-block;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 10px 16px;
}
.ch-footer__logo img { height: 50px; width: auto; }
.ch-footer__about { font-size: 14px; line-height: 1.7; max-width: 360px; }
.ch-footer__title { font-size: 13px; font-weight: 800; letter-spacing: .12em; color: white; text-transform: uppercase; margin-bottom: 16px; }
.ch-footer__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ch-footer__list a { color: rgba(255,255,255,.75); text-decoration: none; font-size: 14.5px; transition: color .2s; }
.ch-footer__list a:hover { color: var(--color-orange); }
.ch-footer__contact li { display: flex; align-items: flex-start; gap: 10px; }
.ch-footer__contact svg { color: var(--color-orange); flex-shrink: 0; margin-top: 3px; }
.ch-footer__contact a, .ch-footer__contact span { color: rgba(255,255,255,.85); font-size: 14.5px; }

.ch-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.ch-footer__bottom-inner {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.55);
}
.ch-footer__legal a { color: var(--color-orange); }

/* WHATSAPP FAB */
.ch-whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--color-success);
  color: white;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
  z-index: 200;
  animation: ch-wa-pulse 2.5s ease infinite;
  transition: transform .25s ease;
}
.ch-whatsapp-fab:hover { transform: scale(1.08); color: white; }

@keyframes ch-wa-pulse {
  0% { box-shadow: 0 12px 32px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 12px 32px rgba(37,211,102,0.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 32px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* PROSE (default page content) */
.ch-prose { max-width: 760px; margin: 0 auto; }
.ch-prose h2, .ch-prose h3 { color: var(--color-text); margin: 32px 0 12px; font-weight: 800; }
.ch-prose p { color: var(--color-text-soft); margin-bottom: 16px; line-height: 1.8; }
.ch-prose ul, .ch-prose ol { margin: 16px 0 16px 24px; }

/* BLOG GRID */
.ch-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ch-blog-card { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; transition: all .3s; }
.ch-blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.ch-blog-card__media { display: block; aspect-ratio: 4/3; overflow: hidden; }
.ch-blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ch-blog-card__body { padding: 24px; }
.ch-blog-card__body h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.ch-blog-card__body h3 a { color: var(--color-text); text-decoration: none; }
.ch-blog-card__body h3 a:hover { color: var(--color-blue); }
.ch-blog-card__body p { color: var(--color-text-soft); font-size: 14.5px; margin-bottom: 14px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ch-about__grid, .ch-final-cta__grid, .ch-contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .ch-services__grid { grid-template-columns: repeat(2, 1fr); }
  .ch-reasons__grid { grid-template-columns: repeat(2, 1fr); }
  .ch-values__grid { grid-template-columns: 1fr; }
  .ch-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ch-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ch-hide-mobile { display: none; }
  .ch-topbar { font-size: 12px; }
  .ch-topbar__inner { justify-content: center; }
  .ch-nav, .ch-cta-btn { display: none; }
  .ch-burger { display: flex; }
  .ch-services__grid { grid-template-columns: 1fr; }
  .ch-reasons__grid { grid-template-columns: 1fr; }
  .ch-trust__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ch-trust__num { font-size: 36px; }
  .ch-section, .ch-services, .ch-reasons, .ch-projects, .ch-about, .ch-final-cta { padding: 64px 0; }
  .ch-section-head { margin-bottom: 36px; }
  .ch-projects__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .ch-project--big { grid-row: auto; grid-column: auto; }
  .ch-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .ch-footer__bottom-inner { justify-content: center; text-align: center; }
  .ch-form__row { grid-template-columns: 1fr; }
  .ch-blog-grid { grid-template-columns: 1fr; }
  .ch-about__badge { left: 16px; bottom: -20px; padding: 16px 20px; }
  .ch-about__badge-num { font-size: 28px; }
  .ch-page-hero { padding: 64px 0 56px; }
}
