:root {
  --color-bg: #F0F9FF;
  --color-bg-gradient: linear-gradient(120deg, #f0f9ff 0%, #eaf2fb 100%);
  --color-bg-card: rgba(255,255,255,0.82);
  --color-bg-card-gradient: linear-gradient(120deg, rgba(240,249,255,0.98) 0%, rgba(240,249,255,0.92) 100%);
  --color-accent: #8B5CF6;
  --color-accent-light: #ede9fe;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-border: #8B5CF6;
  --shadow-card: 0 2px 16px 0 rgba(139,92,246,0.07), 0 1.5px 8px 0 rgba(0,0,0,0.04);
  --shadow-btn: 0 2px 8px 0 rgba(139,92,246,0.08);
  --radius-card: 20px;
  --radius-btn: 12px;
  --radius-img: 14px;
  --max-width: 1240px;
  --transition: 0.18s cubic-bezier(.4,0,.2,1);
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--color-bg-gradient);
  font-family: var(--font-main);
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body.hardwood-body {
  min-height: 100vh;
  background: var(--color-bg-gradient);
  overflow-x: hidden;
}

.hardwood-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.hardwood-header {
  background: var(--color-bg-card-gradient);
  box-shadow: 0 2px 10px 0 rgba(139,92,246,0.05);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(139,92,246,0.07);
}

.hardwood-header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
}

.hardwood-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hardwood-logo__img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(139,92,246,0.09);
  background: var(--color-accent-light);
  transition: box-shadow var(--transition);
}
.hardwood-logo:hover .hardwood-logo__img {
  box-shadow: 0 4px 16px 0 rgba(139,92,246,0.16);
}

