:root {
  --hc-ink: #1a1a2e;
  --hc-ink-soft: #2d2d4a;
  --hc-ink-muted: #4a4a6a;
  --hc-paper: #f8f7f4;
  --hc-paper-warm: #f2f0eb;
  --hc-paper-mid: #e8e5de;
  --hc-accent: #c8773a;
  --hc-accent-light: #e8956a;
  --hc-accent-dark: #a05c28;
  --hc-teal: #2a7a7a;
  --hc-teal-light: #3a9a9a;
  --hc-gold: #d4a843;
  --hc-white: #fdfcfa;
  --hc-text-body: #3a3a52;
  --hc-text-muted: #6b6b8a;
  --hc-border: #dddad2;
  --hc-shadow-sm: 0 1px 3px rgba(26,26,46,0.08), 0 1px 2px rgba(26,26,46,0.04);
  --hc-shadow-md: 0 4px 12px rgba(26,26,46,0.10), 0 2px 4px rgba(26,26,46,0.06);
  --hc-shadow-lg: 0 8px 32px rgba(26,26,46,0.12), 0 4px 8px rgba(26,26,46,0.08);
  --hc-shadow-xl: 0 20px 60px rgba(26,26,46,0.15), 0 8px 20px rgba(26,26,46,0.10);
  --hc-radius-sm: 6px;
  --hc-radius-md: 12px;
  --hc-radius-lg: 20px;
  --hc-radius-xl: 32px;
  --hc-nav-height: 72px;
}

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

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

body.hc-body {
  font-family: 'Inter', sans-serif;
  color: var(--hc-text-body);
  background: var(--hc-paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }

.hc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


.hc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--hc-nav-height);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}

.hc-nav-scrolled,
.hc-nav.scrolled {
  background: rgba(248, 247, 244, 0.88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom-color: rgba(26,26,46,0.08);
  box-shadow: 0 2px 20px rgba(26,26,46,0.07);
}

.hc-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hc-logo { display: flex; align-items: center; }
.hc-logo-img { height: 36px; width: auto; }

.hc-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.hc-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hc-ink-muted);
  transition: color 0.2s ease;
  position: relative;
}

.hc-nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hc-accent);
  transition: width 0.25s ease;
}

.hc-nav-link:hover { color: var(--hc-ink); }
.hc-nav-link:hover::after { width: 100%; }
.hc-nav-active { color: var(--hc-ink) !important; }
.hc-nav-active::after { width: 100% !important; }

.hc-nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hc-white);
  background: var(--hc-ink);
  padding: 10px 20px;
  border-radius: var(--hc-radius-sm);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: var(--hc-shadow-sm);
}

.hc-nav-cta:hover {
  background: var(--hc-accent);
  transform: translateY(-1px);
  box-shadow: var(--hc-shadow-md);
}

.hc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--hc-radius-sm);
}

.hc-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hc-ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}


.hc-mobile-tabs {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(248,247,244,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--hc-border);
  padding: 6px 0 env(safe-area-inset-bottom, 6px);
  box-shadow: 0 -4px 20px rgba(26,26,46,0.10);
}

.hc-mobile-tabs .hc-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  padding: 6px 4px;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--hc-text-muted);
  transition: color 0.2s ease;
  min-height: 44px;
}

.hc-mobile-tabs .hc-tab i {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.hc-mobile-tabs .hc-tab:hover,
.hc-mobile-tabs .hc-tab-active {
  color: var(--hc-accent);
}

.hc-mobile-tabs .hc-tab-active i {
  transform: translateY(-1px);
}


.hc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--hc-nav-height);
}

.hc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hc-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,46,0.88) 0%,
    rgba(26,26,46,0.72) 50%,
    rgba(42,122,122,0.55) 100%
  );
}

.hc-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  width: 100%;
}

.hc-hero-text {
  max-width: 660px;
}

.hc-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hc-accent-light);
  margin-bottom: 20px;
}

.hc-eyebrow-dark {
  color: var(--hc-accent);
}

