/*
Theme Name: TinyHouseExperts Child
Template: hello-elementor
Description: Child theme for TheTinyHouseExperts.com - Built on Hello Elementor
Version: 1.0
*/

/* ============================================
   GLOBAL BRAND TOKENS — CHANGE HERE GLOBALLY
   ============================================ */
:root {
  /* Brand Colors */
  --brand-red:        #C0392B;
  --brand-red-dark:   #96281B;
  --brand-red-light:  #E74C3C;
  --brand-black:      #1A1A1A;
  --brand-dark:       #2C2C2C;
  --brand-grey:       #555555;
  --brand-light-grey: #F5F5F5;
  --brand-white:      #FFFFFF;
  --brand-border:     #E0E0E0;
  --brand-overlay:    rgba(26, 26, 26, 0.72);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  /* Font Sizes */
  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-md:   18px;
  --text-lg:   22px;
  --text-xl:   28px;
  --text-2xl:  36px;
  --text-3xl:  48px;
  --text-4xl:  60px;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  60px;
  --space-xl:  100px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
}

/* ============================================
   GLOBAL RESETS & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--brand-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand-black);
}

a { color: var(--brand-red); text-decoration: none; }
a:hover { color: var(--brand-red-dark); }

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

/* ============================================
   BUTTONS — GLOBAL
   ============================================ */
.the-btn,
.elementor-button,
.wp-block-button__link {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
a.hfe-menu-item {
	    justify-content: flex-start !important;
}
.btn-primary,
.elementor-button-primary {
  background: var(--brand-red);
  color: var(--brand-white) !important;
  border-color: var(--brand-red);
}
.btn-primary:hover { background: var(--brand-red-dark); border-color: var(--brand-red-dark); }

.btn-outline {
  background: transparent;
  color: var(--brand-red) !important;
  border-color: var(--brand-red);
}
.btn-outline:hover { background: var(--brand-red); color: var(--brand-white) !important; }

.btn-white {
  background: var(--brand-white);
  color: var(--brand-red) !important;
  border-color: var(--brand-white);
}
.btn-white:hover { background: transparent; color: var(--brand-white) !important; }

/* ============================================
   SECTION LABELS
   ============================================ */
.the-section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: var(--space-xs);
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.the-section-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  color: var(--brand-black);
}

.the-section-subtitle {
  font-size: var(--text-md);
  color: var(--brand-grey);
  max-width: 640px;
  margin: 0 auto var(--space-md);
  line-height: 1.7;
}

/* ============================================
   SECTION PADDING
   ============================================ */
.the-section { padding: var(--space-lg) 0; }
.the-section-lg { padding: var(--space-xl) 0; }
.the-section-sm { padding: var(--space-md) 0; }

.the-section-white { background: var(--brand-white); }
.the-section-light { background: var(--brand-light-grey); }
.the-section-dark  { background: var(--brand-black); color: var(--brand-white); }
.the-section-red   { background: var(--brand-red);   color: var(--brand-white); }

/* ============================================
   TRUST BAR
   ============================================ */
.the-trust-bar {
  background: var(--brand-black);
  padding: 18px 0;
  overflow: hidden;
}

.the-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.the-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-white);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.the-trust-bar__item svg,
.the-trust-bar__item img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.the-trust-bar__divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .the-trust-bar__inner { gap: 20px; }
  .the-trust-bar__divider { display: none; }
  .the-trust-bar__item { font-size: var(--text-xs); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.the-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--brand-black);
  overflow: hidden;
}

.the-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.the-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  color: var(--brand-white);
}

.the-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-red-light);
  margin-bottom: 16px;
}

.the-hero__title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--brand-white);
  margin-bottom: 24px;
  max-width: 760px;
}

.the-hero__title span { color: var(--brand-red-light); }

.the-hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.the-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .the-hero { min-height: 70vh; }
  .the-hero__ctas { flex-direction: column; }
  .the-hero__ctas .the-btn { text-align: center; }
}

/* ============================================
   STATS SECTION
   ============================================ */
.the-stats {
  background: var(--brand-red);
  padding: var(--space-md) 0;
}

.the-stats__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.the-stats__item {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
  color: var(--brand-white);
}

.the-stats__item:last-child { border-right: none; }