.hardwood-nav__list {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hardwood-nav__link {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  font-size: 14px;
}
.hardwood-nav__link:hover,
.hardwood-nav__link:focus {
  color: var(--color-accent);
  background: var(--color-accent-light);
}

/* HERO */
.hardwood-hero {
  background: var(--color-bg-card-gradient);
  margin: 0 auto 38px auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  max-width: var(--max-width);
  padding: 0;
  overflow: hidden;
  position: relative;
  margin-top: 28px;
}

.hardwood-hero__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.hardwood-hero__col {
  flex: 1 1 0;
  min-width: 320px;
  padding: 48px 38px 38px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hardwood-hero__col--text {
  min-width: 340px;
  max-width: 520px;
}

.hardwood-hero__col--media {
  align-items: flex-end;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 320px;
  max-width: 520px;
  padding: 38px 38px 38px 0;
}

.hardwood-hero__title {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: var(--color-accent);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hardwood-hero__tagline {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.hardwood-hero__meta {
  display: flex;
  gap: 26px;
  margin: 0 0 18px 0;
  padding: 0;
  list-style: none;
}

.hardwood-hero__meta-item {
  font-size: 13px;
  color: var(--color-text-light);
}

.hardwood-hero__intro {
  margin-bottom: 26px;
  color: var(--color-text);
}

.hardwood-hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.hardwood-hero__anchors {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.hardwood-hero__link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  border-bottom: 1px solid rgba(139,92,246,0.13);
  transition: color var(--transition), border-color var(--transition);
}
.hardwood-hero__link:hover {
  color: #6d28d9;
  border-color: var(--color-accent);
}

/* HERO MEDIA */
.hardwood-hero__video {
  border-radius: var(--radius-img);
  width: 100%;
  max-width: 480px;
  max-height: 260px;
  object-fit: cover;
  box-shadow: 0 4px 16px 0 rgba(139,92,246,0.14);
  margin-bottom: 14px;
  background: #e0e7ef;
  display: block;
}
.hardwood-hero__img {
  border-radius: var(--radius-img);
  width: 100%;
  max-width: 480px;
  max-height: 180px;
  object-fit: cover;
  box-shadow: 0 2px 8px 0 rgba(139,92,246,0.08);
  background: #e0e7ef;
  display: block;
}

/* BUTTONS */
.hardwood-btn {
  display: inline-block;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: var(--radius-btn);
  border: none;
  outline: none;
  cursor: pointer;
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-btn);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
}
.hardwood-btn:active {
  box-shadow: 0 1px 4px 0 rgba(139,92,246,0.11);
}
.hardwood-btn--primary {
  background: var(--color-accent);
  color: #fff;
}
.hardwood-btn--primary:hover,
.hardwood-btn--primary:focus {
  background: #fff;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.hardwood-btn--ghost {
  background: #fff;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.hardwood-btn--ghost:hover,
.hardwood-btn--ghost:focus {
  background: var(--color-accent);
  color: #fff;
}
.hardwood-btn--small {
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 8px;
}

/* SECTIONS */
.hardwood-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 18px 0;
  color: var(--color-accent);
  letter-spacing: -0.01em;
}
.hardwood-section__lead {
  color: var(--color-text-light);
  margin-bottom: 30px;
  font-size: 1rem;
  font-weight: 500;
}

/* SCREENSHOTS GRID */
.hardwood-screenshots {
  margin: 0 auto 44px auto;
  padding: 0;
}
.hardwood-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 22px;
}
.hardwood-ss {
  background: var(--color-bg-card-gradient);
  box-shadow: var(--shadow-card);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-width: 0;
  transition: box-shadow var(--transition), transform var(--transition);
}
.hardwood-ss:hover {
  box-shadow: 0 6px 24px 0 rgba(139,92,246,0.13);
  transform: translateY(-3px) scale(1.03);
}
.hardwood-ss__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  border-radius: 0 0 14px 14px;
  background: #e0e7ef;
}
.hardwood-ss__cap {
  font-size: 13px;
  color: var(--color-text-light);
  padding: 14px 14px 12px 14px;
  background: transparent;
  font-weight: 500;
}

/* WORLD SECTION */
.hardwood-world {
  margin: 0 auto 44px auto;
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 38px 0 38px 0;
}
.hardwood-world__grid {
  display: flex;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.hardwood-world__col {
  flex: 1 1 0;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hardwood-world__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hardwood-world__list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: var(--color-text);
}
.hardwood-world__list li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.13;
}
.hardwood-world__img {
  width: 100%;
  max-width: 420px;
  max-height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(139,92,246,0.07);
  margin-bottom: 14px;
}
.hardwood-world__img--small {
  width: 60%;
  max-width: 180px;
  max-height: 80px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 1px 4px 0 rgba(139,92,246,0.06);
}

/* HOWTO SECTION */
.hardwood-howto {
  margin: 0 auto 44px auto;
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 38px 0 38px 0;
}
.hardwood-howto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 24px;
}
.hardwood-howto__col {
  background: rgba(240,249,255,0.93);
  border-radius: 14px;
  box-shadow: 0 1px 6px 0 rgba(139,92,246,0.05);
  padding: 24px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hardwood-howto__sub {
  font-size: 1.07rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 10px 0;
}
.hardwood-howto__list,
.hardwood-howto__steps,
.hardwood-howto__flow {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hardwood-howto__list li,
.hardwood-howto__steps li,
.hardwood-howto__flow li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 13px;
}
.hardwood-howto__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.14;
}
.hardwood-howto__steps li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 12px;
  color: var(--color-accent);
  font-weight: 700;
  background: transparent;
}
.hardwood-howto__steps {
  counter-reset: step;
}
.hardwood-howto__flow li::before {
  content: '';
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.12;
  position: absolute;
}
.hardwood-howto__flow {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.hardwood-howto__flow li {
  background: rgba(139,92,246,0.07);
  border-radius: 8px;
  padding: 10px 18px 10px 22px;
  margin-bottom: 0;
  font-size: 13px;
}

/* FEATURES SECTION */
.hardwood-features {
  margin: 0 auto 44px auto;
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 38px 0 38px 0;
}
.hardwood-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hardwood-feature {
  background: var(--color-bg-card);
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(139,92,246,0.06);
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.hardwood-feature:hover {
  box-shadow: 0 6px 24px 0 rgba(139,92,246,0.13);
  transform: translateY(-3px) scale(1.03);
}
.hardwood-feature__img {
  width: 100%;
  max-width: 180px;
  max-height: 90px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 1px 6px 0 rgba(139,92,246,0.06);
  background: #e0e7ef;
  align-self: center;
}
.hardwood-feature__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 8px 0;
}
.hardwood-feature__text {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* CONTENT SECTION */
.hardwood-content {
  margin: 0 auto 44px auto;
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 38px 0 38px 0;
}
.hardwood-content__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hardwood-content__list li {
  background: var(--color-bg-card);
  border-radius: 12px;
  padding: 18px 18px 16px 28px;
  color: var(--color-text);
  font-size: 13px;
  position: relative;
  box-shadow: 0 1px 6px 0 rgba(139,92,246,0.05);
}
.hardwood-content__list li::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.12;
}

/* FAQ SECTION */
.hardwood-faq {
  margin: 0 auto 44px auto;
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 38px 0 38px 0;
}
.hardwood-faq__item {
  background: var(--color-bg-card);
  border-radius: 14px;
  box-shadow: 0 1px 6px 0 rgba(139,92,246,0.05);
  padding: 18px 24px 14px 24px;
  margin-bottom: 18px;
  transition: box-shadow var(--transition);
}
.hardwood-faq__item:hover {
  box-shadow: 0 2px 12px 0 rgba(139,92,246,0.12);
}
.hardwood-faq__q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 6px 0;
}
.hardwood-faq__a {
  color: var(--color-text-light);
  font-size: 13px;
  margin: 0;
}

