/* ============================================
   HYPERFRAME DIGITAL — MAIN STYLESHEET
   Prefix: hd-
   Design: Textured Modern, Warm Dark
============================================ */


:root {
  --hd-bg: #1a1612;
  --hd-bg-2: #1e1a15;
  --hd-surface: #221e19;
  --hd-surface-2: #2a2420;
  --hd-surface-3: #312b25;
  --hd-text: #e8e0d5;
  --hd-text-muted: #9a8f82;
  --hd-text-subtle: #6b6057;
  --hd-accent: #c8854a;
  --hd-accent-warm: #d4956a;
  --hd-accent-deep: #a86835;
  --hd-accent-glow: rgba(200, 133, 74, 0.15);
  --hd-accent-glow-strong: rgba(200, 133, 74, 0.25);
  --hd-border: rgba(200, 133, 74, 0.15);
  --hd-border-subtle: rgba(232, 224, 213, 0.08);
  --hd-nav-h: 72px;

  --hd-shadow-sm: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --hd-shadow-md: 0 4px 6px rgba(0,0,0,0.25), 0 2px 4px rgba(0,0,0,0.2), 0 0 0 1px rgba(200,133,74,0.05);
  --hd-shadow-lg: 0 10px 25px rgba(0,0,0,0.35), 0 4px 10px rgba(0,0,0,0.25), 0 0 0 1px rgba(200,133,74,0.08);
  --hd-shadow-xl: 0 20px 50px rgba(0,0,0,0.4), 0 8px 20px rgba(0,0,0,0.3), 0 0 40px rgba(200,133,74,0.05);
  --hd-shadow-accent: 0 4px 20px rgba(200,133,74,0.3), 0 2px 8px rgba(200,133,74,0.2);

  --hd-radius-sm: 6px;
  --hd-radius-md: 12px;
  --hd-radius-lg: 18px;
  --hd-radius-xl: 24px;
  --hd-radius-full: 9999px;

  --hd-space-xs: 0.5rem;
  --hd-space-sm: 1rem;
  --hd-space-md: 1.5rem;
  --hd-space-lg: 2.5rem;
  --hd-space-xl: 4rem;
  --hd-space-2xl: 6rem;
  --hd-space-3xl: 8rem;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--hd-bg);
  color: var(--hd-text);
  font-family: 'Wix Madefor Text', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: var(--hd-accent); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--hd-accent-warm); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Wix Madefor Display', sans-serif;
  line-height: 1.2;
  color: var(--hd-text);
  font-weight: 700;
}


.hd-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hd-hero-title em {
  font-style: normal;
  color: var(--hd-accent);
  position: relative;
}

.hd-page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hd-section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.hd-section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hd-accent);
  background: var(--hd-accent-glow);
  border: 1px solid var(--hd-border);
  padding: 0.3rem 0.8rem;
  border-radius: var(--hd-radius-full);
  margin-bottom: 1rem;
}

.hd-section-sub {
  color: var(--hd-text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.hd-section-header {
  text-align: center;
  margin-bottom: var(--hd-space-xl);
}


.hd-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}


.hd-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hd-nav-h);
  background: var(--hd-bg);
  z-index: 1000;
  border-bottom: 1px solid var(--hd-border);
  transition: box-shadow 0.3s ease;
}

.hd-nav.hd-nav-scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 1px 6px rgba(0,0,0,0.3);
}

.hd-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hd-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.hd-nav-logo img { height: 36px; width: auto; }

.hd-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.hd-nav-links a {
  color: var(--hd-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.hd-nav-links a:hover,
.hd-nav-links a.hd-nav-active { color: var(--hd-accent); }

.hd-nav-cta {
  background: var(--hd-accent) !important;
  color: #1a1612 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--hd-radius-sm) !important;
  font-weight: 600 !important;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease !important;
}

.hd-nav-cta:hover {
  background: var(--hd-accent-warm) !important;
  transform: translateY(-1px) !important;
  box-shadow: var(--hd-shadow-accent) !important;
}

.hd-progress-bar {
  position: fixed;
  top: var(--hd-nav-h);
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--hd-accent), var(--hd-accent-warm));
  z-index: 999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(200,133,74,0.5);
}


.hd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hd-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hd-text);
  transition: all 0.3s ease;
  border-radius: 2px;
}


.hd-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: var(--hd-surface);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

.hd-mobile-menu.hd-menu-open {
  transform: translateY(0);
  pointer-events: all;
}

.hd-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 2rem;
}

.hd-mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.hd-mobile-nav-links li {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  width: 100%;
  text-align: center;
}