.the-stats__number {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.the-stats__label {
  font-size: var(--text-sm);
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .the-stats__inner { grid-template-columns: repeat(3, 1fr); }
  .the-stats__item:nth-child(3) { border-right: none; }
}

@media (max-width: 600px) {
  .the-stats__inner { grid-template-columns: repeat(2, 1fr); }
  .the-stats__item { border-right: 1px solid rgba(255,255,255,0.2); border-bottom: 1px solid rgba(255,255,255,0.2); }
  .the-stats__item:nth-child(2n) { border-right: none; }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.the-why { padding: var(--space-lg) 0; background: var(--brand-white); }

.the-why__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.the-why__header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.the-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.the-why__card {
  background: var(--brand-light-grey);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border-top: 4px solid var(--brand-red);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.the-why__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.the-why__icon {
  width: 52px;
  height: 52px;
  background: var(--brand-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.the-why__icon svg { width: 26px; height: 26px; fill: white; }

.the-why__card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brand-black);
}

.the-why__card-text {
  font-size: var(--text-base);
  color: var(--brand-grey);
  line-height: 1.7;
}

@media (max-width: 900px) { .the-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .the-why__grid { grid-template-columns: 1fr; } }

/* ============================================
   PRODUCT LINE
   ============================================ */
.the-products { padding: var(--space-lg) 0; background: var(--brand-light-grey); }

.the-products__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.the-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.the-product-card {
  background: var(--brand-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.the-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.the-product-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #ddd;
}

.the-product-card__img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #ddd 0%, #bbb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: var(--text-sm);
}

.the-product-card__body { padding: 24px; }

.the-product-card__tag {
  display: inline-block;
  background: var(--brand-red);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.the-product-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 8px;
}

.the-product-card__desc {
  font-size: var(--text-sm);
  color: var(--brand-grey);
  margin-bottom: 20px;
  line-height: 1.6;
}

.the-product-card__link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.the-product-card__link::after { content: '→'; }

@media (max-width: 900px) { .the-products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .the-products__grid { grid-template-columns: 1fr; } }

/* ============================================
   TESTIMONIALS
   ============================================ */
.the-testimonials { padding: var(--space-lg) 0; background: var(--brand-black); }

.the-testimonials__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.the-testimonials__header { text-align: center; margin-bottom: var(--space-md); }
.the-testimonials__header .the-section-title { color: var(--brand-white); }
.the-testimonials__header .the-section-label { color: var(--brand-red-light); }

.the-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.the-testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
}

.the-testimonial-card__quote {
  font-size: 48px;
  color: var(--brand-red);
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.the-testimonial-card__stars {
  color: #F1C40F;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.the-testimonial-card__text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.the-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.the-testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--brand-grey);
  flex-shrink: 0;
}

.the-testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-white);
  font-size: var(--text-base);
}

.the-testimonial-card__location {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) { .the-testimonials__grid { grid-template-columns: 1fr; } }

/* ============================================
   MEET THE TEAM
   ============================================ */
.the-team { padding: var(--space-lg) 0; background: var(--brand-white); }

.the-team__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.the-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: var(--space-md);
}

.the-team-card { text-align: center; }

.the-team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  background: #ddd;
}

.the-team-card__name {
  font-size: var(--text-md);
  font-weight: 700;
  margin-bottom: 4px;
}

.the-team-card__role {
  font-size: var(--text-sm);
  color: var(--brand-red);
  font-weight: 600;
}

@media (max-width: 900px) { .the-team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .the-team__grid { grid-template-columns: 1fr 1fr; } }

/* ============================================
   CTA BANNER
   ============================================ */
.the-cta-banner {
  background: var(--brand-red);
  padding: var(--space-lg) 0;
  text-align: center;
}

.the-cta-banner__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.the-cta-banner__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--brand-white);
  margin-bottom: 16px;
}

.the-cta-banner__sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

.the-cta-banner__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FAQ
   ============================================ */
.the-faq { padding: var(--space-lg) 0; background: var(--brand-light-grey); }

.the-faq__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.the-faq__header { text-align: center; margin-bottom: var(--space-md); }

.the-faq__item {
  background: var(--brand-white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid var(--brand-border);
  overflow: hidden;
}

.the-faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--brand-black);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.the-faq__icon {
  width: 24px;
  height: 24px;
  background: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.the-faq__item.active .the-faq__icon { transform: rotate(45deg); }

.the-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.the-faq__answer-inner {
  padding: 0 28px 22px;
  font-size: var(--text-base);
  color: var(--brand-grey);
  line-height: 1.75;
}

/* ============================================
   FOOTER
   ============================================ */
.the-footer {
  background: var(--brand-black);
  color: rgba(255,255,255,0.7);
  padding: var(--space-lg) 0 0;
}

.the-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: var(--space-md);
}

.the-footer__brand-logo { margin-bottom: 16px; max-width: 160px; }

.the-footer__brand-desc {
  font-size: var(--text-sm);
  line-height: 1.75;
  margin-bottom: 24px;
}

.the-footer__social {
  display: flex;
  gap: 12px;
}

.the-footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: background 0.2s;
}

.the-footer__social a:hover { background: var(--brand-red); }

.the-footer__col-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--brand-white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.the-footer__links { list-style: none; padding: 0; margin: 0; }
.the-footer__links li { margin-bottom: 10px; }
.the-footer__links a { color: rgba(255,255,255,0.6); font-size: var(--text-sm); transition: color 0.2s; }
.the-footer__links a:hover { color: var(--brand-red-light); }

.the-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .the-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .the-footer__inner { grid-template-columns: 1fr; }
}