/* CONTACT SECTION */
.hardwood-contact {
  margin: 0 auto 44px auto;
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 38px 0 38px 0;
}
.hardwood-contact__note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  background: var(--color-bg-card);
  border-radius: 14px;
  box-shadow: 0 1px 6px 0 rgba(139,92,246,0.05);
  padding: 18px 24px;
}
.hardwood-contact__img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  background: #e0e7ef;
  box-shadow: 0 1px 4px 0 rgba(139,92,246,0.06);
}

/* FOOTER */
.hardwood-footer {
  background: var(--color-bg-card-gradient);
  box-shadow: 0 -2px 12px 0 rgba(139,92,246,0.07);
  border-radius: 22px 22px 0 0;
  margin: 44px auto 0 auto;
  padding: 0;
  max-width: var(--max-width);
}
.hardwood-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 38px 20px 0 20px;
}
.hardwood-footer__cols {
  display: flex;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.hardwood-footer__col {
  flex: 1 1 0;
  min-width: 220px;
  margin-bottom: 22px;
}
.hardwood-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 8px;
}
.hardwood-footer__brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
}
.hardwood-footer__desc {
  font-size: 13px;
  color: var(--color-text-light);
  margin: 8px 0 0 0;
}
.hardwood-footer__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 10px 0;
}
.hardwood-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hardwood-footer__list li {
  margin-bottom: 8px;
}
.hardwood-footer__list a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--transition);
}
.hardwood-footer__list a:hover {
  color: var(--color-accent);
}
.hardwood-footer__bottom {
  border-top: 1px solid rgba(139,92,246,0.07);
  margin-top: 18px;
  padding: 18px 0 18px 0;
  text-align: center;
  color: var(--color-text-light);
  font-size: 13px;
}

/* COOKIE BANNER */
.hardwood-cookie {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 999;
  background: linear-gradient(90deg, #f0f9ff 80%, #ede9fe 100%);
  box-shadow: 0 -2px 16px 0 rgba(139,92,246,0.09);
  padding: 0;
}
.hardwood-cookie__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hardwood-cookie__text {
  color: var(--color-text-light);
  font-size: 13px;
  margin: 0;
}
.hardwood-cookie__actions {
  display: flex;
  gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hardwood-hero__inner,
  .hardwood-footer__cols,
  .hardwood-world__grid {
    flex-direction: column;
    gap: 24px;
  }
  .hardwood-hero__col,
  .hardwood-hero__col--media,
  .hardwood-hero__col--text {
    max-width: 100%;
    padding: 32px 20px 24px 20px;
  }
  .hardwood-world__img,
  .hardwood-world__img--small {
    max-width: 100%;
  }
  .hardwood-footer__col {
    min-width: 160px;
  }
}

@media (max-width: 900px) {
  .hardwood-screenshots__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .hardwood-features__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .hardwood-content__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hardwood-howto__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hardwood-footer__cols {
    gap: 20px;
  }
}

@media (max-width: 650px) {
  .hardwood-header__wrap {
    flex-direction: column;
    gap: 10px;
    padding: 10px 8px;
  }
  .hardwood-nav__list {
    gap: 14px;
    flex-wrap: wrap;
  }
  .hardwood-hero {
    margin: 18px 0 28px 0;
    border-radius: 0;
  }
  .hardwood-hero__col,
  .hardwood-hero__col--media,
  .hardwood-hero__col--text {
    padding: 18px 8px 8px 8px;
  }
  .hardwood-hero__title {
    font-size: 1.4rem;
  }
  .hardwood-section__title {
    font-size: 1.1rem;
  }
  .hardwood-screenshots__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hardwood-features__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hardwood-footer {
    border-radius: 0;
    margin: 28px 0 0 0;
  }
  .hardwood-footer__inner {
    padding: 18px 8px 0 8px;
  }
  .hardwood-footer__cols {
    flex-direction: column;
    gap: 12px;
  }
  .hardwood-footer__col {
    min-width: 100px;
  }
  .hardwood-contact__note {
    flex-direction: column;
    gap: 10px;
    padding: 12px 10px;
  }
  .hardwood-cookie__inner {
    flex-direction: column;
    gap: 10px;
    padding: 10px 8px;
    align-items: flex-start;
  }
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
  background: #e0e7ef;
}
::-webkit-scrollbar-thumb {
  background: #ede9fe;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #e9d5ff;
}