.hc-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--hc-white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hc-hero-title em {
  font-style: italic;
  color: var(--hc-accent-light);
}

.hc-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(253,252,250,0.82);
  margin-bottom: 40px;
  max-width: 560px;
}

.hc-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hc-white);
  background: var(--hc-accent);
  padding: 14px 28px;
  border-radius: var(--hc-radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(200,119,58,0.35), 0 1px 3px rgba(200,119,58,0.2);
  text-decoration: none;
}

.hc-btn-primary:hover {
  background: var(--hc-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,119,58,0.45), 0 2px 6px rgba(200,119,58,0.25);
}

.hc-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hc-white);
  background: transparent;
  padding: 14px 28px;
  border-radius: var(--hc-radius-sm);
  border: 1.5px solid rgba(253,252,250,0.4);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.hc-btn-ghost:hover {
  background: rgba(253,252,250,0.1);
  border-color: rgba(253,252,250,0.7);
  transform: translateY(-2px);
}

.hc-btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}


.hc-mini-cards-wrap {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  width: 100%;
}

.hc-mini-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.hc-mini-cards::-webkit-scrollbar { display: none; }

.hc-mini-card {
  flex: 0 0 260px;
  background: rgba(253,252,250,0.10);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(253,252,250,0.18);
  border-radius: var(--hc-radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.hc-mini-card:hover {
  background: rgba(253,252,250,0.18);
  border-color: rgba(200,119,58,0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,26,46,0.25);
}

.hc-mini-card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--hc-accent), var(--hc-accent-light));
  border-radius: var(--hc-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(200,119,58,0.3);
}

.hc-mini-card-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hc-white);
  margin-bottom: 4px;
}

.hc-mini-card-body p {
  font-size: 0.8rem;
  color: rgba(253,252,250,0.72);
  line-height: 1.5;
}

.hc-mini-card-arrow {
  color: var(--hc-accent-light);
  font-size: 0.85rem;
  align-self: flex-end;
  transition: transform 0.2s ease;
}

.hc-mini-card:hover .hc-mini-card-arrow {
  transform: translateX(4px);
}


.hc-problem {
  padding: 100px 0;
  background: var(--hc-white);
}

.hc-problem-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}

.hc-problem-visual {
  position: relative;
}

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

.hc-problem-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--hc-ink);
  color: var(--hc-white);
  padding: 16px 20px;
  border-radius: var(--hc-radius-md);
  font-size: 0.8rem;
  font-weight: 500;
  max-width: 200px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  box-shadow: var(--hc-shadow-lg);
}

.hc-problem-badge i {
  color: var(--hc-gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hc-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--hc-ink);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hc-text-light { color: var(--hc-white) !important; }
.hc-text-light-muted { color: rgba(253,252,250,0.78) !important; }

.hc-body-lg {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--hc-text-body);
  margin-bottom: 20px;
}

.hc-body-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--hc-text-muted);
  margin-bottom: 16px;
}

.hc-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--hc-accent);
  transition: gap 0.2s ease, color 0.2s ease;
}

.hc-link-arrow:hover {
  gap: 12px;
  color: var(--hc-accent-dark);
}


.hc-benefits {
  padding: 100px 0;
  background: var(--hc-ink);
}

.hc-benefits-header {
  text-align: center;
  margin-bottom: 64px;
}

.hc-benefits-header .hc-eyebrow {
  color: var(--hc-accent-light);
}

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

.hc-benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.hc-benefit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hc-accent), var(--hc-accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(200,119,58,0.35);
}

.hc-benefit-check i {
  color: white;
  font-size: 0.75rem;
}

.hc-benefit-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hc-white);
  margin-bottom: 8px;
}

.hc-benefit-content p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(253,252,250,0.65);
}


.hc-process {
  padding: 100px 0;
  background: var(--hc-paper-warm);
}

.hc-process-header {
  max-width: 640px;
  margin-bottom: 72px;
}

