:root {
  --helpzy-cream: #fdfbf7;
  --helpzy-sage: #d4e0d6;
  --helpzy-sage-deep: #8ba88e;
  --helpzy-charcoal: #2c2c2c;
  --helpzy-stone: #f0ede6;
  --helpzy-text-main: #1e1e1e;
  --helpzy-text-soft: #5c5c5c;
  --helpzy-border: #e6e1d6;
  --helpzy-white: #ffffff;
  --helpzy-whatsapp: #25d366;
  --helpzy-shadow-soft: 0 16px 34px -10px rgba(0, 0, 0, 0.08);
  --helpzy-shadow-strong: 0 22px 56px -18px rgba(0, 0, 0, 0.12);
  --helpzy-radius-card: 24px;
  --helpzy-radius-panel: 36px;
  --helpzy-radius-pill: 999px;
  --helpzy-content-width: 1200px;
  --helpzy-transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", sans-serif;
  background: var(--helpzy-cream);
  color: var(--helpzy-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.helpzy-container {
  width: min(var(--helpzy-content-width), calc(100% - 48px));
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header.helpzy-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(253, 251, 247, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 225, 214, 0.55);
  transition: background var(--helpzy-transition), padding var(--helpzy-transition), box-shadow var(--helpzy-transition);
}

body.admin-bar .site-header.helpzy-site-header {
  top: 32px;
}

.site-header.helpzy-site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(253, 251, 247, 0.92);
  box-shadow: 0 14px 40px -30px rgba(0, 0, 0, 0.35);
}

.helpzy-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.helpzy-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.helpzy-brand__logo .custom-logo-link,
.helpzy-brand__logo .custom-logo {
  display: block;
}

.helpzy-brand__logo .custom-logo {
  max-height: 48px;
  width: auto;
}

.helpzy-brand__mark {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  color: var(--helpzy-sage-deep);
  background: rgba(139, 168, 142, 0.12);
}

.helpzy-brand__mark svg,
.helpzy-menu-toggle svg,
.helpzy-nav-cta__icon svg,
.helpzy-site-footer__logo-mark svg,
.helpzy-social-links svg,
.helpzy-contact-list__icon svg,
.helpzy-footer-cta__icon svg {
  width: 24px;
  height: 24px;
}

.helpzy-brand__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.helpzy-brand__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--helpzy-charcoal);
}

.helpzy-brand__tagline {
  font-size: 0.92rem;
  color: var(--helpzy-text-soft);
}

.helpzy-site-header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.helpzy-navigation .helpzy-menu,
.helpzy-footer-menu,
.helpzy-site-footer .menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.helpzy-navigation .helpzy-menu a,
.helpzy-navigation .menu a {
  text-decoration: none;
  color: var(--helpzy-text-main);
  font-size: 0.98rem;
  font-weight: 500;
  transition: color var(--helpzy-transition);
}

.helpzy-navigation .helpzy-menu a:hover,
.helpzy-navigation .menu a:hover {
  color: var(--helpzy-sage-deep);
}

.helpzy-nav-cta,
.helpzy-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--helpzy-radius-pill);
  text-decoration: none;
  font-weight: 600;
  transition: transform var(--helpzy-transition), background var(--helpzy-transition), color var(--helpzy-transition);
}

.helpzy-nav-cta {
  color: var(--helpzy-white);
  background: var(--helpzy-charcoal);
}

.helpzy-nav-cta:hover,
.helpzy-footer-cta:hover {
  transform: translateY(-2px);
}

.helpzy-nav-cta:hover {
  background: var(--helpzy-sage-deep);
}

.helpzy-nav-cta__icon {
  color: var(--helpzy-whatsapp);
}

.helpzy-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--helpzy-border);
  border-radius: 16px;
  background: var(--helpzy-white);
  color: var(--helpzy-charcoal);
  cursor: pointer;
}

.helpzy-menu-toggle__icon--close {
  display: none;
}

.helpzy-menu-toggle.is-open .helpzy-menu-toggle__icon--menu {
  display: none;
}

.helpzy-menu-toggle.is-open .helpzy-menu-toggle__icon--close {
  display: inline-flex;
}