.hd-mobile-menu.hd-menu-open .hd-mobile-nav-links li:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.hd-mobile-menu.hd-menu-open .hd-mobile-nav-links li:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.hd-mobile-menu.hd-menu-open .hd-mobile-nav-links li:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.hd-mobile-menu.hd-menu-open .hd-mobile-nav-links li:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.34s; }
.hd-mobile-menu.hd-menu-open .hd-mobile-nav-links li:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.42s; }

.hd-mobile-nav-links a {
  display: block;
  color: var(--hd-text);
  text-decoration: none;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  transition: color 0.25s ease;
  border-radius: var(--hd-radius-md);
}

.hd-mobile-nav-links a:hover { color: var(--hd-accent); }

.hd-mobile-close {
  background: none;
  border: 1px solid var(--hd-border);
  color: var(--hd-text-muted);
  padding: 0.75rem 2rem;
  border-radius: var(--hd-radius-full);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Wix Madefor Text', sans-serif;
}

.hd-mobile-close:hover {
  border-color: var(--hd-accent);
  color: var(--hd-accent);
}


.hd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--hd-radius-sm);
  font-family: 'Wix Madefor Text', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.hd-btn-primary {
  background: var(--hd-accent);
  color: #1a1612;
  box-shadow: var(--hd-shadow-sm);
}

.hd-btn-primary:hover {
  background: var(--hd-accent-warm);
  color: #1a1612;
  transform: translateY(-2px);
  box-shadow: var(--hd-shadow-accent);
}

.hd-btn-ghost {
  background: transparent;
  color: var(--hd-text);
  border: 1px solid var(--hd-border);
}

.hd-btn-ghost:hover {
  border-color: var(--hd-accent);
  color: var(--hd-accent);
  transform: translateY(-2px);
}

.hd-btn-large {
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
}

.hd-btn-full { width: 100%; justify-content: center; }


.hd-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--hd-accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
  margin-top: 1.5rem;
}

.hd-link-arrow:hover {
  color: var(--hd-accent-warm);
  gap: 0.75rem;
}


.hd-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.045;
  pointer-events: none;
  width: 100%;
  height: 100%;
}


.hd-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--hd-nav-h);
  position: relative;
  overflow: hidden;
}

.hd-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200,133,74,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(180,110,50,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #1a1612 0%, #1e1a15 50%, #221e19 100%);
  z-index: 0;
}

.hd-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: var(--hd-space-3xl) 2rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hd-hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hd-accent);
  background: var(--hd-accent-glow);
  border: 1px solid var(--hd-border);
  padding: 0.3rem 0.8rem;
  border-radius: var(--hd-radius-full);
  margin-bottom: 1.5rem;
}

.hd-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--hd-text-muted);
  line-height: 1.7;
  margin: 1.5rem 0 2.5rem;
  max-width: 480px;
}

.hd-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hd-hero-visual { position: relative; }

.hd-hero-img-wrap {
  position: relative;
  border-radius: var(--hd-radius-xl);
  overflow: hidden;
  box-shadow: var(--hd-shadow-xl);
}

.hd-hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: var(--hd-radius-xl);
}

.hd-hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--hd-surface);
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--hd-text);
  box-shadow: var(--hd-shadow-lg);
  backdrop-filter: blur(8px);
}

.hd-badge-icon {
  width: 32px;
  height: 32px;
  background: var(--hd-accent-glow);
  border-radius: var(--hd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hd-accent);
  font-size: 0.9rem;
}


.hd-intro-strip {
  background: var(--hd-surface);
  border-top: 1px solid var(--hd-border);
  border-bottom: 1px solid var(--hd-border);
  padding: 1.25rem 0;
  position: relative;
  z-index: 2;
}

.hd-intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hd-text-muted);
  letter-spacing: 0.02em;
}

.hd-strip-dot {
  color: var(--hd-accent);
  font-size: 0.4rem;
}


.hd-about {
  padding: var(--hd-space-3xl) 0;
  background: linear-gradient(180deg, var(--hd-bg) 0%, var(--hd-bg-2) 100%);
}

.hd-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hd-about-img-wrap {
  position: relative;
  border-radius: var(--hd-radius-xl);
  overflow: visible;
}

.hd-about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--hd-radius-xl);
  box-shadow: var(--hd-shadow-xl);
}

.hd-about-float-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--hd-surface-2);
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius-lg);
  padding: 1.25rem 1.5rem;
  max-width: 220px;
  box-shadow: var(--hd-shadow-lg);
}

.hd-about-float-card i {
  color: var(--hd-accent);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  display: block;
}

.hd-about-float-card p {
  font-size: 0.85rem;
  color: var(--hd-text-muted);
  line-height: 1.5;
}