.hc-process-intro {
  color: var(--hc-text-muted);
}

.hc-process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.hc-process-step {
  display: flex;
  gap: 24px;
}

.hc-step-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--hc-paper-mid);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.hc-step-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hc-ink);
  margin-bottom: 12px;
}

.hc-step-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--hc-text-muted);
}

.hc-step-img {
  width: 100%;
  border-radius: var(--hc-radius-md);
  margin-bottom: 16px;
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: var(--hc-shadow-md);
}


.hc-comparison {
  padding: 100px 0;
  background: var(--hc-ink-soft);
}

.hc-comparison-header {
  text-align: center;
  margin-bottom: 56px;
}

.hc-comparison-header .hc-eyebrow {
  color: var(--hc-accent-light);
}

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

.hc-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--hc-white);
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
}

.hc-th-feature {
  padding: 20px 24px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hc-text-muted);
  background: var(--hc-paper);
  width: 40%;
}

.hc-th-plan {
  padding: 20px 24px;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hc-ink);
  background: var(--hc-paper);
  position: relative;
}

.hc-th-recommended {
  background: var(--hc-ink);
  color: var(--hc-white);
}

.hc-recommended-badge {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hc-accent-light);
  margin-bottom: 4px;
}

.hc-td-feature {
  padding: 16px 24px;
  font-size: 0.9rem;
  color: var(--hc-text-body);
  border-bottom: 1px solid var(--hc-border);
}

.hc-td-check {
  padding: 16px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--hc-text-muted);
  border-bottom: 1px solid var(--hc-border);
}

.hc-td-recommended {
  background: rgba(26,26,46,0.04);
  border-left: 1px solid rgba(26,26,46,0.08);
  border-right: 1px solid rgba(26,26,46,0.08);
}

.hc-check-yes { color: var(--hc-teal); font-size: 1rem; }
.hc-check-no { color: var(--hc-paper-mid); font-size: 1rem; }

.hc-tr-cta td { padding: 20px 24px; border-bottom: none; }

.hc-btn-table {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--hc-radius-sm);
  border: 1.5px solid var(--hc-ink);
  color: var(--hc-ink);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.hc-btn-table:hover {
  background: var(--hc-ink);
  color: var(--hc-white);
  transform: translateY(-1px);
}

.hc-btn-table-primary {
  background: var(--hc-accent);
  border-color: var(--hc-accent);
  color: var(--hc-white);
  box-shadow: 0 4px 12px rgba(200,119,58,0.3);
}

.hc-btn-table-primary:hover {
  background: var(--hc-accent-dark);
  border-color: var(--hc-accent-dark);
  color: var(--hc-white);
}


.hc-calculator {
  padding: 100px 0;
  background: var(--hc-white);
}

.hc-calc-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

.hc-calc-card {
  background: var(--hc-paper);
  border-radius: var(--hc-radius-lg);
  padding: 40px;
  box-shadow: var(--hc-shadow-lg);
  border: 1px solid var(--hc-border);
}

.hc-calc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hc-ink);
  margin-bottom: 28px;
}

.hc-calc-form { display: flex; flex-direction: column; gap: 20px; }

.hc-calc-field { display: flex; flex-direction: column; gap: 6px; }

.hc-calc-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hc-ink-muted);
}

.hc-calc-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--hc-border);
  border-radius: var(--hc-radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--hc-ink);
  background: var(--hc-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.hc-calc-input:focus {
  outline: none;
  border-color: var(--hc-accent);
  box-shadow: 0 0 0 3px rgba(200,119,58,0.12);
}

.hc-btn-calc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hc-white);
  background: var(--hc-ink);
  padding: 14px 24px;
  border-radius: var(--hc-radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.hc-btn-calc:hover {
  background: var(--hc-accent);
  transform: translateY(-1px);
}

.hc-calc-result {
  background: var(--hc-ink);
  border-radius: var(--hc-radius-md);
  padding: 20px;
  display: none;
}

.hc-calc-result.visible { display: block; }

.hc-calc-result-inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.hc-calc-result-inner i {
  color: var(--hc-accent-light);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hc-calc-result-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(253,252,250,0.6);
  margin-bottom: 4px;
}

.hc-calc-result-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hc-white);
}

