@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Manrope:wght@500;700;800&display=swap");

:root {
  --hk-bg: #f4f7f6;
  --hk-surface: #ffffff;
  --hk-text: #173136;
  --hk-muted: #5c7478;
  --hk-brand: #0b9d8a;
  --hk-brand-soft: #dff6f2;
  --hk-brand-dark: #09695d;
  --hk-accent: #f9b22f;
  --hk-border: #d6e3e1;
  --hk-radius: 14px;
  --hk-shadow: 0 16px 40px rgba(23, 49, 54, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.95), transparent 26%),
    radial-gradient(circle at 85% 15%, rgba(249,178,47,0.15), transparent 20%),
    linear-gradient(180deg, #f8fbfb 0%, var(--hk-bg) 100%);
  color: var(--hk-text);
  line-height: 1.7;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: "Manrope", sans-serif;
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

.hk-container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hk-section {
  padding: 4.5rem 0;
}

.hk-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--hk-border);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(19, 37, 40, 0.05);
}

.hk-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.hk-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.hk-logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hk-text);
  display: inline-flex;
  align-items: center;
}

.hk-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.hk-logo .custom-logo {
  max-height: 44px;
  width: auto;
}

.hk-logo span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.hk-logo span::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hk-brand), var(--hk-accent));
  box-shadow: 0 0 0 6px rgba(11, 157, 138, 0.12);
}

.hk-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
}

.hk-menu a {
  color: var(--hk-text);
  font-weight: 500;
  position: relative;
}

.hk-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--hk-brand), var(--hk-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.hk-menu a:hover::after {
  transform: scaleX(1);
}

.hk-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 49, 54, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hk-menu-toggle__bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #173136;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hk-menu-toggle[aria-expanded="true"] .hk-menu-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hk-menu-toggle[aria-expanded="true"] .hk-menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.hk-menu-toggle[aria-expanded="true"] .hk-menu-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hk-theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(23, 49, 54, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--hk-text);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hk-theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(23, 49, 54, 0.08);
  border-color: rgba(11, 157, 138, 0.22);
}

.hk-theme-toggle__track {
  position: relative;
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #dfeae8, #f6fbfa);
  box-shadow: inset 0 0 0 1px rgba(23, 49, 54, 0.08);
}

.hk-theme-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hk-brand), var(--hk-accent));
  transition: transform 0.24s ease;
}

.hk-dark-mode .hk-theme-toggle__thumb {
  transform: translateX(18px);
}

.hk-theme-toggle__label {
  font-size: 0.92rem;
}

.hk-hero {
  padding-top: 4.2rem;
  padding-bottom: 5.5rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(11, 157, 138, 0.1), transparent 26%),
    linear-gradient(145deg, #f8fefb 30%, #e9f4f2 100%);
}

.hk-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.hk-badge-wrap {
  margin-bottom: 1rem;
}

.hk-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 157, 138, 0.18);
  background: rgba(255, 255, 255, 0.75);
  color: var(--hk-brand-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.hk-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--hk-accent);
}

