/* ============================================
   SMARDEIN — Home Web Design Page Styles
   home-web.css
   ============================================ */
/* Brand colours */
:root {
  --charcoal-black: #121212;
  --charcoal: #2B2B2B;
  --slate-grey: #4A4A4A;
  --gold: #C9A227;
  --gold-hover: #D4AF37;
  --gold-muted: #D9C08A;
  --ivory: #F7F5F0;
  --grey-soft: #D9D9D9;
  --gold-light: #F4D160;
  --bronze: #B8860B;
  --white: #FFFFFF;
}



/* ── BODY OVERRIDE for light sections ─────── */
body.page-home {
  background: var(--light-bg-1);
  color: var(--charcoal);
}

body.page-home p {
  color: var(--slate-grey);
}

/* ── SHARED SECTION UTILITIES ─────────────── */
.hw-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.hw-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 100px;
}

.hw-label--dark {
  background: var(--ivory);
  color: var(--slate-grey);
  border: 1px solid var(--gold-muted);
}

.hw-label--light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--ivory);
  border: 1px solid rgba(217, 192, 138, 0.4);
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hw-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 160px 24px 100px;
  background: var(--charcoal-black);
}

.hw-hero-bg,
.hw-hero-img,
.hw-hero-overlay {
  display: none;
}

.hw-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hw-hero-content {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hw-hero-overline {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.28);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hw-hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hw-hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hw-hero .hw-hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.8;
  color: var(--grey-soft);
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hw-hero-sub strong {
  color: var(--white);
  font-weight: 600;
}

.hw-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: 28px;
}

.hw-btn-hero {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.hw-hero .hw-hero-note {
  font-size: 0.8rem;
  color: rgba(217, 192, 138, 0.5);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════ */
.hw-problem {
  background: var(--white);
}

.hw-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hw-problem-text h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--charcoal-black);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hw-problem-text p {
  color: var(--slate-grey);
  margin-bottom: 16px;
  line-height: 1.8;
}

.hw-problem-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hw-problem-card {
  background: var(--light-bg-1);
  border: 1px solid var(--ivory);
  border-radius: 12px;
  padding: 28px 28px 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s;
  cursor: default;
}

.hw-problem-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 40px rgba(74, 74, 74, 0.12);
  border-color: var(--gold-muted);
}

.hw-problem-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--ivory);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.28s, color 0.28s;
}

.hw-problem-card:hover .hw-problem-card-icon {
  background: var(--gold-metallic);
  color: var(--white);
}

.hw-problem-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal-black);
  margin-bottom: 6px;
}

.hw-problem-card p {
  font-size: 0.88rem;
  color: var(--slate-grey);
  margin: 0;
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   VALUE PROPOSITION
════════════════════════════════════════════ */
.hw-value {
  background: var(--ivory);
}

.hw-value-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.hw-value-intro h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--charcoal-black);
  margin-bottom: 18px;
  line-height: 1.2;
}

.hw-value-lead {
  font-size: 1.05rem;
  color: var(--slate-grey);
  line-height: 1.8;
}

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

.hw-value-pillar {
  background: var(--white);
  border: 1px solid rgba(217, 192, 138, 0.4);
  border-radius: 16px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.32s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.32s;
}

.hw-value-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-metallic);
  opacity: 0;
  transition: opacity 0.32s;
}

.hw-value-pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(74, 74, 74, 0.14);
  border-color: var(--gold);
}

.hw-value-pillar:hover::before {
  opacity: 1;
}

.hw-value-pillar-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 20px;
  font-family: var(--font-display);
  transition: color 0.32s;
}

.hw-value-pillar:hover .hw-value-pillar-num {
  color: var(--gold-muted);
}

.hw-value-pillar h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--charcoal-black);
  margin-bottom: 14px;
}

.hw-value-pillar p {
  font-size: 0.92rem;
  color: var(--slate-grey);
  line-height: 1.75;
  margin: 0;
}

/* ════════════════════════════════════════════
   BENEFITS
════════════════════════════════════════════ */
.hw-benefits {
  background: var(--white);
}

.hw-benefits-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.hw-benefits-header h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--charcoal-black);
  margin-bottom: 0;
}

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

.hw-benefit-card {
  background: var(--light-bg-1);
  border: 1px solid var(--ivory);
  border-radius: 14px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
}

.hw-benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 162, 39, 0.05);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 14px;
}

.hw-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(74, 74, 74, 0.13);
  background: var(--white);
}

.hw-benefit-card:hover::after {
  opacity: 1;
}

.hw-benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--ivory);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  position: relative;
  z-index: 1;
}

.hw-benefit-card:hover .hw-benefit-icon {
  background: var(--gold-metallic);
  color: var(--white);
  transform: scale(1.08) rotate(-3deg);
}