.hd-about-text-col p {
  color: var(--hd-text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}


.hd-bento {
  padding: var(--hd-space-3xl) 0;
  background: var(--hd-bg-2);
}

.hd-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}

.hd-bento-large { grid-column: span 2; grid-row: span 2; }
.hd-bento-medium { grid-column: span 1; }
.hd-bento-small { grid-column: span 1; }
.hd-bento-wide { grid-column: span 3; }

.hd-bento-card {
  background: var(--hd-surface);
  border: 1px solid var(--hd-border-subtle);
  border-radius: var(--hd-radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: var(--hd-shadow-md);
}

.hd-bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--hd-accent-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hd-bento-card:hover {
  border-color: var(--hd-border);
  box-shadow: var(--hd-shadow-lg);
  transform: translateY(-3px);
}

.hd-bento-card:hover::before { opacity: 1; }

.hd-bento-icon {
  width: 44px;
  height: 44px;
  background: var(--hd-accent-glow);
  border-radius: var(--hd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hd-accent);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.hd-bento-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--hd-text);
}

.hd-bento-card p {
  font-size: 0.92rem;
  color: var(--hd-text-muted);
  line-height: 1.65;
}

.hd-bento-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--hd-radius-md);
  margin-top: 1.5rem;
}

.hd-bento-tag {
  display: inline-block;
  background: var(--hd-accent-glow);
  color: var(--hd-accent);
  border: 1px solid var(--hd-border);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--hd-radius-full);
  margin-top: 1rem;
}


.hd-scroll-section {
  padding: var(--hd-space-3xl) 0;
  background: var(--hd-bg);
  overflow: hidden;
}

.hd-scroll-track-wrap {
  position: relative;
  margin-top: 2rem;
}

.hd-scroll-track {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 2rem 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.hd-scroll-track::-webkit-scrollbar { display: none; }
.hd-scroll-track:active { cursor: grabbing; }

.hd-scroll-card {
  flex: 0 0 320px;
  background: var(--hd-surface);
  border: 1px solid var(--hd-border-subtle);
  border-radius: var(--hd-radius-lg);
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--hd-shadow-md);
}

.hd-scroll-card:hover {
  border-color: var(--hd-border);
  transform: translateY(-4px);
  box-shadow: var(--hd-shadow-lg);
}

.hd-scroll-card-num {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--hd-surface-3);
  line-height: 1;
  margin-bottom: 1rem;
}

.hd-scroll-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--hd-text);
}

.hd-scroll-card p {
  font-size: 0.9rem;
  color: var(--hd-text-muted);
  line-height: 1.65;
}

.hd-scroll-card-icon {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: var(--hd-accent);
  font-size: 1.2rem;
  opacity: 0.6;
}

.hd-scroll-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem 0;
}

.hd-scroll-btn {
  width: 44px;
  height: 44px;
  background: var(--hd-surface);
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius-full);
  color: var(--hd-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  font-size: 0.9rem;
}

.hd-scroll-btn:hover {
  background: var(--hd-accent-glow);
  border-color: var(--hd-accent);
  color: var(--hd-accent);
}


.hd-timeline {
  padding: var(--hd-space-3xl) 0;
  background: linear-gradient(180deg, var(--hd-bg-2) 0%, var(--hd-surface) 100%);
}

.hd-timeline-track {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.hd-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--hd-border) 10%, var(--hd-border) 90%, transparent 100%);
  transform: translateX(-50%);
}

.hd-timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2.5rem);
  margin-bottom: 3rem;
  position: relative;
}

.hd-timeline-right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2.5rem);
}

.hd-timeline-dot {
  position: absolute;
  left: 50%;
  top: 1.2rem;
  width: 14px;
  height: 14px;
  background: var(--hd-surface-2);
  border: 2px solid var(--hd-accent);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.hd-timeline-dot-accent {
  background: var(--hd-accent);
  box-shadow: 0 0 12px rgba(200,133,74,0.5);
}

.hd-timeline-content {
  background: var(--hd-surface-2);
  border: 1px solid var(--hd-border-subtle);
  border-radius: var(--hd-radius-lg);
  padding: 1.5rem;
  max-width: 320px;
  box-shadow: var(--hd-shadow-md);
  transition: border-color 0.3s ease;
}

.hd-timeline-content:hover { border-color: var(--hd-border); }

.hd-timeline-week {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hd-accent);
  margin-bottom: 0.5rem;
}

.hd-timeline-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hd-timeline-content p {
  font-size: 0.9rem;
  color: var(--hd-text-muted);
  line-height: 1.6;
}


.hd-comparison {
  padding: var(--hd-space-3xl) 0;
  background: var(--hd-bg);
}