.hk-kicker {
  color: var(--hk-brand-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hk-hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  max-width: 16ch;
  margin-bottom: 1rem;
}

.hk-hero-lead {
  max-width: 60ch;
  font-size: 1.08rem;
  color: var(--hk-muted);
}

.hk-hero-content {
  max-width: 68ch;
  color: var(--hk-muted);
  margin-top: 1.3rem;
}

.hk-hero-content p:last-child {
  margin-bottom: 0;
}

.hk-hero-extra {
  margin-top: 1.5rem;
}

.hk-hero-extra .hk-hero-content {
  max-width: min(780px, 100%);
  margin: 0 auto;
}

.hk-hero-extra .hk-hero-content > * {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hk-hero-extra .hk-hero-content > h1,
.hk-hero-extra .hk-hero-content > h2,
.hk-hero-extra .hk-hero-content > h3,
.hk-hero-extra .hk-hero-content > h4,
.hk-hero-extra .hk-hero-content > h5,
.hk-hero-extra .hk-hero-content > h6,
.hk-hero-extra .hk-hero-content > p,
.hk-hero-extra .hk-hero-content > ul,
.hk-hero-extra .hk-hero-content > ol,
.hk-hero-extra .hk-hero-content > blockquote,
.hk-hero-extra .hk-hero-content > pre,
.hk-hero-extra .hk-hero-content > table,
.hk-hero-extra .hk-hero-content > .wp-block-heading,
.hk-hero-extra .hk-hero-content > .wp-block-list,
.hk-hero-extra .hk-hero-content > .wp-block-paragraph,
.hk-hero-extra .hk-hero-content > .wp-block-quote,
.hk-hero-extra .hk-hero-content > .wp-block-table,
.hk-hero-extra .hk-hero-content > .wp-block-code {
  max-width: min(780px, 100%);
}

.hk-hero-extra .hk-hero-content > figure,
.hk-hero-extra .hk-hero-content > .wp-block-image,
.hk-hero-extra .hk-hero-content > .wp-block-gallery,
.hk-hero-extra .hk-hero-content > .wp-block-video,
.hk-hero-extra .hk-hero-content > .wp-block-cover,
.hk-hero-extra .hk-hero-content > .wp-block-media-text,
.hk-hero-extra .hk-hero-content > .wp-block-embed,
.hk-hero-extra .hk-hero-content > .wp-block-embed.is-type-video,
.hk-hero-extra .hk-hero-content > .wp-block-embed.is-provider-youtube,
.hk-hero-extra .hk-hero-content > iframe {
  max-width: min(980px, 100%);
}

.hk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hk-hero-visual {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.hk-dashboard-card {
  position: relative;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(17, 38, 41, 0.14);
  backdrop-filter: blur(8px);
}

.hk-dashboard-card-main {
  width: 100%;
  padding: 2rem;
  color: #fff;
  background: linear-gradient(150deg, #16383d 0%, #0d7d70 56%, #58c89f 100%);
}

.hk-dashboard-card-side {
  width: min(100%, 360px);
  margin-left: auto;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(214, 227, 225, 0.7);
}

.hk-card-eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.hk-dashboard-card-main h2 {
  max-width: 14ch;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.hk-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hk-stat-box {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hk-stat-box strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
}

.hk-stat-box span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
}

.hk-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hk-chip-list li {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: var(--hk-brand-soft);
  color: var(--hk-brand-dark);
  font-weight: 600;
}

.hk-grid {
  display: grid;
  gap: 1.4rem;
}

.hk-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hk-grid-2 {
  grid-template-columns: 1.1fr 1fr;
}

.hk-card {
  background: var(--hk-surface);
  border: 1px solid var(--hk-border);
  border-radius: 22px;
  padding: 1.7rem;
  box-shadow: var(--hk-shadow);
  transform: translateY(16px);
  opacity: 0;
  animation: hk-rise 0.8s ease forwards;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hk-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(23, 49, 54, 0.14);
  border-color: rgba(11, 157, 138, 0.28);
}

.hk-card:nth-child(2) {
  animation-delay: 0.12s;
}

.hk-card:nth-child(3) {
  animation-delay: 0.24s;
}

.hk-card-media {
  margin: -0.45rem -0.45rem 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(23, 49, 54, 0.08);
  background: #ecf4f2;
}

.hk-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hk-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.hk-section-heading {
  margin-bottom: 1.6rem;
}

.hk-section-image-full {
  margin: 1.25rem calc(50% - 50vw) 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(23, 49, 54, 0.12);
  box-shadow: var(--hk-shadow);
  background: #eaf4f2;
}

.hk-section-image-full img {
  display: block;
  width: 100vw;
  max-width: none;
  max-height: 560px;
  object-fit: cover;
}

.hk-section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hk-brand-dark);
}

.hk-section-kicker-light {
  color: rgba(255, 255, 255, 0.72);
}

.hk-card-index {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #f7faf9;
  color: var(--hk-brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.hk-list li {
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--hk-brand);
  background: #eef8f6;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(11, 157, 138, 0.06);
}

.hk-benefits {
  position: relative;
}

.hk-benefits-copy {
  padding-right: 1rem;
}

.hk-final-cta {
  color: #ffffff;
  background: linear-gradient(130deg, #144046, #0b9d8a 65%, #42bb84);
  text-align: center;
  border-radius: 34px;
  width: min(1120px, 92vw);
  margin: 0 auto 2rem;
  box-shadow: 0 30px 70px rgba(20, 64, 70, 0.18);
}

.hk-btn {
  display: inline-block;
  margin-top: 1.1rem;
  font-weight: 700;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hk-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(21, 47, 51, 0.14);
}

.hk-btn-primary {
  background: var(--hk-accent);
  color: #243036;
}

.hk-btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--hk-text);
  border: 1px solid rgba(23, 49, 54, 0.08);
}

.hk-entry {
  background: var(--hk-surface);
  border: 1px solid var(--hk-border);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: var(--hk-shadow);
}

.hk-site-footer {
  margin-top: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--hk-border);
  background: #f1f6f5;
}

.hk-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1rem;
}

