/*
Theme Name: Koworkr Platform
Theme URI: https://platform.koworkr.co
Author: Koworkr
Description: Calm enterprise SaaS theme for the platform.koworkr.co WordPress site.
Version: 1.0.0
Text Domain: koworkr-platform
*/

:root {
  --bg: #edf3ff;
  --surface: #ffffff;
  --text: #162847;
  --muted: #70819e;
  --line: #dbe5f4;
  --blue: #1f64ea;
  --blue-soft: #76bbff;
  --blue-2: #54b5ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Noto Sans TC", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(165, 197, 255, 0.28), transparent 24%),
    radial-gradient(circle at 85% 8%, rgba(212, 228, 255, 0.72), transparent 18%),
    linear-gradient(180deg, #f7faff 0%, #e9f0fb 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", "Manrope", "Noto Sans TC", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.page-shell {
  width: min(calc(100% - 28px), 1280px);
  margin: 0 auto;
  padding: 24px 0 56px;
}

.official-shell {
  display: grid;
  gap: 22px;
}

.catalog-shell {
  display: grid;
  gap: 22px;
}

.page-card {
  overflow: hidden;
  border-radius: 34px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 40px 80px rgba(39, 71, 126, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  border-bottom: 1px solid #edf2fa;
  background: linear-gradient(180deg, rgba(251, 253, 255, 0.98), rgba(247, 250, 255, 0.92));
}

.official-topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  border: 1px solid rgba(219, 229, 244, 0.9);
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(39, 71, 126, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", "Manrope", sans-serif;
  font-weight: 800;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
  color: var(--muted);
}

.status-pill,
.eyebrow,
.mini-kicker,
.plan-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  font-family: "Outfit", "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-pill {
  padding: 7px 11px;
  border: 1px solid rgba(31, 100, 234, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: #365d9f;
  font-size: 0.76rem;
}

.eyebrow,
.mini-kicker,
.plan-pill {
  padding: 8px 12px;
  background: rgba(31, 100, 234, 0.08);
  color: var(--blue);
  font-size: 0.78rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 30px;
  align-items: center;
  padding: 42px 34px 18px;
}

.official-hero {
  min-height: 520px;
  padding: 56px 44px;
  border: 1px solid rgba(219, 229, 244, 0.95);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.92)),
    radial-gradient(circle at 90% 18%, rgba(118, 187, 255, 0.18), transparent 28%);
  box-shadow: 0 34px 70px rgba(39, 71, 126, 0.12);
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 22px;
  align-items: stretch;
  min-height: 500px;
}

.catalog-hero .page-copy,
.decision-card {
  border: 1px solid rgba(219, 229, 244, 0.95);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 255, 0.94)),
    radial-gradient(circle at 82% 16%, rgba(118, 187, 255, 0.18), transparent 30%);
  box-shadow: 0 34px 70px rgba(39, 71, 126, 0.1);
}

.catalog-hero .page-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 44px;
}

.decision-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
}

.decision-card h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.decision-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.decision-steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.decision-steps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid #dbe6f4;
  border-radius: 20px;
  background: #ffffff;
}

.decision-steps strong {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  color: #17427d;
  background: linear-gradient(135deg, #edf4ff, #d7e7ff);
  font-family: "Outfit", "Manrope", sans-serif;
}

.decision-steps span {
  color: #324b70;
  font-weight: 800;
}

.official-summary {
  display: grid;
  gap: 14px;
}

.official-summary article {
  padding: 22px;
  border: 1px solid #dbe6f4;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 30px rgba(48, 79, 131, 0.06);
}

.official-summary strong {
  display: block;
  color: #14396e;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.official-summary span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.page-copy h1 {
  max-width: 12ch;
  margin-top: 12px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.page-copy p {
  max-width: 58ch;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions,
.trust-points,
.panel-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn-primary,
.btn-secondary {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(31, 100, 234, 0.16);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--blue);
  font-weight: 700;
}

.trust-points span,
.panel-points span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #d8e3f3;
  background: rgba(255, 255, 255, 0.76);
  color: #4d6489;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-art {
  min-height: 360px;
  border-radius: 28px;
  border: 1px solid #ebf1fa;
  background:
    radial-gradient(circle at 16% 20%, rgba(203, 221, 255, 0.86), transparent 24%),
    radial-gradient(circle at 80% 24%, rgba(228, 237, 255, 0.82), transparent 20%),
    linear-gradient(180deg, #fbfdff 0%, #f1f6ff 100%);
  position: relative;
  overflow: hidden;
}

.shape-aura,
.shape-orb,
.shape-plinth,
.shape-card {
  position: absolute;
}

.shape-aura {
  inset: 34px 42px 54px 92px;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(237, 244, 255, 0.96), rgba(212, 227, 255, 0.8));
  filter: blur(2px);
}

.shape-orb {
  top: 46px;
  right: 112px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.92), rgba(207, 223, 255, 0.86) 62%, rgba(177, 204, 255, 0.64) 100%);
}