.site-footer.helpzy-site-footer {
  margin-top: 56px;
  padding: 72px 0 32px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--helpzy-charcoal);
}

.helpzy-site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 34px;
}

.helpzy-site-footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.helpzy-site-footer__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  color: var(--helpzy-sage);
  background: rgba(255, 255, 255, 0.08);
}

.helpzy-site-footer__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--helpzy-white);
}

.helpzy-site-footer__subtitle,
.helpzy-site-footer__description,
.helpzy-site-footer__bottom p {
  color: rgba(255, 255, 255, 0.72);
}

.helpzy-site-footer__description {
  max-width: 28rem;
  margin: 0 0 24px;
}

.helpzy-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.helpzy-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--helpzy-white);
  background: rgba(255, 255, 255, 0.08);
  transition: background var(--helpzy-transition), transform var(--helpzy-transition);
}

.helpzy-social-links a:hover {
  background: var(--helpzy-sage-deep);
  transform: translateY(-2px);
}

.helpzy-site-footer__nav-block h2,
.helpzy-site-footer__contact h2 {
  margin: 0 0 20px;
  color: var(--helpzy-white);
  font-size: 1.05rem;
}

.helpzy-footer-menu,
.helpzy-site-footer .menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.helpzy-footer-menu a,
.helpzy-site-footer .menu a,
.helpzy-site-footer__legal a,
.helpzy-contact-list a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color var(--helpzy-transition);
}

.helpzy-footer-menu a:hover,
.helpzy-site-footer .menu a:hover,
.helpzy-site-footer__legal a:hover,
.helpzy-contact-list a:hover {
  color: var(--helpzy-white);
}

.helpzy-contact-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.helpzy-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.helpzy-contact-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--helpzy-sage);
}

.helpzy-footer-cta {
  color: var(--helpzy-charcoal);
  background: var(--helpzy-white);
}

.helpzy-footer-cta__icon {
  color: var(--helpzy-whatsapp);
}

.helpzy-site-footer__bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.helpzy-site-footer__bottom p {
  margin: 0;
}

.helpzy-site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-main {
  min-height: 48vh;
}

.page-header,
.page-content {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
}

.page-header {
  padding: 72px 0 24px;
}

.page-header .entry-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--helpzy-charcoal);
}

.page-content {
  padding-bottom: 80px;
}

.page-content > * + * {
  margin-top: 1.1em;
}

.page-content a {
  color: var(--helpzy-sage-deep);
}

.page-content input,
.page-content textarea,
.page-content select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--helpzy-border);
  border-radius: 16px;
  background: var(--helpzy-white);
}

.helpzy-section {
  padding: 96px 0;
}

.helpzy-section--tight {
  padding: 64px 0;
}

.helpzy-surface {
  border: 1px solid var(--helpzy-border);
  border-radius: var(--helpzy-radius-panel);
  background: var(--helpzy-white);
  box-shadow: var(--helpzy-shadow-soft);
}

.helpzy-surface--stone {
  background: var(--helpzy-stone);
}

.helpzy-hero {
  padding: 110px 0 80px;
  background: linear-gradient(105deg, #f7f4ee 0%, #eae7dd 100%);
}

.helpzy-card-grid {
  display: grid;
  gap: 24px;
}

.helpzy-card-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.helpzy-card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.helpzy-card,
.helpzy-service-card,
.helpzy-testimonial-card,
.helpzy-stat-card,
.helpzy-faq-card,
.helpzy-cta-panel {
  border: 1px solid var(--helpzy-border);
  border-radius: var(--helpzy-radius-card);
  background: var(--helpzy-white);
  box-shadow: var(--helpzy-shadow-soft);
}

.helpzy-card,
.helpzy-service-card,
.helpzy-testimonial-card,
.helpzy-stat-card,
.helpzy-faq-card {
  padding: 28px;
}

.helpzy-service-card:hover,
.helpzy-card:hover {
  transform: translateY(-4px);
  transition: transform var(--helpzy-transition), border-color var(--helpzy-transition);
  border-color: var(--helpzy-sage);
}

.helpzy-process-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
  padding: 28px 34px;
  border: 1px solid var(--helpzy-border);
  border-radius: var(--helpzy-radius-pill);
  background: var(--helpzy-white);
  box-shadow: var(--helpzy-shadow-soft);
}