.hw-benefit-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal-black);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.hw-benefit-card p {
  font-size: 0.88rem;
  color: var(--slate-grey);
  line-height: 1.75;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════
   CTA #1
════════════════════════════════════════════ */
.hw-cta1 {
  background: var(--charcoal);
  padding: 80px 0;
}

.hw-cta1-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.hw-cta1-inner h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hw-cta1-inner h2 em {
  font-style: italic;
  color: var(--gold-muted);
}

.hw-cta1 .hw-cta1-inner p {
  color: var(--grey-soft);
  margin-bottom: 36px;
  font-size: 1.02rem;
}

.hw-cta1-btn {
  padding: 17px 48px;
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
}

.hw-cta1-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.14);
  width: 30%;
  transform: skewX(-20deg) translateX(-250%);
  transition: transform 0.5s ease;
}

.hw-cta1-btn:hover::after {
  transform: skewX(-20deg) translateX(350%);
}

.hw-cta1 .hw-cta1-inner .hw-cta1-note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: rgba(217, 192, 138, 0.6);
}

/* ════════════════════════════════════════════
   PROCESS / HOW IT WORKS
════════════════════════════════════════════ */
.hw-process {
  background: var(--ivory);
}

.hw-process-intro {
  max-width: 640px;
  margin-bottom: 64px;
}

.hw-process-intro h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--charcoal-black);
  margin-bottom: 16px;
}

.hw-process-intro p {
  color: var(--slate-grey);
}

.hw-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hw-process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.hw-process-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.hw-process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.hw-process-step:hover .hw-process-num {
  background: var(--gold-metallic);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.18);
}

.hw-process-line {
  width: 2px;
  height: 60px;
  background: rgba(217, 192, 138, 0.4);
  margin: 8px 0;
}

.hw-process-line--last {
  background: transparent;
}

.hw-process-step-body {
  background: var(--white);
  border: 1px solid rgba(217, 192, 138, 0.4);
  border-radius: 14px;
  padding: 32px 36px;
  margin-bottom: 12px;
  flex: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s;
}

.hw-process-step:hover .hw-process-step-body {
  transform: translateX(8px);
  box-shadow: 0 10px 40px rgba(74, 74, 74, 0.1);
  border-color: var(--gold);
}

.hw-process-step-body h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal-black);
  margin-bottom: 10px;
}

.hw-process-step-body p {
  font-size: 0.9rem;
  color: var(--slate-grey);
  margin: 0 0 12px;
  line-height: 1.75;
}

.hw-process-time {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--ivory);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ════════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
.hw-pricing {
  background: var(--white);
}

.hw-pricing-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.hw-pricing-intro h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--charcoal-black);
  margin-bottom: 16px;
}

.hw-pricing-intro p {
  color: var(--slate-grey);
}

.hw-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.hw-pricing-card {
  background: var(--light-bg-1);
  border: 1px solid var(--ivory);
  border-radius: 20px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.hw-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(74, 74, 74, 0.13);
}

.hw-pricing-card--featured {
  background: var(--charcoal);
  border-color: var(--slate-grey);
}

.hw-pricing-card--featured:hover {
  box-shadow: 0 24px 60px rgba(43, 43, 43, 0.4);
}

.hw-pricing-badge {
  display: inline-block;
  background: var(--gold-metallic);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hw-pricing-year {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 10px;
}

.hw-pricing-card:not(.hw-pricing-card--featured) .hw-pricing-year {
  color: var(--gold);
}

.hw-pricing-price {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.hw-pricing-card:not(.hw-pricing-card--featured) .hw-pricing-price {
  color: var(--charcoal-black);
}

.hw-pricing-per {
  font-size: 1.1rem;
  color: var(--gold-muted);
  margin-bottom: 6px;
}

.hw-pricing-card:not(.hw-pricing-card--featured) .hw-pricing-per {
  color: var(--gold);
}

.hw-pricing-desc {
  font-size: 0.88rem;
  color: rgba(217, 192, 138, 0.8);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hw-pricing-card:not(.hw-pricing-card--featured) .hw-pricing-desc {
  color: var(--slate-grey);
}

.hw-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hw-pricing-list li {
  font-size: 0.88rem;
  color: var(--grey-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.hw-pricing-card:not(.hw-pricing-card--featured) .hw-pricing-list li {
  color: var(--slate-grey);
}

.hw-check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.hw-pricing-card--featured .hw-check {
  color: var(--gold-muted);
}

.hw-check--muted {
  color: var(--gold-muted);
  opacity: 0.4;
}

.hw-pricing-cta {
  width: 100%;
  justify-content: center;
  padding: 15px 32px;
}

.hw-pricing-note {
  text-align: center;
  margin-top: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hw-pricing-note p {
  font-size: 0.82rem;
  color: var(--gold-muted);
  color: var(--gold);
  opacity: 0.8;
}

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.hw-faq {
  background: var(--ivory);
}

.hw-faq-intro {
  max-width: 560px;
  margin-bottom: 56px;
}

.hw-faq-intro h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--charcoal-black);
}

.hw-faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hw-faq-item {
  background: var(--white);
  border: 1px solid rgba(217, 192, 138, 0.4);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.28s, box-shadow 0.28s;
}

.hw-faq-item:hover {
  border-color: var(--gold-muted);
  box-shadow: 0 6px 24px rgba(74, 74, 74, 0.08);
}

.hw-faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.12);
}

.hw-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--charcoal-black);
  transition: color 0.25s;
}