.shape-plinth {
  left: 74px;
  right: 78px;
  bottom: 44px;
  height: 138px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(228, 237, 255, 0.94));
  border: 1px solid rgba(214, 226, 245, 0.96);
  box-shadow: 0 22px 36px rgba(69, 103, 167, 0.08);
}

.shape-card {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(215, 227, 246, 0.94);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 36px rgba(49, 86, 149, 0.1);
}

.shape-card-main {
  left: 44px;
  top: 46px;
  width: 230px;
}

.shape-card-float {
  right: 44px;
  bottom: 38px;
  width: 180px;
}

.shape-card span {
  display: block;
  color: #6980a2;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shape-card strong {
  display: block;
  margin-top: 10px;
  color: #16376a;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 2rem;
}

.shape-card p {
  margin-top: 8px;
  color: #6f82a0;
  line-height: 1.65;
}

.brand-row,
.metrics,
.section,
.cta-band,
.footer {
  margin-left: 34px;
  margin-right: 34px;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  color: #90a0b8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid #dce7f7;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7faff 0%, #eef4fd 100%);
}

.official-metrics {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  border-radius: 24px;
  box-shadow: 0 18px 30px rgba(48, 79, 131, 0.05);
}

.quick-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #dce7f7;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4fd 100%);
  box-shadow: 0 18px 30px rgba(48, 79, 131, 0.05);
}

.quick-metrics article {
  padding: 22px 18px;
  border-right: 1px solid #dce7f7;
}

.quick-metrics article:last-child {
  border-right: 0;
}

.quick-metrics strong {
  display: block;
  color: #14396e;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 1.55rem;
}

.quick-metrics span {
  display: block;
  margin-top: 5px;
  color: #657b9f;
  font-size: 0.84rem;
}

.metrics article {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid #dce7f7;
}

.metrics article:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  color: #14396e;
  font-size: 1.34rem;
}

.metrics span {
  display: block;
  margin-top: 4px;
  color: #657b9f;
  font-size: 0.79rem;
}

.section {
  padding-top: 34px;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 18px;
  text-align: center;
}

.section-head.align-left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-head h2,
.feature-panel h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.section-head p,
.feature-panel p,
.assurance-panel p,
.mini-card p,
.plan-card p,
.cta-band p {
  color: var(--muted);
  line-height: 1.8;
}

.intro-grid,
.plans-3 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

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

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.catalog-heading {
  max-width: 860px;
}

.product-list {
  display: grid;
  gap: 14px;
}

.product-row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 220px;
  gap: 20px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid #dbe6f4;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 30px rgba(48, 79, 131, 0.06);
}

.product-media {
  display: grid;
  min-height: 180px;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 28% 24%, rgba(118, 187, 255, 0.28), transparent 32%),
    linear-gradient(135deg, #f7fbff, #e9f2ff);
  color: #365d9f;
  font-weight: 900;
}

.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.product-main {
  padding: 8px 0;
}

.product-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.soft-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid #dbe6f4;
  border-radius: 999px;
  background: #ffffff;
  color: #587197;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-main h3 {
  margin-top: 14px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.product-main p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.75;
}

.product-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7faff, #edf4ff);
  border: 1px solid #e0e9f7;
}

.product-action strong {
  color: #14396e;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 1.35rem;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.choose-grid article {
  padding: 24px;
  border: 1px solid #dbe6f4;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 30px rgba(48, 79, 131, 0.05);
}

.choose-grid span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.choose-grid strong {
  display: block;
  margin-top: 12px;
  color: #16376a;
  font-size: 1.1rem;
  line-height: 1.45;
}

.system-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #dbe6f4;
  background: #ffffff;
  box-shadow: 0 18px 30px rgba(48, 79, 131, 0.06);
}

.system-thumb,
.system-hero-media {
  display: grid;
  min-height: 220px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(91, 132, 212, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 132, 212, 0.08) 1px, transparent 1px),
    #f6f9ff;
  background-size: 20px 20px, 20px 20px, auto;
}

.system-thumb img,
.system-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.system-thumb span {
  padding: 22px;
  color: #365d9f;
  font-weight: 800;
  text-align: center;
}

.system-copy {
  padding: 20px;
}

.system-copy h3 {
  margin-top: 12px;
  font-size: 1.35rem;
}