.helpzy-process-band > * {
  flex: 1 1 200px;
}

.helpzy-stat-card {
  text-align: center;
}

.helpzy-stat-number,
.helpzy-stat-number .elementor-heading-title {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--helpzy-sage-deep);
}

.helpzy-cta-panel {
  padding: 54px 42px;
  color: var(--helpzy-white);
  background: var(--helpzy-charcoal);
}

.helpzy-cta-panel a {
  color: inherit;
}

.helpzy-pill-link,
.helpzy-button,
.helpzy-button-outline,
.helpzy-pill-link .elementor-button,
.helpzy-button .elementor-button,
.helpzy-button-outline .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--helpzy-radius-pill);
  text-decoration: none;
  font-weight: 600;
}

.helpzy-button,
.helpzy-button .elementor-button {
  color: var(--helpzy-white);
  background: var(--helpzy-whatsapp);
}

.helpzy-button:hover,
.helpzy-button .elementor-button:hover {
  color: var(--helpzy-white);
  background: #20b859;
}

.helpzy-button-outline,
.helpzy-button-outline .elementor-button {
  color: var(--helpzy-charcoal);
  border: 1px solid var(--helpzy-charcoal);
  background: transparent;
}

.helpzy-button-outline:hover,
.helpzy-button-outline .elementor-button:hover {
  color: var(--helpzy-white);
  background: var(--helpzy-charcoal);
}

.helpzy-eyebrow,
.helpzy-eyebrow .elementor-heading-title,
.helpzy-eyebrow .elementor-widget-container,
.helpzy-eyebrow p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--helpzy-sage-deep);
}

.helpzy-display,
.helpzy-display .elementor-heading-title {
  font-size: clamp(2.9rem, 7vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.helpzy-lead,
.helpzy-lead .elementor-widget-container,
.helpzy-lead p {
  font-size: 1.15rem;
  color: var(--helpzy-text-soft);
}

.helpzy-muted,
.helpzy-muted .elementor-widget-container,
.helpzy-muted p,
.helpzy-muted li,
.helpzy-muted a {
  color: var(--helpzy-text-soft);
}

.helpzy-divider {
  height: 1px;
  background: var(--helpzy-border);
}

.helpzy-floating-whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: var(--helpzy-white);
  background: var(--helpzy-whatsapp);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28);
}

.helpzy-floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

.elementor-widget-container .helpzy-card,
.elementor-widget-container .helpzy-service-card,
.elementor-widget-container .helpzy-testimonial-card,
.elementor-widget-container .helpzy-stat-card {
  height: 100%;
}

@media (max-width: 1024px) {
  .helpzy-site-footer__grid,
  .helpzy-card-grid--4,
  .helpzy-card-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body.admin-bar .site-header.helpzy-site-header {
    top: 46px;
  }

  .helpzy-menu-toggle {
    display: inline-flex;
  }

  .helpzy-site-header__nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--helpzy-border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--helpzy-shadow-strong);
  }

  .helpzy-site-header__nav.is-open {
    display: flex;
  }

  .helpzy-navigation .helpzy-menu,
  .helpzy-navigation .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .helpzy-nav-cta {
    justify-content: center;
  }

  .helpzy-site-footer__grid,
  .helpzy-card-grid--2,
  .helpzy-card-grid--3,
  .helpzy-card-grid--4 {
    grid-template-columns: 1fr;
  }

  .helpzy-process-band,
  .helpzy-site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .helpzy-container,
  .page-header,
  .page-content {
    width: min(var(--helpzy-content-width), calc(100% - 32px));
  }

  .helpzy-brand__tagline {
    display: none;
  }

  .helpzy-hero,
  .helpzy-section {
    padding: 72px 0;
  }

  .helpzy-cta-panel {
    padding: 36px 26px;
  }

  .helpzy-floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }
}