.hw-faq-q:hover {
  color: var(--gold);
}

.hw-faq-item.open .hw-faq-q {
  color: var(--gold);
}

.hw-faq-arrow {
  flex-shrink: 0;
  color: var(--gold-muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
}

.hw-faq-item.open .hw-faq-arrow {
  transform: rotate(180deg);
  color: var(--gold);
}

.hw-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 28px;
}

.hw-faq-item.open .hw-faq-a {
  max-height: 400px;
  padding: 0 28px 24px;
}

.hw-faq-a p {
  font-size: 0.9rem;
  color: var(--slate-grey);
  line-height: 1.8;
  margin: 0;
}

/* ════════════════════════════════════════════
   CTA #2 — Contact Form
════════════════════════════════════════════ */
.hw-cta2 {
  background: var(--charcoal);
}

.hw-cta2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hw-cta2-text h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.hw-cta2 .hw-cta2-text p {
  color: var(--grey-soft);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hw-cta2-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hw-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gold-muted);
}

.hw-trust-icon {
  color: var(--gold);
  font-weight: 700;
}

/* Form */
.hw-cta2-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(217, 192, 138, 0.2);
  border-radius: 20px;
  padding: 44px;
  backdrop-filter: blur(16px);
}

.hw-form-group {
  margin-bottom: 20px;
}

.hw-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-soft);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.hw-form-req {
  color: var(--color-error);
}

.hw-form-input,
.hw-form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(217, 192, 138, 0.25);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.hw-form-input::placeholder,
.hw-form-textarea::placeholder {
  color: rgba(217, 192, 138, 0.4);
}

.hw-form-input:focus,
.hw-form-textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.hw-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.hw-form-status {
  min-height: 20px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.hw-form-status.success {
  color: var(--color-success);
}

.hw-form-status.error {
  color: var(--color-error);
}

.hw-form-submit {
  width: 100%;
  padding: 15px 32px;
  font-size: 1rem;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.hw-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.hw-cta2 .hw-form-note {
  text-align: center;
  font-size: 0.76rem;
  color: rgba(217, 192, 138, 0.5);
  margin-top: 12px;
  margin-bottom: 0;
}

/* ════════════════════════════════════════════
   URGENCY & FINAL PUSH
════════════════════════════════════════════ */
.hw-urgency {
  background: var(--charcoal-black);
  padding: 100px 0;
}

.hw-urgency-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.hw-urgency-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
}

.hw-urgency-days {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  transition: color 0.3s;
}

.hw-urgency-days-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(217, 192, 138, 0.55);
  max-width: 320px;
  text-align: center;
}

.hw-urgency-inner h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hw-urgency .hw-urgency-inner p {
  color: var(--grey-soft);
  margin-bottom: 14px;
  line-height: 1.8;
}

.hw-urgency-btn {
  padding: 17px 48px;
  font-size: 1.05rem;
  margin: 36px 0 20px;
  display: inline-flex;
}

.hw-urgency .hw-urgency-inner .hw-urgency-sub {
  font-size: 0.85rem;
  color: rgba(217, 192, 138, 0.55);
  margin: 0;
}

.hw-urgency-email {
  color: var(--gold-muted);
  text-decoration: underline;
  transition: color 0.25s;
}

.hw-urgency-email:hover {
  color: var(--white);
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hw-problem-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hw-value-pillars {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hw-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hw-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .hw-cta2-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .hw-hero-cta {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  .hw-btn-hero {
    padding: 11px 18px;
    font-size: 0.82rem;
  }

  /* Hero: switch to portrait image, center text */
  .hw-hero {
    padding: 120px 0 60px;
    min-height: 520px;
  }

  .hw-hero-bg--desktop {
    display: none;
  }

  .hw-hero-bg--mobile {
    display: block;
  }

  /* Force portrait 4:5 ratio via padded container */
  .hw-hero-bg--mobile {
    aspect-ratio: 4/5;
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .hw-hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hw-hero-cta {
    justify-content: center;
  }

  .hw-hero-note {
    text-align: center;
  }

  /* Benefits 1 col on mobile */
  .hw-benefits-grid {
    grid-template-columns: 1fr;
  }

  .hw-cta2-form {
    padding: 28px 20px;
  }

  .hw-process-step-body {
    padding: 24px 20px;
  }

  .hw-pricing-card {
    padding: 36px 28px;
  }
}

/* ── Extracted from inline styles in website.html ── */
.hw2-1 {
  border-radius: 4px;
  padding: 2px;
}

.hw2-2 {
  margin-top: 16px;
}

/* ── FOOTER (this page never set its own color, so body.page-home p was winning) ── */
.footer .footer-bottom-copy {
  color: var(--grey-soft);
}