.hc-calc-result-note {
  font-size: 0.8rem;
  color: rgba(253,252,250,0.55);
  line-height: 1.5;
}


.hc-cta-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--hc-accent) 0%, var(--hc-accent-dark) 100%);
}

.hc-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hc-cta-strip-text h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--hc-white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hc-cta-strip-text p {
  font-size: 1rem;
  color: rgba(253,252,250,0.82);
  line-height: 1.6;
}

.hc-cta-strip .hc-btn-primary {
  background: var(--hc-white);
  color: var(--hc-accent-dark);
  box-shadow: 0 4px 20px rgba(26,26,46,0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

.hc-cta-strip .hc-btn-primary:hover {
  background: var(--hc-paper);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,26,46,0.28);
}


.hc-footer {
  background: var(--hc-ink);
  padding-top: 72px;
}

.hc-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 56px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
}

.hc-footer-logo { height: 32px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }

.hc-footer-tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(253,252,250,0.55);
  margin-bottom: 24px;
  max-width: 280px;
}

.hc-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hc-footer-contact a,
.hc-footer-contact p {
  font-size: 0.85rem;
  color: rgba(253,252,250,0.65);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: color 0.2s ease;
}

.hc-footer-contact a:hover { color: var(--hc-accent-light); }

.hc-footer-contact i {
  color: var(--hc-accent);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.hc-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.hc-footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(253,252,250,0.45);
  margin-bottom: 16px;
}

.hc-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.hc-footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(253,252,250,0.65);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}

.hc-footer-col ul li a:hover {
  color: var(--hc-accent-light);
  padding-left: 4px;
}

.hc-footer-bottom {
  border-top: 1px solid rgba(253,252,250,0.08);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hc-footer-bottom p {
  font-size: 0.8rem;
  color: rgba(253,252,250,0.35);
}


.hc-page-hero {
  padding: calc(var(--hc-nav-height) + 80px) 0 80px;
  background: var(--hc-paper-warm);
}

.hc-page-hero-dark {
  background: var(--hc-ink);
}

.hc-page-hero-commerce {
  background: linear-gradient(135deg, var(--hc-teal) 0%, var(--hc-ink) 100%);
}

.hc-page-hero-content { max-width: 720px; }

.hc-page-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--hc-ink);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hc-page-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--hc-text-muted);
  max-width: 600px;
}


.hc-diff-section { padding: 100px 0; background: var(--hc-white); }

.hc-diff-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--hc-border);
}

.hc-diff-item:last-child { border-bottom: none; }

.hc-diff-item-alt .hc-diff-visual { order: -1; }

.hc-diff-img {
  width: 100%;
  border-radius: var(--hc-radius-lg);
  box-shadow: var(--hc-shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hc-diff-number {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hc-accent);
  margin-bottom: 16px;
}

.hc-diff-text h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--hc-ink);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hc-diff-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--hc-text-muted);
  margin-bottom: 16px;
}

.hc-diff-feature-box {
  background: var(--hc-paper);
  border-radius: var(--hc-radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--hc-shadow-md);
  border: 1px solid var(--hc-border);
}

.hc-feature-box-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--hc-ink);
}

.hc-feature-box-item i {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--hc-ink), var(--hc-ink-soft));
  border-radius: var(--hc-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-accent-light);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.hc-pull-quote {
  background: var(--hc-ink);
  border-radius: var(--hc-radius-lg);
  padding: 40px;
  position: relative;
}

.hc-pull-quote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--hc-accent);
  opacity: 0.4;
  position: absolute;
  top: -10px;
  left: 24px;
  line-height: 1;
}

.hc-pull-quote blockquote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.65;
  color: var(--hc-white);
  font-style: italic;
}