/* ============================================
   FEATURED PROJECTS GALLERY
   ============================================ */
.the-projects { padding: var(--space-lg) 0; background: var(--brand-white); }

.the-projects__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.the-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: var(--space-md);
}

.the-project-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.the-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.the-project-card:hover img { transform: scale(1.05); }

.the-project-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--brand-overlay);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.the-project-card:hover .the-project-card__overlay { opacity: 1; }

.the-project-card__info { color: white; }
.the-project-card__name { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-md); }
.the-project-card__loc  { font-size: var(--text-sm); opacity: 0.8; }

@media (max-width: 768px) { .the-projects__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .the-projects__grid { grid-template-columns: 1fr; } }

/* ============================================
   PROCESS SECTION
   ============================================ */
.the-process { padding: var(--space-lg) 0; background: var(--brand-light-grey); }

.the-process__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.the-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: var(--space-md);
  position: relative;
}

.the-process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--brand-red);
  z-index: 0;
}

.the-process__step { text-align: center; position: relative; z-index: 1; }

.the-process__num {
  width: 72px;
  height: 72px;
  background: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 900;
  color: white;
  margin: 0 auto 20px;
  border: 4px solid var(--brand-white);
  box-shadow: var(--shadow-md);
}

.the-process__step-title {
  font-size: var(--text-md);
  font-weight: 700;
  margin-bottom: 8px;
}

.the-process__step-text {
  font-size: var(--text-sm);
  color: var(--brand-grey);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .the-process__steps { grid-template-columns: repeat(2, 1fr); }
  .the-process__steps::before { display: none; }
}
@media (max-width: 480px) {
  .the-process__steps { grid-template-columns: 1fr; }
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.the-video { padding: var(--space-lg) 0; background: var(--brand-black); }

.the-video__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.the-video__header { margin-bottom: var(--space-md); }
.the-video__header .the-section-title { color: var(--brand-white); }

.the-video__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.the-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   LEAD MAGNET / DOWNLOAD CTA
   ============================================ */
.the-downloads { padding: var(--space-lg) 0; background: var(--brand-white); }

.the-downloads__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.the-downloads__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--space-md);
}

.the-download-card {
  border: 2px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.the-download-card:hover {
  border-color: var(--brand-red);
  box-shadow: var(--shadow-md);
}

.the-download-card__icon {
  width: 64px;
  height: 64px;
  background: var(--brand-light-grey);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.the-download-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 10px;
}

.the-download-card__desc {
  font-size: var(--text-sm);
  color: var(--brand-grey);
  margin-bottom: 24px;
  line-height: 1.6;
}

@media (max-width: 768px) { .the-downloads__grid { grid-template-columns: 1fr; } }

/* ============================================
   CERTIFICATION BADGES SECTION
   ============================================ */
.the-certs { padding: var(--space-md) 0; background: var(--brand-white); border-top: 1px solid var(--brand-border); border-bottom: 1px solid var(--brand-border); }

.the-certs__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.the-cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.the-cert-item img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.2s;
}

.the-cert-item:hover img { filter: none; }

.the-cert-item__label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--brand-grey);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   STICKY QUOTE BUTTON (MOBILE)
   ============================================ */
.the-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--brand-red);
  padding: 14px 20px;
  text-align: center;
}

.the-sticky-cta a {
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.elementor-sticky.elementor-sticky--active.elementor-section--handles-inside {
	background: white !important;
}
.hfe-nav-menu > li:nth-last-child(2) > a {
    background: none;
    color: white !important;
    padding: 8px 12px;
	width: 100%;
	border: 1px solid white !important;
    border-radius: 6px;
    display: inline-block;
}
.hfe-nav-menu > li:last-child .menu-item.menu-item-type-custom.menu-item-object-custom.parent.hfe-creative-menu {
    background: #B92B30;
    color: white !important;
    padding: 12px 22px;
    border-radius: 6px;
    display: inline-block;
	background: #B92B30 !important;
}
.main-heading h2{
	font-size: 48px !important;
}
@media(max-width:768px) {
    .w-100 a{
        width: 100% !important;
    }
	.main-heading h2{
	font-size: 32px !important;
}
}
@media (max-width: 768px) { .the-sticky-cta { display: block; } }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-white  { color: var(--brand-white); }
.text-red    { color: var(--brand-red); }
.text-grey   { color: var(--brand-grey); }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media(max-width:1026px){
.navbar-cont {
    width: 50% !important;
    align-items: flex-end;
    margin: 0 !important;
    justify-content: flex-end;
    display: flex;
}
}
@media(max-width:550px) {
    
	.main-heading h2{
	font-size: 28px !important;
}
}
@media (max-width: 1024px) {

    .hfe-nav-menu__layout-horizontal[data-full-width="yes"]{
        left:0 !important;
        right:0 !important;
        width:100vw !important;
        max-width:100vw !important;
    }

}