.hd-table-wrap {
  overflow-x: auto;
  border-radius: var(--hd-radius-lg);
  box-shadow: var(--hd-shadow-xl);
}

.hd-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--hd-surface);
  border-radius: var(--hd-radius-lg);
  overflow: hidden;
  min-width: 600px;
}

.hd-compare-table thead tr {
  background: var(--hd-surface-2);
}

.hd-th-feature {
  padding: 1.5rem;
  text-align: left;
  font-size: 0.85rem;
  color: var(--hd-text-muted);
  font-weight: 600;
  width: 35%;
}

.hd-th-tier {
  padding: 1.5rem 1rem;
  text-align: center;
  vertical-align: top;
}

.hd-th-tier.hd-tier-recommended {
  background: var(--hd-accent-glow);
  position: relative;
}

.hd-th-tier.hd-tier-recommended::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--hd-accent);
}

.hd-tier-name {
  display: block;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hd-text);
  margin-bottom: 0.3rem;
}

.hd-tier-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--hd-text-muted);
  font-weight: 400;
}

.hd-recommended-badge {
  display: inline-block;
  background: var(--hd-accent);
  color: #1a1612;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--hd-radius-full);
  margin-bottom: 0.5rem;
}

.hd-compare-table tbody tr {
  border-top: 1px solid var(--hd-border-subtle);
  transition: background 0.2s ease;
}

.hd-compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.hd-compare-table tbody td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--hd-text-muted);
}

.hd-compare-table tbody td:first-child {
  color: var(--hd-text);
  font-weight: 500;
}

.hd-compare-table tbody td:not(:first-child) { text-align: center; }

.hd-cell-recommended { background: rgba(200,133,74,0.05); }

.hd-check { color: var(--hd-accent); font-size: 1rem; }
.hd-minus { color: var(--hd-text-subtle); font-size: 0.85rem; }

.hd-compare-table tfoot tr { border-top: 2px solid var(--hd-border); }
.hd-compare-table tfoot td { padding: 1.25rem 1rem; text-align: center; }

.hd-table-cta {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius-sm);
  color: var(--hd-text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hd-table-cta:hover {
  border-color: var(--hd-accent);
  color: var(--hd-accent);
}

.hd-table-cta-primary {
  background: var(--hd-accent);
  border-color: var(--hd-accent);
  color: #1a1612;
}

.hd-table-cta-primary:hover {
  background: var(--hd-accent-warm);
  border-color: var(--hd-accent-warm);
  color: #1a1612;
}


.hd-cta-section {
  padding: var(--hd-space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.hd-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200,133,74,0.15) 0%, transparent 70%),
    linear-gradient(135deg, var(--hd-surface) 0%, var(--hd-surface-2) 100%);
  z-index: 0;
}

.hd-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.hd-cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.hd-cta-text p {
  color: var(--hd-text-muted);
  font-size: 1rem;
}

.hd-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}


.hd-footer {
  background: var(--hd-surface);
  border-top: 1px solid var(--hd-border);
  padding: var(--hd-space-xl) 0 0;
  margin-top: auto;
}

.hd-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--hd-space-xl);
  border-bottom: 1px solid var(--hd-border-subtle);
}

.hd-footer-logo { height: 32px; width: auto; margin-bottom: 1rem; }

.hd-footer-brand p {
  font-size: 0.9rem;
  color: var(--hd-text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 320px;
}

.hd-footer-address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--hd-text-muted);
  line-height: 2;
}

.hd-footer-address a {
  color: var(--hd-text-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.hd-footer-address a:hover { color: var(--hd-accent); }

.hd-footer-address i {
  color: var(--hd-accent);
  margin-right: 0.5rem;
  width: 14px;
}

.hd-footer-nav h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hd-text);
  margin-bottom: 1rem;
}

.hd-footer-nav ul { list-style: none; }

.hd-footer-nav ul li { margin-bottom: 0.5rem; }

.hd-footer-nav ul a {
  color: var(--hd-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.hd-footer-nav ul a:hover { color: var(--hd-accent); }

.hd-footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}

.hd-footer-bottom p {
  font-size: 0.82rem;
  color: var(--hd-text-subtle);
}


.hd-page-hero {
  padding: calc(var(--hd-nav-h) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--hd-bg) 0%, var(--hd-bg-2) 100%);
}

.hd-page-hero-short {
  padding-bottom: 3rem;
}

.hd-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hd-page-hero-sub {
  color: var(--hd-text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 1rem;
}


.hd-profiles {
  padding: var(--hd-space-3xl) 0;
  background: var(--hd-bg);
}

.hd-profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.hd-profile-card {
  background: var(--hd-surface);
  border: 1px solid var(--hd-border-subtle);
  border-radius: var(--hd-radius-lg);
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--hd-shadow-md);
}