.hc-for-whom {
  padding: 100px 0;
  background: var(--hc-ink);
}

.hc-for-whom-header {
  text-align: center;
  margin-bottom: 56px;
}

.hc-for-whom-header .hc-eyebrow { color: var(--hc-accent-light); }

.hc-for-whom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hc-for-card {
  background: rgba(253,252,250,0.06);
  border: 1px solid rgba(253,252,250,0.1);
  border-radius: var(--hc-radius-md);
  padding: 28px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.hc-for-card:hover {
  background: rgba(253,252,250,0.10);
  border-color: rgba(200,119,58,0.4);
  transform: translateY(-4px);
}

.hc-for-card i {
  font-size: 1.5rem;
  color: var(--hc-accent-light);
  margin-bottom: 16px;
  display: block;
}

.hc-for-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hc-white);
  margin-bottom: 10px;
}

.hc-for-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(253,252,250,0.6);
}


.hc-service-detail { padding: 80px 0; background: var(--hc-white); }
.hc-service-alt { background: var(--hc-paper-warm); }

.hc-service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hc-service-detail-grid-rev .hc-service-detail-visual { order: -1; }

.hc-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hc-accent);
  background: rgba(200,119,58,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hc-service-detail-text h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--hc-ink);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hc-service-detail-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--hc-text-muted);
  margin-bottom: 16px;
}

.hc-subheading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hc-ink);
  margin: 24px 0 12px;
}

.hc-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hc-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--hc-text-body);
}

.hc-feature-list li i {
  color: var(--hc-teal);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

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


.hc-redirect-visual {
  background: var(--hc-ink);
  border-radius: var(--hc-radius-lg);
  padding: 32px;
  box-shadow: var(--hc-shadow-xl);
}

.hc-redirect-example {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hc-redirect-row {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--hc-radius-sm);
}

.hc-redirect-from {
  background: rgba(253,252,250,0.08);
  border: 1px solid rgba(253,252,250,0.15);
}

.hc-redirect-to {
  background: rgba(42,122,122,0.2);
  border: 1px solid rgba(42,122,122,0.4);
}

.hc-redirect-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(253,252,250,0.45);
  margin-bottom: 6px;
}

.hc-redirect-row code {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: var(--hc-white);
  word-break: break-all;
}

.hc-redirect-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hc-redirect-arrow i { color: var(--hc-accent-light); font-size: 1.2rem; }
.hc-redirect-arrow span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--hc-accent-light);
  background: rgba(200,119,58,0.2);
  padding: 2px 8px;
  border-radius: 100px;
}

.hc-redirect-note {
  font-size: 0.8rem;
  color: rgba(253,252,250,0.5);
  text-align: center;
  line-height: 1.5;
}


.hc-checklist-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hc-checklist-intro {
  color: var(--hc-text-muted);
}

.hc-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.hc-checklist-category {
  background: var(--hc-paper);
  border-radius: var(--hc-radius-md);
  padding: 28px;
  box-shadow: var(--hc-shadow-sm);
  border: 1px solid var(--hc-border);
}

.hc-checklist-category h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hc-ink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hc-checklist-category h3 i { color: var(--hc-accent); }

.hc-checklist-category ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hc-checklist-category ul li {
  font-size: 0.875rem;
  color: var(--hc-text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.hc-checklist-category ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hc-accent);
}


.hc-monitoring-metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.hc-metric-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--hc-paper);
  border-radius: var(--hc-radius-md);
  border: 1px solid var(--hc-border);
}

.hc-metric-item i {
  font-size: 1.2rem;
  color: var(--hc-accent);
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
}

.hc-metric-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hc-ink);
  margin-bottom: 4px;
}

.hc-metric-item p {
  font-size: 0.85rem;
  color: var(--hc-text-muted);
  line-height: 1.5;
  margin: 0;
}


.hc-ecom-challenges { padding: 100px 0; background: var(--hc-white); }

.hc-challenges-header {
  margin-bottom: 56px;
}