.hk-form {
  display: grid;
  gap: 0.9rem;
}

.hk-form-shell {
  margin-top: 1.2rem;
  padding: 1.4rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  border: 1px solid var(--hk-border);
  box-shadow: var(--hk-shadow);
}

.hk-form-header {
  margin-bottom: 1rem;
}

.hk-form-legal {
  margin: 0.1rem 0 0;
  color: var(--hk-muted);
  font-size: 0.92rem;
}

.hk-form label {
  font-weight: 600;
  display: grid;
  gap: 0.45rem;
}

.hk-form input,
.hk-form textarea {
  border: 1px solid var(--hk-border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  background: #fff;
}

.hk-form input:focus,
.hk-form textarea:focus {
  outline: 2px solid rgba(11, 157, 138, 0.16);
  border-color: rgba(11, 157, 138, 0.34);
}

.hk-form .hk-hidden {
  position: absolute;
  left: -9999px;
}

.hk-alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.hk-alert-success {
  background: #e3f9ee;
  color: #0d6d43;
}

.hk-alert-error {
  background: #fde8e9;
  color: #8f1b2a;
}

.hk-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}

.hk-contact-card {
  padding: 1.4rem;
  border-radius: 22px;
  background: linear-gradient(160deg, #ffffff, #eef8f6);
  border: 1px solid var(--hk-border);
  box-shadow: var(--hk-shadow);
}

.hk-contact-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.hk-contact-points li {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.88);
}

.hk-contact-points strong,
.hk-contact-points span {
  display: block;
}

.hk-contact-points span {
  color: var(--hk-muted);
}

.hk-table-wrap {
  overflow-x: auto;
}

.hk-compare-table,
.hk-entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--hk-shadow);
}

.hk-compare-table th,
.hk-compare-table td,
.hk-entry-content th,
.hk-entry-content td {
  padding: 1rem;
  border: 1px solid rgba(214, 227, 225, 0.8);
  text-align: left;
  vertical-align: top;
}

.hk-compare-table thead th,
.hk-entry-content thead th {
  background: #eef8f6;
  color: var(--hk-brand-dark);
}

.hk-entry-content h2 {
  margin-top: 2rem;
}

.hk-entry-content ul {
  padding-left: 1.2rem;
}

.hk-entry-content li + li {
  margin-top: 0.45rem;
}

.hk-pro-hero {
  padding-top: 1.2rem;
  padding-bottom: 2rem;
}

.hk-pro-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.3rem;
  align-items: start;
}

.hk-pro-hero-copy {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfa 100%);
  border: 1px solid var(--hk-border);
  border-radius: 20px;
  padding: 1.3rem;
  box-shadow: var(--hk-shadow);
}

.hk-pro-hero-copy h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}

.hk-pro-hero-text {
  color: var(--hk-muted);
}

.hk-pro-hero-media {
  display: grid;
  gap: 1rem;
}

.hk-pro-slider {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--hk-border);
  overflow: hidden;
  box-shadow: var(--hk-shadow);
  background: #fff;
}

.hk-pro-slider-track {
  position: relative;
  min-height: 280px;
}