.hd-profile-card:hover {
  border-color: var(--hd-border);
  transform: translateY(-3px);
  box-shadow: var(--hd-shadow-lg);
}

.hd-profile-icon {
  width: 48px;
  height: 48px;
  background: var(--hd-accent-glow);
  border-radius: var(--hd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hd-accent);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.hd-profile-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hd-profile-card p {
  font-size: 0.9rem;
  color: var(--hd-text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}


.hd-not-for {
  padding: var(--hd-space-3xl) 0;
  background: var(--hd-bg-2);
}

.hd-not-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hd-not-for-col p {
  color: var(--hd-text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.hd-not-for-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--hd-radius-xl);
  box-shadow: var(--hd-shadow-xl);
}


.hd-approach {
  padding: var(--hd-space-3xl) 0;
  background: var(--hd-surface);
}

.hd-approach-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hd-approach-card {
  background: var(--hd-surface-2);
  border: 1px solid var(--hd-border-subtle);
  border-radius: var(--hd-radius-lg);
  padding: 1.75rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.hd-approach-card:hover {
  border-color: var(--hd-border);
  transform: translateY(-3px);
}

.hd-approach-num {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--hd-accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}

.hd-approach-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.hd-approach-card p {
  font-size: 0.88rem;
  color: var(--hd-text-muted);
  line-height: 1.6;
}


.hd-outcomes {
  padding: var(--hd-space-3xl) 0;
  background: var(--hd-bg);
}

.hd-outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hd-outcome-item {
  display: flex;
  gap: 1.5rem;
  background: var(--hd-surface);
  border: 1px solid var(--hd-border-subtle);
  border-radius: var(--hd-radius-lg);
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.hd-outcome-item:hover {
  border-color: var(--hd-border);
  transform: translateY(-2px);
}

.hd-outcome-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--hd-accent-glow);
  border-radius: var(--hd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hd-accent);
  font-size: 1.2rem;
}

.hd-outcome-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.hd-outcome-text p {
  font-size: 0.9rem;
  color: var(--hd-text-muted);
  line-height: 1.65;
}


.hd-deep-dive {
  padding: var(--hd-space-3xl) 0;
  background: var(--hd-bg-2);
}

.hd-deep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hd-deep-text p {
  color: var(--hd-text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.hd-deep-img-el {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--hd-radius-xl);
  box-shadow: var(--hd-shadow-xl);
}


.hd-what-changes {
  padding: var(--hd-space-3xl) 0;
  background: var(--hd-bg);
}

.hd-changes-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.hd-change-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--hd-surface);
  border: 1px solid var(--hd-border-subtle);
  border-radius: var(--hd-radius-lg);
  padding: 1.5rem;
  transition: border-color 0.3s ease;
}

.hd-change-row:hover { border-color: var(--hd-border); }

.hd-change-before, .hd-change-after {
  padding: 0.75rem;
}

.hd-change-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hd-change-before .hd-change-label { color: var(--hd-text-subtle); }
.hd-change-after .hd-change-label { color: var(--hd-accent); }

.hd-change-before p, .hd-change-after p {
  font-size: 0.9rem;
  color: var(--hd-text-muted);
  line-height: 1.6;
}

.hd-change-after p { color: var(--hd-text); }

.hd-change-arrow {
  color: var(--hd-accent);
  font-size: 1rem;
  opacity: 0.6;
}


.hd-fit-check {
  padding: var(--hd-space-3xl) 0;
  background: var(--hd-bg);
}

.hd-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hd-fit-col {
  background: var(--hd-surface);
  border: 1px solid var(--hd-border-subtle);
  border-radius: var(--hd-radius-xl);
  padding: 2.5rem;
}

.hd-fit-col.hd-fit-yes { border-color: rgba(200,133,74,0.2); }
.hd-fit-col.hd-fit-no { border-color: rgba(154,143,130,0.15); }

.hd-fit-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hd-fit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--hd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hd-fit-icon-yes { background: rgba(200,133,74,0.15); color: var(--hd-accent); }
.hd-fit-icon-no { background: rgba(154,143,130,0.1); color: var(--hd-text-subtle); }

.hd-fit-header h2 { font-size: 1.1rem; font-weight: 700; }

.hd-fit-list { list-style: none; }

.hd-fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--hd-border-subtle);
  font-size: 0.92rem;
  color: var(--hd-text-muted);
  line-height: 1.5;
}

.hd-fit-list li:last-child { border-bottom: none; }