.hc-challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.hc-challenge-item {
  padding: 32px;
  background: var(--hc-paper);
  border-radius: var(--hc-radius-lg);
  border: 1px solid var(--hc-border);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.hc-challenge-item:hover {
  box-shadow: var(--hc-shadow-lg);
  transform: translateY(-4px);
}

.hc-challenge-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--hc-ink), var(--hc-ink-soft));
  border-radius: var(--hc-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-accent-light);
  font-size: 1.2rem;
  margin-bottom: 20px;
  box-shadow: var(--hc-shadow-sm);
}

.hc-challenge-item h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hc-ink);
  margin-bottom: 12px;
}

.hc-challenge-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--hc-text-muted);
}

.hc-ecom-process { padding: 100px 0; background: var(--hc-paper-warm); }

.hc-ecom-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.hc-ecom-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.hc-ecom-step {
  display: flex;
  gap: 20px;
}

.hc-ecom-step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hc-accent);
  opacity: 0.5;
  flex-shrink: 0;
  width: 36px;
  line-height: 1.4;
}

.hc-ecom-step h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hc-ink);
  margin-bottom: 6px;
}

.hc-ecom-step p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--hc-text-muted);
}

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

.hc-platforms { padding: 100px 0; background: var(--hc-white); }

.hc-platforms-header {
  margin-bottom: 48px;
}

.hc-platforms-intro { color: var(--hc-text-muted); max-width: 600px; }

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

.hc-platform-card {
  background: var(--hc-paper);
  border-radius: var(--hc-radius-md);
  padding: 28px;
  border: 1px solid var(--hc-border);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.hc-platform-card:hover {
  box-shadow: var(--hc-shadow-lg);
  transform: translateY(-3px);
}

.hc-platform-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hc-ink);
  flex-wrap: wrap;
}

.hc-platform-header i {
  font-size: 1.3rem;
  color: var(--hc-ink-muted);
}

.hc-platform-arrow { color: var(--hc-accent) !important; font-size: 0.9rem !important; }

.hc-platform-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--hc-text-muted);
}


.hc-facts-strip {
  background: var(--hc-ink);
  padding: 32px 0;
}

.hc-facts-grid {
  display: flex;
  gap: 0;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.hc-fact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
}

.hc-fact-item i {
  font-size: 1.5rem;
  color: var(--hc-accent-light);
}

.hc-fact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(253,252,250,0.45);
  margin-bottom: 4px;
}

.hc-fact-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hc-white);
}

.hc-contact-section { padding: 80px 0; background: var(--hc-white); }

.hc-contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: start;
}

.hc-contact-info h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hc-ink);
  margin-bottom: 32px;
}

.hc-contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.hc-contact-detail i {
  font-size: 1.1rem;
  color: var(--hc-accent);
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
}

.hc-contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hc-text-muted);
  margin-bottom: 4px;
}

.hc-contact-detail a {
  font-size: 0.95rem;
  color: var(--hc-ink);
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.hc-contact-detail address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--hc-text-body);
  line-height: 1.6;
}

.hc-contact-detail p {
  font-size: 0.95rem;
  color: var(--hc-text-body);
}

.hc-contact-form-wrap h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hc-ink);
  margin-bottom: 28px;
}

.hc-contact-form { display: flex; flex-direction: column; gap: 20px; }

.hc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hc-form-field { display: flex; flex-direction: column; gap: 6px; }

.hc-form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hc-ink-muted);
}

.hc-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--hc-border);
  border-radius: var(--hc-radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--hc-ink);
  background: var(--hc-paper);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.hc-form-input:focus {
  outline: none;
  border-color: var(--hc-accent);
  box-shadow: 0 0 0 3px rgba(200,119,58,0.12);
}

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

.hc-form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.hc-privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--hc-text-muted);
  cursor: pointer;
  flex: 1;
}

.hc-privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--hc-border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--hc-accent);
  cursor: pointer;
}