.hk-pro-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hk-pro-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hk-pro-slide img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.hk-pro-slide figcaption {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  background: rgba(12, 31, 33, 0.72);
  backdrop-filter: blur(6px);
  color: #f8ffff;
  display: grid;
  gap: 0.2rem;
}

.hk-pro-slide-link {
  justify-self: start;
  margin-top: 0.45rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
}

.hk-pro-slide-link:hover {
  background: rgba(255, 255, 255, 0.24);
}

.hk-pro-slide figcaption strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.hk-pro-slide figcaption span {
  font-size: 0.92rem;
}

.hk-pro-slider-controls {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 3;
  display: flex;
  gap: 0.4rem;
}

.hk-pro-slider-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #173136;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.hk-pro-slider-dots {
  position: absolute;
  z-index: 3;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
}

.hk-pro-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
}

.hk-pro-dot.is-active {
  width: 18px;
  background: #ffffff;
}

.hk-pro-video-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--hk-border);
  box-shadow: var(--hk-shadow);
  background: #000;
}

.hk-pro-video-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

@media (max-width: 1366px) and (min-width: 901px) {
  .hk-container {
    width: min(1080px, 94vw);
  }

  .hk-header-inner {
    min-height: 66px;
  }

  .hk-menu {
    gap: 1rem;
  }

  .hk-hero {
    padding-top: 3.3rem;
    padding-bottom: 4.2rem;
  }

  .hk-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 1.4rem;
  }

  .hk-hero h1 {
    font-size: clamp(1.9rem, 4.2vw, 3.05rem);
    max-width: 14ch;
  }

  .hk-hero-extra {
    margin-top: 1.8rem;
  }

  .hk-hero-lead,
  .hk-hero-content {
    font-size: 1rem;
  }

  .hk-dashboard-card-main {
    padding: 1.45rem;
  }

  .hk-dashboard-card-main h2 {
    font-size: clamp(1.35rem, 2.4vw, 2rem);
  }

  .hk-stat-grid {
    gap: 0.65rem;
    margin-top: 1.2rem;
  }

  .hk-stat-box {
    padding: 0.75rem;
  }

  .hk-stat-box strong {
    font-size: 1.25rem;
  }

  .hk-dashboard-card-side {
    width: min(100%, 330px);
    padding: 1.05rem;
  }

  .hk-chip-list li {
    padding: 0.45rem 0.68rem;
    font-size: 0.9rem;
  }
}

@keyframes hk-rise {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  body.hk-menu-open {
    overflow: hidden;
  }

  body.hk-menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(9, 24, 27, 0.42);
    backdrop-filter: blur(2px);
    z-index: 18;
  }

  .hk-hero-grid,
  .hk-grid-3,
  .hk-grid-2,
  .hk-footer-grid,
  .hk-contact-layout {
    grid-template-columns: 1fr;
  }

  .hk-hero-visual {
    display: grid;
    gap: 1rem;
  }

  .hk-dashboard-card {
    width: 100%;
  }

  .hk-dashboard-card-side {
    margin-left: 0;
  }

  .hk-stat-grid {
    grid-template-columns: 1fr;
  }

  .hk-final-cta {
    border-radius: 22px;
  }

  .hk-menu {
    gap: 0;
    font-size: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  .hk-menu a {
    display: block;
    padding: 0.9rem 0.95rem;
  }

  .hk-menu li + li {
    border-top: 1px solid rgba(23, 49, 54, 0.08);
  }

  .hk-menu a::after {
    display: none;
  }

  .hk-pro-hero-grid {
    grid-template-columns: 1fr;
  }

  .hk-header-actions {
    position: relative;
    gap: 0.55rem;
    z-index: 22;
  }

  .hk-menu-toggle {
    display: inline-flex;
    order: 1;
  }

  .hk-theme-toggle {
    order: 2;
    margin-left: 0;
  }

  .hk-nav {
    display: block;
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    width: min(320px, 92vw);
    border-radius: 14px;
    border: 1px solid rgba(23, 49, 54, 0.1);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 40px rgba(23, 49, 54, 0.12);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .hk-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .hk-section-image-full {
    border-radius: 14px;
  }

  .hk-section-image-full img {
    max-height: 340px;
  }
}