.system-copy p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.75;
}

.system-copy strong {
  display: block;
  margin-top: 14px;
  color: #16376a;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 1.1rem;
}

.compact-list {
  margin-top: 14px;
  margin-bottom: 18px;
}

.feature-panel,
.assurance-panel,
.mini-card,
.plan-card,
.content-panel {
  border: 1px solid #dbe6f4;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 255, 0.98));
  box-shadow: 0 16px 28px rgba(48, 79, 131, 0.05);
}

.feature-panel,
.assurance-panel,
.content-panel {
  padding: 28px;
  border-radius: 26px;
}

.content-panel {
  color: #314766;
  line-height: 1.85;
}

.content-panel > * + * {
  margin-top: 14px;
}

.mini-card,
.plan-card {
  padding: 20px;
  border-radius: 22px;
}

.assurance-stack,
.plan-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.assurance-stack article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2ebf7;
}

.assurance-stack strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #edf4ff, #d7e7ff);
  color: #17427d;
}

.plan-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.plan-card.featured {
  background: linear-gradient(180deg, #f2f7ff 0%, #ffffff 42%);
  border-color: #cbddfb;
  box-shadow: 0 22px 34px rgba(31, 100, 234, 0.12);
}

.plan-card strong {
  display: block;
  margin-top: 14px;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 2rem;
}

.plan-list {
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
  color: #49617f;
}

.plan-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
}

.media-band,
.video-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: center;
}

.image-frame,
.video-frame {
  overflow: hidden;
  min-height: 260px;
  border-radius: 24px;
  border: 1px solid #dbe6f4;
  background: #f5f8ff;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

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

.empty-media {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 32px;
  color: #70819e;
  text-align: center;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, #1f63e8 0%, #4f92ff 52%, #74c3ff 100%);
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.84);
}

.cta-band .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.14);
}

.official-cta {
  margin-left: 0;
  margin-right: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0 30px;
  color: #7488a8;
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .hero,
  .catalog-hero,
  .intro-grid,
  .cards-4,
  .systems-grid,
  .system-card,
  .product-row,
  .choose-grid,
  .quick-metrics,
  .plans-3,
  .metrics,
  .media-band,
  .video-band {
    grid-template-columns: 1fr;
  }

  .topbar,
  .cta-band,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 980px) {
  .product-row {
    grid-template-columns: 1fr;
  }

  .product-action {
    align-items: stretch;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .hero,
  .section,
  .brand-row,
  .metrics,
  .cta-band,
  .footer {
    margin-left: 22px;
    margin-right: 22px;
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .official-shell .section,
  .catalog-shell .section,
  .official-shell .metrics,
  .catalog-shell .quick-metrics,
  .official-shell .cta-band,
  .catalog-shell .cta-band,
  .official-shell .footer {
    margin-left: 0;
    margin-right: 0;
  }

  .official-hero {
    padding: 34px 24px;
  }

  .catalog-hero .page-copy,
  .decision-card {
    padding: 34px 24px;
  }
}

/* Classic corporate homepage */
.classic-site,
.clean-site {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  color: #172033;
}

.clean-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 45px;
  background: #1f1f1f;
  border-bottom: 2px solid #0bb48f;
}

.clean-left {
  display: flex;
  align-items: stretch;
}

.clean-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 172px;
  padding: 0 12px;
  background: #0aa886;
  color: #ffffff;
  font-weight: 900;
}

.clean-brand small {
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 600;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: 0.78rem;
}

.feature-menu {
  position: relative;
}

.feature-menu button,
.clean-links a {
  height: 100%;
  border: 0;
  background: transparent;
  color: #f4f7f6;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.feature-menu button {
  padding: 0 18px;
}

.feature-menu button::after {
  content: "▾";
  margin-left: 7px;
  color: #0fd3aa;
  font-size: 0.72rem;
}

.feature-menu:hover button,
.feature-menu:focus-within button,
.clean-links a:hover {
  color: #12ddb0;
}

.mega-panel {
  position: absolute;
  top: 45px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 170px);
  gap: 22px;
  width: max-content;
  padding: 20px 24px;
  background: rgba(31, 31, 31, 0.97);
  border-top: 2px solid #0bb48f;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s ease;
}

.feature-menu:hover .mega-panel,
.feature-menu:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-panel strong {
  display: block;
  margin-bottom: 10px;
  color: #ffae42;
  font-size: 0.8rem;
}

.mega-panel a {
  display: block;
  padding: 4px 0;
  color: #eef7f5;
  font-size: 0.76rem;
  line-height: 1.45;
}

.mega-panel a:hover {
  color: #10d7aa;
}