.hc-privacy-check a {
  color: var(--hc-accent);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.hc-privacy-check a:hover { color: var(--hc-accent-dark); }

.hc-btn-submit {
  flex-shrink: 0;
}

.hc-map-section { padding: 0 0 80px; background: var(--hc-white); }

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

.hc-map-iframe { display: block; }


.hc-legal-hero {
  padding: calc(var(--hc-nav-height) + 60px) 0 48px;
  background: var(--hc-paper-warm);
  border-bottom: 1px solid var(--hc-border);
}

.hc-legal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--hc-ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hc-legal-meta {
  font-size: 0.875rem;
  color: var(--hc-text-muted);
}

.hc-legal-content { padding: 64px 0 80px; background: var(--hc-white); }

.hc-legal-container { max-width: 760px; }

.hc-legal-container h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hc-ink);
  margin: 40px 0 16px;
}

.hc-legal-container p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--hc-text-body);
  margin-bottom: 16px;
}

.hc-legal-container a {
  color: var(--hc-accent);
  text-decoration: underline;
}

.hc-legal-container a:hover { color: var(--hc-accent-dark); }

.hc-legal-list {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hc-legal-list li {
  font-size: 0.95rem;
  color: var(--hc-text-body);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.hc-legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hc-accent);
}


.hc-cookie-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--hc-radius-md);
  border: 1px solid var(--hc-border);
}

.hc-cookie-detail-table {
  width: 100%;
  border-collapse: collapse;
}

.hc-cookie-detail-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hc-text-muted);
  background: var(--hc-paper);
  border-bottom: 1px solid var(--hc-border);
}

.hc-cookie-detail-table td {
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--hc-text-body);
  border-bottom: 1px solid var(--hc-border);
}

.hc-cookie-detail-table tr:last-child td { border-bottom: none; }


.hc-thanks-body { min-height: 100vh; }

.hc-thanks-main {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--hc-nav-height) + 40px) 24px 80px;
  background: var(--hc-paper-warm);
}

.hc-thanks-card {
  background: var(--hc-white);
  border-radius: var(--hc-radius-xl);
  padding: 64px 56px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--hc-shadow-xl);
  border: 1px solid var(--hc-border);
}

.hc-thanks-icon {
  font-size: 3.5rem;
  color: var(--hc-teal);
  margin-bottom: 24px;
}

.hc-thanks-card h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--hc-ink);
  margin-bottom: 16px;
}

.hc-thanks-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--hc-text-muted);
  margin-bottom: 32px;
}

.hc-thanks-card a:not(.hc-btn-primary) {
  color: var(--hc-accent);
  text-decoration: underline;
}


.hc-cookie-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.65);
  z-index: 900;
  backdrop-filter: blur(4px);
}

.hc-cookie-backdrop.visible { display: block; }

.hc-cookie-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 910;
  background: var(--hc-white);
  border-radius: var(--hc-radius-lg);
  padding: 36px;
  max-width: 520px;
  width: calc(100% - 48px);
  box-shadow: var(--hc-shadow-xl), 0 0 0 1px rgba(26,26,46,0.06);
}

.hc-cookie-modal.visible { display: block; }

.hc-cookie-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hc-cookie-icon {
  font-size: 1.5rem;
  color: var(--hc-accent);
}

.hc-cookie-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hc-ink);
}

.hc-cookie-intro {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--hc-text-muted);
  margin-bottom: 24px;
}

.hc-cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.hc-cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: var(--hc-paper);
  border-radius: var(--hc-radius-md);
  border: 1px solid var(--hc-border);
}

.hc-cookie-cat-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hc-ink);
  margin-bottom: 2px;
}

.hc-cookie-cat-info p {
  font-size: 0.78rem;
  color: var(--hc-text-muted);
  margin: 0;
}

.hc-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.hc-toggle input { opacity: 0; width: 0; height: 0; }

.hc-toggle-knob {
  position: absolute;
  inset: 0;
  background: var(--hc-border);
  border-radius: 100px;
  transition: background 0.25s ease;
}