.hd-fit-col.hd-fit-yes .hd-fit-list i { color: var(--hd-accent); margin-top: 0.1rem; flex-shrink: 0; }
.hd-fit-col.hd-fit-no .hd-fit-list i { color: var(--hd-text-subtle); margin-top: 0.1rem; flex-shrink: 0; }


.hd-readiness {
  padding: var(--hd-space-3xl) 0;
  background: var(--hd-bg-2);
}

.hd-readiness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hd-readiness-img-el {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--hd-radius-xl);
  box-shadow: var(--hd-shadow-xl);
}

.hd-readiness-text p {
  color: var(--hd-text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}


.hd-faq {
  padding: var(--hd-space-3xl) 0;
  background: var(--hd-bg);
}

.hd-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hd-faq-item {
  background: var(--hd-surface);
  border: 1px solid var(--hd-border-subtle);
  border-radius: var(--hd-radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.hd-faq-item:hover { border-color: var(--hd-border); }

.hd-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--hd-text);
  font-family: 'Wix Madefor Text', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.25s ease;
  min-height: 44px;
}

.hd-faq-question:hover { color: var(--hd-accent); }

.hd-faq-question i {
  color: var(--hd-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.hd-faq-item.hd-faq-open .hd-faq-question i { transform: rotate(180deg); }

.hd-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.hd-faq-item.hd-faq-open .hd-faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

.hd-faq-answer p {
  font-size: 0.9rem;
  color: var(--hd-text-muted);
  line-height: 1.7;
}


.hd-contact-main {
  padding: var(--hd-space-3xl) 0;
  background: var(--hd-bg);
}

.hd-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hd-contact-form-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.hd-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.hd-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hd-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hd-text-muted);
}

.hd-form-group input,
.hd-form-group textarea {
  background: var(--hd-surface);
  border: 1px solid var(--hd-border-subtle);
  border-radius: var(--hd-radius-sm);
  padding: 0.75rem 1rem;
  color: var(--hd-text);
  font-family: 'Wix Madefor Text', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  outline: none;
}

.hd-form-group input:focus,
.hd-form-group textarea:focus {
  border-color: var(--hd-accent);
  box-shadow: 0 0 0 3px var(--hd-accent-glow);
}

.hd-form-group input::placeholder,
.hd-form-group textarea::placeholder { color: var(--hd-text-subtle); }

.hd-form-group textarea { resize: vertical; min-height: 140px; }

.hd-form-privacy {
  display: flex;
  align-items: flex-start;
}

.hd-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--hd-text-muted);
  line-height: 1.5;
}

.hd-checkbox-label input[type="checkbox"] { display: none; }

.hd-checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--hd-border);
  border-radius: 4px;
  background: var(--hd-surface);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.hd-checkbox-label input:checked + .hd-checkbox-custom {
  background: var(--hd-accent);
  border-color: var(--hd-accent);
}

.hd-checkbox-label input:checked + .hd-checkbox-custom::after {
  content: '✓';
  color: #1a1612;
  font-size: 0.75rem;
  font-weight: 700;
}

.hd-checkbox-label a { color: var(--hd-accent); }

.hd-contact-info-card {
  background: var(--hd-surface);
  border: 1px solid var(--hd-border-subtle);
  border-radius: var(--hd-radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--hd-shadow-md);
}

.hd-contact-info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hd-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hd-contact-detail:last-child { margin-bottom: 0; }

.hd-contact-detail i {
  color: var(--hd-accent);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 18px;
}

.hd-contact-detail strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hd-text-muted);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hd-contact-detail p, .hd-contact-detail a {
  font-size: 0.92rem;
  color: var(--hd-text);
  line-height: 1.5;
  text-decoration: none;
}

.hd-contact-detail a:hover { color: var(--hd-accent); }

.hd-contact-tips {
  background: var(--hd-surface);
  border: 1px solid var(--hd-border-subtle);
  border-radius: var(--hd-radius-lg);
  padding: 2rem;
  box-shadow: var(--hd-shadow-md);
}

.hd-contact-tips h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hd-tip-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hd-tip-item:last-child { margin-bottom: 0; }

.hd-tip-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--hd-accent-glow);
  border-radius: var(--hd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hd-accent);
  font-size: 0.9rem;
}

.hd-tip-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.hd-tip-item p {
  font-size: 0.85rem;
  color: var(--hd-text-muted);
  line-height: 1.55;
}


.hd-map-section {
  padding: 0 0 var(--hd-space-3xl);
  background: var(--hd-bg);
}

.hd-map-wrap {
  border-radius: var(--hd-radius-lg);
  overflow: hidden;
  box-shadow: var(--hd-shadow-xl);
  border: 1px solid var(--hd-border-subtle);
}


.hd-thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--hd-nav-h) - 200px);
}