.clean-links {
  display: flex;
  align-items: stretch;
  padding-right: 12px;
}

.clean-links a {
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
}

.simple-hero {
  position: relative;
  display: grid;
  min-height: 450px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.06) 42%, rgba(255, 255, 255, 0.42)),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 46%, #e7f4ed 100%);
}

.simple-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.82), rgba(255,255,255,0.06), rgba(255,255,255,0.72)),
    radial-gradient(circle at 80% 18%, rgba(98, 181, 111, 0.3), transparent 16%),
    repeating-linear-gradient(90deg, rgba(22, 39, 61, 0.035) 0 1px, transparent 1px 72px);
}

.photo-person {
  position: absolute;
  bottom: -42px;
  width: 265px;
  height: 385px;
  border-radius: 120px 120px 24px 24px;
  background:
    radial-gradient(circle at 50% 19%, #f3c99f 0 13%, transparent 13.5%),
    linear-gradient(135deg, #1c2738 0 42%, #ffffff 43% 56%, #0f1725 57% 100%);
  opacity: 0.26;
  filter: blur(0.2px);
}

.photo-left {
  left: 9%;
  transform: rotate(-6deg) scale(0.98);
}

.photo-center {
  left: 43%;
  opacity: 0.32;
  transform: translateX(-50%) scale(1.12);
}

.photo-right {
  right: 10%;
  transform: rotate(8deg) scale(1.02);
}

.hero-message {
  position: relative;
  z-index: 1;
  width: min(92%, 760px);
  text-align: center;
  transform: translateY(18px);
}

.hero-message p {
  margin-bottom: 12px;
  color: #078d72;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-message h1 {
  color: #ffffff;
  font-size: clamp(2rem, 4.1vw, 3rem);
  font-weight: 900;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.35), 0 0 2px #1d2a3d;
}

.hero-message h1 b {
  color: #00a986;
  font-size: 1.08em;
}

.hero-message span {
  display: block;
  margin-top: 2px;
  color: #ffffff;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.35), 0 0 2px #1d2a3d;
}

.focus-strip {
  display: grid;
  min-height: 44px;
  place-items: center;
  background: linear-gradient(90deg, #09a984, #a8dfc4);
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.simple-products {
  padding: 34px 20px 58px;
  background: #ffffff;
  text-align: center;
}

.simple-heading span {
  color: #07a783;
  font-size: 0.86rem;
  font-weight: 900;
}

.simple-heading h2 {
  margin-top: 5px;
  color: #1b2638;
  font-size: 1rem;
}

.simple-heading h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin: 10px auto 0;
  background: #cbd5df;
}

.simple-heading p {
  max-width: 620px;
  margin: 8px auto 0;
  color: #69768a;
  line-height: 1.7;
}

.product-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(460px, 100%);
  margin: 20px auto 0;
}

.product-tile {
  display: grid;
  gap: 8px;
  color: #172033;
}

.tile-image {
  display: grid;
  min-height: 58px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dfe8ef;
  background:
    linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.32)),
    radial-gradient(circle at 30% 30%, #d9f6ef, transparent 28%),
    linear-gradient(135deg, #f3f9fb, #b8c6d3);
}

.tile-image img {
  display: block;
  width: 100%;
  height: 58px;
  object-fit: cover;
}

.tile-image em {
  color: #ffffff;
  font-style: normal;
  font-weight: 900;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.product-tile strong {
  color: #143047;
  font-size: 0.78rem;
}

.product-tile small {
  display: none;
  overflow: hidden;
  color: #6a788c;
  font-size: 0.78rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.clean-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 16px 20px;
  border-top: 3px solid #0aa886;
  background:
    linear-gradient(rgba(10, 14, 18, 0.92), rgba(10, 14, 18, 0.92)),
    repeating-linear-gradient(135deg, #222 0 8px, #111 8px 16px);
  color: #dce5e3;
  font-size: 0.68rem;
}

@media (max-width: 900px) {
  .clean-nav {
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .clean-left,
  .clean-links {
    min-height: 54px;
  }

  .clean-brand {
    min-width: 180px;
  }

  .mega-panel {
    left: -180px;
    grid-template-columns: 1fr;
    width: min(92vw, 360px);
  }

  .product-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .clean-left {
    flex-direction: column;
  }

  .feature-menu button {
    width: 100%;
    height: 48px;
    text-align: left;
  }

  .mega-panel {
    left: 0;
  }

  .clean-links {
    overflow-x: auto;
  }

  .simple-hero {
    min-height: 330px;
  }

  .product-tiles {
    grid-template-columns: 1fr;
  }

  .clean-footer {
    flex-direction: column;
    align-items: center;
  }
}