.hc-toggle-knob::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  transition: transform 0.25s ease;
  box-shadow: 0 1px 4px rgba(26,26,46,0.2);
}

.hc-toggle input:checked + .hc-toggle-knob { background: var(--hc-teal); }
.hc-toggle input:checked + .hc-toggle-knob::before { transform: translateX(20px); }

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

.hc-toggle-disabled .hc-toggle-knob { background: var(--hc-teal); }
.hc-toggle-disabled .hc-toggle-knob::before { transform: translateX(20px); }

.hc-cookie-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.hc-cookie-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--hc-radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  border: none;
}

.hc-cookie-btn-reject {
  background: var(--hc-paper);
  color: var(--hc-ink-muted);
  border: 1.5px solid var(--hc-border);
}

.hc-cookie-btn-reject:hover {
  background: var(--hc-paper-mid);
  transform: translateY(-1px);
}

.hc-cookie-btn-accept {
  background: var(--hc-ink);
  color: var(--hc-white);
  box-shadow: var(--hc-shadow-sm);
}

.hc-cookie-btn-accept:hover {
  background: var(--hc-accent);
  transform: translateY(-1px);
  box-shadow: var(--hc-shadow-md);
}

.hc-cookie-legal {
  font-size: 0.78rem;
  color: var(--hc-text-muted);
  text-align: center;
}

.hc-cookie-legal a {
  color: var(--hc-accent);
  text-decoration: underline;
}


@media (max-width: 1024px) {
  .hc-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .hc-for-whom-grid { grid-template-columns: repeat(2, 1fr); }
  .hc-process-steps { grid-template-columns: 1fr; gap: 40px; }
  .hc-footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .hc-footer-nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --hc-nav-height: 60px; }

  .hc-nav-links { display: none; }
  .hc-hamburger { display: flex; }
  .hc-mobile-tabs { display: flex; }

  .hc-hero-content { padding: 60px 24px 20px; }
  .hc-hero-title { font-size: clamp(2rem, 8vw, 3rem); }

  .hc-mini-cards-wrap { padding: 0 24px 80px; }

  .hc-problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .hc-problem-badge { position: static; margin-top: 16px; max-width: 100%; }

  .hc-benefits-grid { grid-template-columns: 1fr; gap: 24px; }

  .hc-calc-grid { grid-template-columns: 1fr; gap: 40px; }

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

  .hc-diff-item { grid-template-columns: 1fr; gap: 32px; }
  .hc-diff-item-alt .hc-diff-visual { order: 0; }

  .hc-for-whom-grid { grid-template-columns: 1fr 1fr; }

  .hc-service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .hc-service-detail-grid-rev .hc-service-detail-visual { order: 0; }

  .hc-checklist-grid { grid-template-columns: 1fr; }

  .hc-challenges-grid { grid-template-columns: 1fr; }

  .hc-ecom-process-grid { grid-template-columns: 1fr; gap: 40px; }

  .hc-platforms-grid { grid-template-columns: 1fr; }

  .hc-contact-grid { grid-template-columns: 1fr; gap: 48px; }

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

  .hc-form-bottom { flex-direction: column; align-items: flex-start; }
  .hc-btn-submit { width: 100%; text-align: center; justify-content: center; }

  .hc-footer-inner { padding: 0 24px 40px; }
  .hc-footer-nav { grid-template-columns: 1fr 1fr; }

  .hc-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hc-thanks-card { padding: 40px 28px; }

  .hc-facts-grid { gap: 0; }
  .hc-fact-item { padding: 12px 16px; }

  .hc-cookie-modal { padding: 24px; }
  .hc-cookie-actions { flex-direction: column; }

  .hc-page-hero { padding-bottom: 60px; }

  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .hc-for-whom-grid { grid-template-columns: 1fr; }
  .hc-footer-nav { grid-template-columns: 1fr; }
  .hc-hero-actions { flex-direction: column; }
  .hc-btn-ghost, .hc-btn-primary { width: 100%; justify-content: center; text-align: center; }
}