.hd-thanks-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,133,74,0.1) 0%, transparent 70%);
  z-index: 0;
}

.hd-thanks-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--hd-space-3xl) 2rem;
}

.hd-thanks-icon {
  font-size: 4rem;
  color: var(--hd-accent);
  margin-bottom: 2rem;
  display: block;
}

.hd-thanks-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hd-thanks-sub {
  font-size: 1.1rem;
  color: var(--hd-text-muted);
  margin-bottom: 2.5rem;
}


.hd-legal-main {
  padding: calc(var(--hd-nav-h) + 4rem) 0 var(--hd-space-3xl);
}

.hd-legal-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--hd-border-subtle);
}

.hd-legal-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.hd-legal-date {
  color: var(--hd-text-subtle);
  font-size: 0.88rem;
}

.hd-legal-body {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hd-legal-section {
  border-left: 3px solid var(--hd-border);
  padding-left: 1.5rem;
}

.hd-legal-summary {
  background: var(--hd-accent-glow);
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--hd-accent-warm);
}

.hd-legal-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--hd-text);
}

.hd-legal-section p {
  font-size: 0.92rem;
  color: var(--hd-text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.hd-legal-section p:last-child { margin-bottom: 0; }


.hd-legal-body-alt .hd-legal-section-alt {
  border-left: none;
  padding-left: 0;
  background: var(--hd-surface);
  border: 1px solid var(--hd-border-subtle);
  border-radius: var(--hd-radius-lg);
  padding: 2rem;
}

.hd-legal-body-alt .hd-legal-section-alt h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--hd-accent);
}

.hd-legal-summary-inline {
  display: block;
  background: none;
  border: none;
  border-bottom: 1px solid var(--hd-border-subtle);
  border-radius: 0;
  padding: 0 0 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--hd-text-muted);
}


.hd-legal-intro {
  font-size: 0.95rem;
  color: var(--hd-text-muted);
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  padding: 1.5rem;
  background: var(--hd-surface);
  border-radius: var(--hd-radius-lg);
  border-left: 4px solid var(--hd-accent);
}

.hd-legal-body-cookies {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hd-cookie-category {
  background: var(--hd-surface);
  border: 1px solid var(--hd-border-subtle);
  border-radius: var(--hd-radius-lg);
  padding: 2rem;
}

.hd-cookie-cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hd-cookie-cat-header h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0; }

.hd-cookie-cat-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--hd-radius-full);
}

.hd-cookie-required { background: rgba(200,133,74,0.15); color: var(--hd-accent); }
.hd-cookie-analytics { background: rgba(100,149,237,0.15); color: #6495ed; }
.hd-cookie-marketing { background: rgba(154,205,50,0.15); color: #9acd32; }

.hd-cookie-summary-line {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hd-text);
  margin-bottom: 0.75rem;
}

.hd-cookie-category p {
  font-size: 0.9rem;
  color: var(--hd-text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.hd-cookie-table {
  margin-top: 1rem;
  border: 1px solid var(--hd-border-subtle);
  border-radius: var(--hd-radius-sm);
  overflow: hidden;
}

.hd-cookie-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--hd-border-subtle);
  gap: 1rem;
}

.hd-cookie-row:last-child { border-bottom: none; }

.hd-cookie-row-head {
  background: var(--hd-surface-2);
  font-weight: 700;
  color: var(--hd-text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


.hd-cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--hd-surface-2);
  border-bottom: 1px solid var(--hd-border);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hd-cookie-banner.hd-banner-visible {
  transform: translateY(0);
}

.hd-cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hd-cookie-banner-text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--hd-text-muted);
  min-width: 200px;
}

.hd-cookie-banner-text a { color: var(--hd-
accent); }

.hd-cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.hd-cookie-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--hd-radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  font-family: 'Wix Madefor Text', sans-serif;
  min-height: 36px;
}

.hd-cookie-btn-accept {
  background: var(--hd-accent);
  color: #1a1612;
}

.hd-cookie-btn-accept:hover {
  background: var(--hd-accent-warm);
  transform: translateY(-1px);
}

.hd-cookie-btn-reject {
  background: transparent;
  color: var(--hd-text-muted);
  border: 1px solid var(--hd-border);
}

.hd-cookie-btn-reject:hover {
  color: var(--hd-text);
  border-color: var(--hd-text-muted);
}

.hd-cookie-btn-customize {
  background: transparent;
  color: var(--hd-accent);
  border: 1px solid var(--hd-border);
}

.hd-cookie-btn-customize:hover {
  border-color: var(--hd-accent);
  background: var(--hd-accent-glow);
}


.hd-cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.hd-cookie-modal-overlay.hd-modal-visible {
  opacity: 1;
  pointer-events: all;
}

