/* ==========================================================================
   HAWEGO FRANCHISE PAGE — Banner, Intro, Why Choose, Contact Sections
   Loaded automatically via hawego-franchise-form plugin
   ========================================================================== */

:root {
  --hf-brand: #dd3333;
  --hf-brand-dark: #b52525;
  --hf-brand-light: #fff5f5;
  --hf-brand-mid: #c62828;
  --hf-green: #dd3333;
  --hf-green-dark: #b52525;
  --hf-green-light: #fff5f5;
  --hf-green-mid: #c62828;
  --hf-accent: #dd3333;
  --hf-text: #1d2128;
  --hf-text-muted: #7c818b;
  --hf-border: #ecf0f4;
  --hf-bg-soft: #fafafa;
  --hf-font: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --hf-fs-body: 17px;
  --hf-fs-sm: 16px;
  --hf-lh-body: 1.41;
  --hf-fs-h1: 56px;
  --hf-fs-h2: 44px;
  --hf-fs-h3: 22px;
}

.hf-page-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shared Typography ── */
.hf-page-label {
  display: inline-block;
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hf-brand, #dd3333);
  background: var(--hf-brand-light, #fff5f5);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.hf-page-section-title {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: clamp(28px, 4.2vw, var(--hf-fs-h2));
  font-weight: 700;
  color: var(--hf-text, #1d2128);
  margin: 0 0 14px;
  line-height: 1.25;
}

.hf-page-section-desc {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-body);
  color: var(--hf-text-muted, #6b7280);
  line-height: var(--hf-lh-body);
  max-width: 680px;
  margin: 0 auto;
}

.hf-page-section-head {
  text-align: center;
  margin-bottom: 48px;
}

.hf-page-subtitle {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-h3);
  font-weight: 600;
  color: var(--hf-green, #1a4d2e);
  margin: 0 0 28px;
  text-align: center;
}

/* ── HERO BANNER (stacked — full image, text below, no crop) ── */
.hf-page-hero {
  position: relative;
  margin-bottom: 0;
  background: #fff;
  width: 100%;
  max-width: 100%;
}

.hf-page-hero--stacked {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.hf-page-hero__media {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  background: #f5f5f5;
  overflow: visible;
  height: auto;
  min-height: 0;
  max-height: none;
}

.hf-page-hero__media img {
  width: 100%;
  max-width: 100%;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: contain !important;
  object-position: center top;
  vertical-align: top;
}

.hf-page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px 40px;
  background: #fff;
  border-bottom: 1px solid var(--hf-border, #ecf0f4);
}

.hf-page-hero__content-inner {
  max-width: 820px;
  margin: 0 auto;
}

.hf-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hf-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hf-page-hero__overlay {
  display: none;
}

.hf-page-hero__badge {
  display: inline-block;
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hf-brand, #dd3333);
  background: var(--hf-brand-light, #fff5f5);
  border: 1px solid rgba(221, 51, 51, 0.15);
  padding: 8px 20px;
  border-radius: 24px;
  margin-bottom: 20px;
}

.hf-page-hero__title {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: clamp(28px, 4.2vw, var(--hf-fs-h1));
  font-weight: 700;
  color: var(--hf-text, #1d2128);
  line-height: 1.2;
  margin: 0 0 18px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hf-page-hero__subtitle {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-body);
  color: var(--hf-text-muted, #7c818b);
  line-height: var(--hf-lh-body);
  margin: 0 auto 28px;
  max-width: 640px;
}

.hf-page-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--hf-brand, #dd3333);
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(221, 51, 51, 0.28);
  letter-spacing: 0.02em;
}

.hf-page-hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(221, 51, 51, 0.34);
  background: var(--hf-brand-dark, #b52525);
  color: #fff;
}

.hf-page-hero__cta svg {
  animation: hfBounceDown 1.5s ease infinite;
}

@keyframes hfBounceDown {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* ── INTRO ── */
.hf-page-intro {
  background: #fff;
  padding: 72px 0;
}

.hf-page-intro__inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hf-page-intro__icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}

.hf-page-intro__heading {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: clamp(28px, 4.2vw, var(--hf-fs-h2));
  font-weight: 700;
  color: var(--hf-green, #1a4d2e);
  margin: 0 0 20px;
}

.hf-page-intro__text {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-body);
  color: var(--hf-text-muted, #6b7280);
  line-height: var(--hf-lh-body);
  margin: 0 0 16px;
}

.hf-page-intro__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--hf-border, #e2e8f0);
}

.hf-page-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hf-page-stat__num {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-h3);
  font-weight: 700;
  color: var(--hf-green, #1a4d2e);
}

.hf-page-stat__label {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-sm, 16px);
  font-weight: 500;
  color: var(--hf-text-muted, #6b7280);
  text-align: center;
}

/* ── FORM HEADER ── */
.hf-page-form-header {
  background: var(--hf-bg-soft, #fafafa);
  padding: 48px 0 8px;
  text-align: center;
  border-bottom: 1px solid var(--hf-border, #ecf0f4);
}

/* Form section background in Elementor: set section bg to #f8faf9 */

/* ── WHY CHOOSE ── */
.hf-page-why {
  background: #fff;
  padding: 80px 0;
}

.hf-page-highlight {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--hf-green-light, #e8f5ec) 0%, #fff 100%);
  border: 1px solid rgba(26, 77, 46, 0.12);
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 48px;
}

.hf-page-highlight__icon {
  font-size: 40px;
  flex-shrink: 0;
  line-height: 1;
}

.hf-page-highlight__title {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-h3);
  font-weight: 700;
  color: var(--hf-green, #1a4d2e);
  margin: 0 0 10px;
}

.hf-page-highlight__text {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-body);
  color: var(--hf-text-muted, #6b7280);
  line-height: var(--hf-lh-body);
  margin: 0;
}

.hf-page-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.hf-page-benefit {
  background: var(--hf-bg-soft, #f8faf9);
  border: 1px solid var(--hf-border, #e2e8f0);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s ease;
}

.hf-page-benefit:hover {
  border-color: var(--hf-green, #1a4d2e);
  box-shadow: 0 8px 28px rgba(26, 77, 46, 0.1);
  transform: translateY(-4px);
}

.hf-page-benefit__icon {
  font-size: 32px;
  display: block;
  margin-bottom: 14px;
}

.hf-page-benefit h4 {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-h3);
  font-weight: 700;
  color: var(--hf-green, #1a4d2e);
  margin: 0 0 8px;
}

.hf-page-benefit p {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-body);
  color: var(--hf-text-muted, #6b7280);
  line-height: var(--hf-lh-body);
  margin: 0;
}

/* ── REQUIREMENTS ── */
.hf-page-requirements {
  background: var(--hf-bg-soft, #f8faf9);
  padding: 80px 0;
}

.hf-page-req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hf-page-req-card {
  background: #fff;
  border: 1px solid var(--hf-border, #e2e8f0);
  border-radius: 16px;
  padding: 32px;
  transition: box-shadow 0.3s ease;
}

.hf-page-req-card:hover {
  box-shadow: 0 8px 32px rgba(26, 77, 46, 0.08);
}

.hf-page-req-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--hf-green-light, #e8f5ec);
}

.hf-page-req-card__icon {
  font-size: 28px;
  line-height: 1;
}

.hf-page-req-card__head h3 {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-h3);
  font-weight: 700;
  color: var(--hf-green, #1a4d2e);
  margin: 0;
}

.hf-page-req-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hf-page-req-list li {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-body);
  color: var(--hf-text, #1d2128);
  line-height: var(--hf-lh-body);
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid #f1f5f3;
}

.hf-page-req-list li:last-child {
  border-bottom: none;
}

.hf-page-req-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hf-accent, #40916c);
}

.hf-page-req-note {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-sm, 16px);
  color: var(--hf-text-muted, #6b7280);
  margin: 16px 0 0;
  font-style: italic;
}

/* ── HOW TO APPLY ── */
.hf-page-process {
  background: #fff;
  padding: 80px 0;
}

.hf-page-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 720px;
  margin: 0 auto 56px;
}

.hf-page-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--hf-green, #1a4d2e), var(--hf-green-light, #e8f5ec));
}

.hf-page-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}

.hf-page-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--hf-green, #1a4d2e);
  color: #fff;
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(26, 77, 46, 0.25);
}

.hf-page-step__body {
  background: var(--hf-bg-soft, #f8faf9);
  border: 1px solid var(--hf-border, #e2e8f0);
  border-radius: 12px;
  padding: 20px 24px;
  flex: 1;
  transition: all 0.3s ease;
}

.hf-page-step:hover .hf-page-step__body {
  border-color: var(--hf-green, #1a4d2e);
  box-shadow: 0 4px 20px rgba(26, 77, 46, 0.08);
}

.hf-page-step__body h4 {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-h3);
  font-weight: 700;
  color: var(--hf-green, #1a4d2e);
  margin: 0 0 6px;
}

.hf-page-step__body p {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-body);
  color: var(--hf-text-muted, #6b7280);
  line-height: var(--hf-lh-body);
  margin: 0;
}

/* CTA Banner */
.hf-page-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, var(--hf-green, #1a4d2e) 0%, var(--hf-green-dark, #0f3320) 100%);
  border-radius: 20px;
  padding: 48px 52px;
  color: #fff;
}

.hf-page-cta-banner__text h3 {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}

.hf-page-cta-banner__text p {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-body);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 16px;
  line-height: var(--hf-lh-body);
}

.hf-page-cta-banner__text blockquote {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-body);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid rgba(255, 255, 255, 0.4);
}

.hf-page-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--hf-green, #1a4d2e);
  background: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hf-page-cta-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  background: var(--hf-green-light, #e8f5ec);
}

/* ── CONTACT ── */
.hf-page-contact {
  background: var(--hf-bg-soft, #f8faf9);
  padding: 80px 0 96px;
}

.hf-page-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hf-page-contact-card {
  background: #fff;
  border: 1px solid var(--hf-border, #e2e8f0);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.hf-page-contact-card:hover {
  border-color: var(--hf-green, #1a4d2e);
  box-shadow: 0 8px 28px rgba(26, 77, 46, 0.1);
  transform: translateY(-4px);
}

.hf-page-contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--hf-green-light, #e8f5ec);
  color: var(--hf-green, #1a4d2e);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.hf-page-contact-card__icon svg {
  width: 24px;
  height: 24px;
}

.hf-page-contact-card h4 {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-h3);
  font-weight: 700;
  color: var(--hf-green, #1a4d2e);
  margin: 0 0 12px;
}

.hf-page-contact-card p {
  font-family: var(--hf-font, 'Jost', sans-serif);
  font-size: var(--hf-fs-body);
  color: var(--hf-text-muted, #6b7280);
  line-height: var(--hf-lh-body);
  margin: 0;
}

.hf-page-intro__text a,
.hf-page-section-desc a,
.hf-page-contact-card a {
  color: var(--hf-brand, #dd3333);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color 0.2s;
}

.hf-page-intro__text a:hover,
.hf-page-section-desc a:hover,
.hf-page-contact-card a:hover {
  color: var(--hf-brand-dark, #b52525);
}

/* ── Full-bleed: no white gaps — zoom-safe (no 100vw on hero) ── */
body.hawego-franchise-page {
  background: #f5f6f8;
}

/* Remove theme gap between header and hero banner */
body.hawego-franchise-page .site-content,
body.hawego-franchise-page .site-main,
body.hawego-franchise-page #primary,
body.hawego-franchise-page .content-area,
body.hawego-franchise-page .page-content,
body.hawego-franchise-page main.site-main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.hawego-franchise-page .elementor:has(.hf-page-hero),
body.hawego-franchise-page .elementor-location-single:has(.hf-page-hero) {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.hawego-franchise-page .e-con:has(.hf-page-hero) {
  --padding-top: 0px !important;
  --padding-bottom: 0px !important;
  margin-top: 0 !important;
}

body.hawego-franchise-page .e-con-boxed:has(.hf-page-hero) > .e-con-inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  gap: 0 !important;
}

body.hawego-franchise-page .e-con:has(.hf-page-hero) .elementor-widget-html {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.hf-page-hero,
.hf-page-hero--stacked {
  margin-top: 0 !important;
}

.hf-page-hero__media {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.hawego-franchise-page #content,
body.hawego-franchise-page .site-content,
body.hawego-franchise-page .page-content,
body.hawego-franchise-page .elementor-location-single,
body.hawego-franchise-page .elementor {
  background: transparent;
}

/* Hero: 100% width only — image never crops on browser zoom */
.hf-page-hero,
.hf-page-hero--stacked {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  overflow: visible;
}

.hf-page-full-bleed,
.hf-page-form-header,
.hf-page-intro,
.hf-page-why,
.hf-page-requirements,
.hf-page-process,
.hf-page-contact {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}

body.hawego-franchise-page .elementor-section:has(.hf-page-hero),
body.hawego-franchise-page .elementor-section:has(.hf-page-form-header),
body.hawego-franchise-page .elementor-section:has(.hf-page-intro),
body.hawego-franchise-page .elementor-section:has(.hf-page-why),
body.hawego-franchise-page .elementor-section:has(.hf-page-requirements),
body.hawego-franchise-page .elementor-section:has(.hf-page-process),
body.hawego-franchise-page .elementor-section:has(.hf-page-contact) {
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: visible;
}

body.hawego-franchise-page .elementor-section:has(.hf-page-hero) > .elementor-container,
body.hawego-franchise-page .elementor-section:has(.hf-page-form-header) > .elementor-container,
body.hawego-franchise-page .elementor-section:has(.hf-page-intro) > .elementor-container,
body.hawego-franchise-page .elementor-section:has(.hf-page-why) > .elementor-container,
body.hawego-franchise-page .elementor-section:has(.hf-page-requirements) > .elementor-container,
body.hawego-franchise-page .elementor-section:has(.hf-page-process) > .elementor-container,
body.hawego-franchise-page .elementor-section:has(.hf-page-contact) > .elementor-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.hawego-franchise-page .elementor-section:has(.hf-page-hero) .elementor-column,
body.hawego-franchise-page .elementor-section:has(.hf-page-hero) .elementor-widget-wrap,
body.hawego-franchise-page .elementor-section:has(.hf-page-hero) .elementor-widget-html {
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
}

body.hawego-franchise-page #hawego-franchise-form.elementor-section,
body.hawego-franchise-page #hawego-franchise-form.e-con {
  background: #f5f6f8 !important;
  padding: 8px 0 56px !important;
  --width: 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}

body.hawego-franchise-page #hawego-franchise-form > .elementor-container,
body.hawego-franchise-page #hawego-franchise-form > .e-con-inner {
  max-width: 980px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

body.hawego-franchise-page .site-main,
body.hawego-franchise-page #primary,
body.hawego-franchise-page .content-area,
body.hawego-franchise-page .elementor-location-single {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.hawego-franchise-page .e-con.e-parent:has(.hf-page-hero),
body.hawego-franchise-page .e-con.e-parent:has(.hf-page-form-header),
body.hawego-franchise-page .e-con.e-parent:has(.hf-page-intro),
body.hawego-franchise-page .e-con.e-parent:has(.hf-page-why),
body.hawego-franchise-page .e-con.e-parent:has(.hf-page-requirements),
body.hawego-franchise-page .e-con.e-parent:has(.hf-page-process),
body.hawego-franchise-page .e-con.e-parent:has(.hf-page-contact),
body.hawego-franchise-page #hawego-franchise-form.e-con {
  --width: 100% !important;
  --content-width: 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: visible;
}

body.hawego-franchise-page .e-con-boxed:has(.hf-page-hero) > .e-con-inner,
body.hawego-franchise-page .e-con-boxed:has(.hf-page-form-header) > .e-con-inner,
body.hawego-franchise-page .e-con-boxed:has(.hf-page-intro) > .e-con-inner,
body.hawego-franchise-page .e-con-boxed:has(.hf-page-why) > .e-con-inner,
body.hawego-franchise-page .e-con-boxed:has(.hf-page-requirements) > .e-con-inner,
body.hawego-franchise-page .e-con-boxed:has(.hf-page-process) > .e-con-inner,
body.hawego-franchise-page .e-con-boxed:has(.hf-page-contact) > .e-con-inner {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.hawego-franchise-page .e-con:has(.hf-page-hero) .elementor-widget-wrap,
body.hawego-franchise-page .e-con:has(.hf-page-hero) .elementor-element,
body.hawego-franchise-page .e-con:has(.hf-page-hero) .elementor-widget-html {
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
  width: 100%;
  max-width: 100%;
}

.elementor-widget-html .hf-page-hero,
.elementor-widget-html .hf-page-hero--stacked {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.elementor-widget-html .hf-page-hero__media {
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: visible;
}

.elementor-widget-html .hf-page-hero__media img {
  width: 100%;
  max-width: 100%;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block;
}

body.hawego-franchise-page .hf-page-container,
body.hawego-franchise-page .hf-page-intro__text,
body.hawego-franchise-page .hf-page-highlight__text,
body.hawego-franchise-page .hf-page-step__body p,
body.hawego-franchise-page .hf-page-benefit p,
body.hawego-franchise-page .hf-page-req-list li,
body.hawego-franchise-page .hf-page-section-desc,
body.hawego-franchise-page .hf-page-hero__subtitle {
  font-size: 17px !important;
  line-height: 1.41 !important;
}

body.hawego-franchise-page .hf-page-section-title,
body.hawego-franchise-page .hf-page-intro__heading {
  font-size: clamp(28px, 4.2vw, 44px) !important;
}

body.hawego-franchise-page .hf-page-hero__title {
  font-size: clamp(28px, 4.2vw, 56px) !important;
}

body.hawego-franchise-page .hf-page-subtitle,
body.hawego-franchise-page .hf-page-highlight__title,
body.hawego-franchise-page .hf-page-benefit h4,
body.hawego-franchise-page .hf-page-req-card__head h3,
body.hawego-franchise-page .hf-page-step__body h4 {
  font-size: 22px !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hf-page-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .hf-page-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hf-page-intro__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hf-page-hero__content {
    padding: 36px 20px 32px;
  }

  .hf-page-intro,
  .hf-page-why,
  .hf-page-requirements,
  .hf-page-process,
  .hf-page-contact {
    padding: 56px 0;
  }

  .hf-page-highlight {
    flex-direction: column;
    padding: 24px;
  }

  .hf-page-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .hf-page-req-grid {
    grid-template-columns: 1fr;
  }

  .hf-page-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }

  .hf-page-cta-banner__text blockquote {
    border-left: none;
    padding-left: 0;
  }

  .hf-page-contact-grid {
    grid-template-columns: 1fr;
  }

  .hf-page-steps::before {
    left: 23px;
  }

  .hf-page-step__num {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }

  .hf-page-hero__badge {
    font-size: 13px;
  }

  .hf-page-section-desc,
  .hf-page-hero__subtitle {
    font-size: 17px;
  }

  .hf-page-benefit p,
  .hf-page-req-card li,
  .hf-page-step p {
    font-size: 17px;
  }

  .hf-page-contact-card p {
    font-size: 17px;
  }

  .hf-page-form-header .hf-page-section-desc {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .hf-page-hero__title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .hf-page-section-title {
    font-size: clamp(24px, 5.5vw, 30px);
  }

  .hf-page-hero__subtitle,
  .hf-page-section-desc {
    font-size: 17px;
  }

  .hf-page-label,
  .hf-page-stat__label {
    font-size: 14px;
  }

  .hf-page-benefit p,
  .hf-page-req-list li,
  .hf-page-step p,
  .hf-page-contact-card p {
    font-size: 17px;
  }

  .hf-page-benefits {
    grid-template-columns: 1fr;
  }

  .hf-page-intro__stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