.hd-cookie-modal {
  background: var(--hd-surface);
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius-xl);
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--hd-shadow-xl);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s ease;
}

.hd-cookie-modal-overlay.hd-modal-visible .hd-cookie-modal {
  transform: scale(1) translateY(0);
}

.hd-cookie-modal h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hd-cookie-modal > p {
  font-size: 0.88rem;
  color: var(--hd-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hd-cookie-toggle-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hd-border-subtle);
}

.hd-cookie-toggle-item:last-of-type { border-bottom: none; }

.hd-cookie-toggle-label strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hd-cookie-toggle-label p {
  font-size: 0.82rem;
  color: var(--hd-text-muted);
  line-height: 1.5;
}

.hd-toggle-switch {
  flex-shrink: 0;
  width: 44px;
  height: 24px;
  background: var(--hd-surface-3);
  border-radius: var(--hd-radius-full);
  position: relative;
  cursor: pointer;
  transition: background 0.25s ease;
  border: 1px solid var(--hd-border);
}

.hd-toggle-switch.hd-toggle-on {
  background: var(--hd-accent);
  border-color: var(--hd-accent);
}

.hd-toggle-switch.hd-toggle-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hd-toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--hd-text-muted);
  border-radius: 50%;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hd-toggle-switch.hd-toggle-on::after {
  transform: translateX(20px);
  background: #1a1612;
}

.hd-cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hd-cookie-modal-actions .hd-cookie-btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

@media (max-width: 1100px) {
  .hd-approach-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hd-bento-large { grid-column: span 2; }
  .hd-bento-wide { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hd-nav-links { display: none; }
  .hd-hamburger { display: flex; }

  .hd-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: var(--hd-space-xl) 2rem;
  }

  .hd-hero-visual { order: -1; }

  .hd-hero-img { aspect-ratio: 16/9; }

  .hd-about-grid,
  .hd-not-for-grid,
  .hd-deep-grid,
  .hd-readiness-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hd-about-float-card {
    position: static;
    margin-top: 1.5rem;
    max-width: 100%;
  }

  .hd-profiles-grid {
    grid-template-columns: 1fr;
  }

  .hd-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .hd-fit-grid {
    grid-template-columns: 1fr;
  }

  .hd-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hd-timeline-item {
    padding-right: 0;
    padding-left: 3rem;
    justify-content: flex-start;
  }

  .hd-timeline-right {
    padding-left: 3rem;
  }

  .hd-timeline-line {
    left: 0.6rem;
  }

  .hd-timeline-dot {
    left: 0.6rem;
  }

  .hd-timeline-content {
    max-width: 100%;
  }

  .hd-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hd-footer-brand {
    grid-column: span 2;
  }

  .hd-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .hd-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .hd-bento-grid {
    grid-template-columns: 1fr;
  }

  .hd-bento-large,
  .hd-bento-wide { grid-column: span 1; }

  .hd-approach-cards {
    grid-template-columns: 1fr;
  }

  .hd-form-row {
    grid-template-columns: 1fr;
  }

  .hd-change-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hd-change-arrow { display: none; }

  .hd-footer-grid {
    grid-template-columns: 1fr;
  }

  .hd-footer-brand { grid-column: span 1; }

  .hd-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hd-hero-actions .hd-btn { width: 100%; justify-content: center; }

  .hd-intro-strip-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hd-strip-dot { display: none; }

  .hd-cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
  }

  .hd-cookie-banner-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hd-scroll-card { flex: 0 0 280px; }

  .hd-cookie-modal { padding: 1.5rem; }

  .hd-compare-table { min-width: 480px; }
}

@media (max-width: 480px) {
  .hd-container { padding: 0 1.25rem; }

  .hd-section-title {
    font-size: 1.4rem;
  }

  .hd-page-hero {
    padding-top: calc(var(--hd-nav-h) + 2.5rem);
    padding-bottom: 2.5rem;
  }

  .hd-about,
  .hd-bento,
  .hd-scroll-section,
  .hd-timeline,
  .hd-comparison,
  .hd-cta-section,
  .hd-profiles,
  .hd-not-for,
  .hd-approach,
  .hd-outcomes,
  .hd-deep-dive,
  .hd-what-changes,
  .hd-fit-check,
  .hd-readiness,
  .hd-faq,
  .hd-contact-main {
    padding: var(--hd-space-2xl) 0;
  }

  .hd-nav-inner { padding: 0 1.25rem; }

  .hd-mobile-nav-links a { font-size: 1.3rem; }

  .hd-thanks-title { font-size: 1.8rem; }

  .hd-cta-text h2 { font-size: 1.5rem; }
}