/*
Theme Name: NK Theme
Theme URI: https://example.com/nk-theme
Author: NK Team
Author URI: https://example.com
Description: Minimal WordPress theme for "Nadezhny Cleaning".
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: nk-theme
*/

:root {
  --bg-hero: #f0f2f6;
  --bg-soft: #f0f2f6;
  --surface: #ffffff;
  --text: #101011;
  --muted: #606266;
  --line: #e5e7ef;
  --brand: #5235ef;
  --brand-2: #8771ff;
  --brand-dark: #101011;
  --deep: #101011;
  --radius: 30px;
  --shadow: 0 10px 50px rgba(82, 53, 239, 0.1);
}

.temporary-page {
  min-height: calc(100vh - 92px);
  background: #f4f6fb;
  color: var(--text);
}

.temporary-hero {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  padding: 96px 0;
}

.temporary-hero-inner {
  max-width: 760px;
}

.temporary-kicker {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.temporary-hero h1 {
  margin: 0 0 24px;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0;
}

.temporary-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.temporary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

@media (max-width: 767px) {
  .temporary-hero {
    padding: 72px 0;
  }

  .temporary-hero h1 {
    font-size: 42px;
  }

  .temporary-hero p {
    font-size: 17px;
  }

  .temporary-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Switzer", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg-soft);
  line-height: 1.4;
}

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

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

.container {
  width: min(1350px, calc(100% - 60px));
  margin: 0 auto;
}

.site-header {
  padding: 0;
}

.nk-sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(-140%);
  transition: transform 220ms ease, opacity 220ms ease;
  opacity: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(229, 231, 239, 0.9);
}

.nk-sticky-header.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nk-header-inner {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 12px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.nk-header-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.nk-header-logo img {
  width: 224px;
  height: 76px;
  object-fit: contain;
}

.nk-header-nav {
  justify-self: center;
}

.nk-header-links {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #606266;
  font-size: 0.96rem;
}

.nk-header-links a {
  padding: 10px 2px;
  border-radius: 12px;
}

.nk-header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nk-header-login {
  white-space: nowrap;
}

.nk-burger {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: var(--brand);
  box-shadow: 0 10px 25px rgba(82, 53, 239, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nk-burger-lines {
  position: relative;
  width: 18px;
  height: 14px;
  display: block;
}

.nk-burger-lines::before,
.nk-burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}

.nk-burger-lines::before {
  top: 4px;
}

.nk-burger-lines::after {
  top: 10px;
  opacity: 0.9;
}

.nk-nav-panel {
  width: 100%;
  margin: 0;
  background: #fff;
  border: 0;
  border-top: 1px solid rgba(229, 231, 239, 0.9);
  border-radius: 0;
  box-shadow: none;
  padding: 14px 0 18px;
}

.nk-nav-panel-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.nk-nav-panel-links a {
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  color: #101011;
  background: rgba(240, 242, 246, 0.7);
}

.nk-nav-open .nk-burger-lines::before {
  top: 7px;
  transform: rotate(45deg);
}

.nk-nav-open .nk-burger-lines::after {
  top: 7px;
  transform: rotate(-45deg);
  opacity: 1;
}

.site-footer {
  background: #0f1118;
  color: #a6adc2;
  padding: 2rem 0 2.4rem;
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.landing {
  overflow: hidden;
}

.section {
  padding: 8rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #f0f2f6 0.45%, rgba(135, 113, 255, 0.3) 24.3%, rgba(135, 113, 255, 0.3) 78.8%, #f0f2f6 100%);
}

.section-light {
  background: #f0f2f6;
}

.section-dark {
  background: #f0f2f6;
  color: #f5f7ff;
  padding: 7.6rem 0;
}

.hero {
  padding: 7.5rem 0 2.6rem;
}

.hero-topbar {
  margin-top: 0;
  padding: 0 0.4rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.2rem;
}

.hero-logo {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-logo a {
  display: inline-flex;
  align-items: center;
}

.hero-logo img {
  width: 224px;
  height: 76px;
  object-fit: contain;
}

.hero-nav-wrap {
  justify-self: center;
}

.hero-nav {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #606266;
  font-size: 0.96rem;
}

.hero-cta-wrap {
  justify-self: end;
}

.btn {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.78rem 1.55rem;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 6px 20px rgba(82, 53, 239, 0.6);
}

.hero-content > .btn-primary {
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.hero-proof-title {
  margin: 2.2rem auto 0.95rem;
  max-width: 920px;
  text-align: center;
  font-family: "Inter Display", "Inter", "Switzer", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  font-size: clamp(1.56rem, 3.6vw, 2.56rem);
}

.hero-proof-subtitle {
  margin: 0 auto;
  max-width: 740px;
  text-align: center;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-dark {
  background: linear-gradient(180deg, #101011 0%, #2b2b2c 100%);
  color: #fff;
  border-color: #101011;
  box-shadow: 0 6px 20px rgba(16, 16, 17, 0.6);
}

.btn-outline {
  background: #fff;
  color: #22273a;
}

.btn-outline:hover {
  border-color: #c7cbda;
}

.hero-content {
  text-align: center;
  padding-top: 1.8rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid #ececf3;
  border-radius: 999px;
  padding: 0.25rem 0.8rem 0.25rem 0.3rem;
  margin-bottom: 1.6rem;
  font-size: 0.86rem;
  color: #424b62;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.hero-badge-new {
  background: #12141d;
  color: #fff;
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
  font-size: 0.78rem;
}

.hero-title {
  margin: 0 auto;
  max-width: 840px;
  /* Desktop: smaller by ~15px vs previous */
  font-size: clamp(1.475rem, 5.2vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: "Inter Display", "Inter", "Switzer", sans-serif;
  font-weight: 600;
}

/* Tablet */
@media (max-width: 1199px) {
  .nk-header-inner {
    grid-template-columns: 1fr auto;
    border-radius: 0;
  }

  .nk-header-nav,
  .nk-header-login {
    display: none;
  }

  .nk-burger {
    display: inline-flex;
  }

  .nk-header-logo img {
    width: 168px;
    height: 57px;
  }

  .hero-title {
    font-size: clamp(1.375rem, 6vw, 3.125rem);
  }
}

/* Tablet layout fixes (iPad sizes) */
@media (min-width: 810px) and (max-width: 1199px) {
  .container {
    width: calc(100% - 48px);
  }

  .section {
    padding: 6.2rem 0;
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .workflow-first-screen {
    padding: 2.2rem 0 2.4rem;
  }

  .workflow-first-screen .hero-proof-title {
    margin-bottom: 1.6rem;
  }

  .workflow-first-screen .workflow-split {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .workflow-first-screen .workflow-copy {
    justify-self: stretch;
    max-width: none;
    padding-top: 0.4rem;
  }

  .workflow-visual {
    padding: 26px;
  }

  .workflow-visual img {
    aspect-ratio: 1.35;
  }

  .growth-first-block {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

/* Mobile */
@media (max-width: 809px) {
  .nk-header-inner {
    padding: 10px 14px;
  }

  .nk-burger {
    width: 42px;
    height: 42px;
  }

  .hero-title {
    font-size: clamp(1.6375rem, 8.4vw, 3.125rem);
  }

  .hero-proof-title {
    font-size: clamp(1.35rem, 6.6vw, 2.05rem);
  }

  .hero {
    padding-bottom: 0.8rem;
  }

  .workflow-first-screen {
    padding-top: 0.8rem;
  }

  .workflow-first-screen {
    padding-bottom: 1.6rem;
  }

  .workflow-first-screen .hero-proof-title {
    margin-top: 0.6rem;
  }

  .workflow-first-screen .hero-proof-title {
    margin-bottom: 0.45rem;
  }

  .workflow-first-screen .case-slider .workflow-split {
    grid-template-columns: 1fr;
    grid-template-areas: "visual" "copy";
    gap: 1rem;
  }

  .workflow-first-screen .case-slider .workflow-copy {
    grid-area: copy;
    padding-top: 0;
  }

  .workflow-first-screen .case-slider .workflow-visual {
    grid-area: visual;
    padding: 18px;
    border-radius: 24px;
  }

  .workflow-first-screen .case-slider .workflow-visual img {
    border-radius: 24px;
  }

  .workflow-first-screen .case-title {
    text-align: center;
    margin-bottom: 0.9rem;
  }

  .workflow-first-screen .case-footnote {
    text-align: center;
  }

  .growth-section {
    padding-top: 1.8rem;
  }

  .growth-first-block {
    margin-top: 1.2rem;
    gap: 1.2rem;
  }

  .growth-copy h3 {
    font-size: 1.2rem;
  }
}

.hero-subtitle {
  margin: 1.2rem auto 2.2rem;
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1.25rem, 2.1vw, 1.875rem);
}

@media (max-width: 809px) {
  .hero-subtitle {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
}

.hero-mockups {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.visual-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.visual-card img {
  width: 100%;
  height: auto;
  display: block;
}

.image-fallback {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  color: #40465c;
  font-weight: 600;
}

.image-fallback-dark {
  background: linear-gradient(135deg, #111420 0%, #2a2f45 100%);
  color: #f5f7ff;
}

.image-fallback-warm {
  background: linear-gradient(135deg, #ffe7ad 0%, #ffd67f 100%);
}

.image-fallback-blue {
  background: linear-gradient(135deg, #e9eeff 0%, #cfd9ff 100%);
}

.image-fallback-purple {
  background: linear-gradient(135deg, #ece8ff 0%, #cbbff8 100%);
}

.visual-lift {
  transform: translateY(0);
}

.visual-drop {
  transform: translateY(30px);
}

.hero-main-card {
  aspect-ratio: 1.598;
}

.hero-main-card > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-side-card {
  min-height: 540px;
  align-self: center;
}

.hero-side-card img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center center;
}

#features .section-title {
  max-width: 640px;
  margin: 0 auto 1.1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

#features .section-subtitle {
  max-width: 620px;
  margin: 0 auto 2.2rem;
  color: #606266;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.hero-float {
  position: absolute;
  z-index: 2;
  display: none;
}

.hero-float-left {
  width: 60px;
  left: 150px;
  bottom: 30px;
}

.hero-float-right {
  width: 100px;
  right: 60px;
  top: 60px;
}

.logo-strip {
  background: #f0f2f6;
  border-top: 1px solid #e4e6ef;
  border-bottom: 1px solid #e4e6ef;
  padding: 0.85rem 0;
}

.logos {
  display: grid;
  grid-template-columns: repeat(8, minmax(70px, 1fr));
  gap: 1rem;
  align-items: center;
}

.logos img {
  max-width: 115px;
  max-height: 34px;
  width: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.section-title {
  margin: 0 0 2rem;
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.1;
  font-family: "Inter Display", "Inter", "Switzer", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: -1rem auto 2.2rem;
  max-width: 700px;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

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

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

.cards .card {
  background: #f0f2f6;
  border: 0;
  border-radius: 30px;
  padding: 6px;
  box-shadow: 0 4px 30px rgba(45, 30, 133, 0.1);
}

.cards .card img {
  border-radius: 25px;
  aspect-ratio: 1.16;
  object-fit: cover;
}

.cards .card h3 {
  margin: 1rem 1rem 0.35rem;
  font-size: 1.1rem;
  line-height: 1.15;
  font-family: "Inter Display", "Inter", "Switzer", sans-serif;
}

.cards .card p {
  margin: 0 1rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.split h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.6rem, 3.1vw, 3rem);
  line-height: 1.2;
  font-family: "Inter Display", "Inter", "Switzer", sans-serif;
  font-weight: 700;
}

.split p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.split.reverse {
  grid-template-columns: 1fr 1fr;
}

.check-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.check-list li {
  position: relative;
  padding-left: 2.6rem;
  min-height: 2rem;
  display: flex;
  align-items: center;
  font-size: 0.92rem;
}

.check-list li::before {
  content: "01";
  position: absolute;
  left: 0;
  top: 0.14rem;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 6px;
  background: #f0f2f6;
  color: #2b2b2c;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.check-list li:nth-child(2)::before {
  content: "02";
}

.check-list li:nth-child(3)::before {
  content: "03";
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.7rem 1.55rem;
}

.icon-grid span {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-grid img {
  width: 30px;
  height: 30px;
}

.workflow-section {
  padding: 6.4rem 0 4.2rem;
  background: #ffffff;
}

.workflow-section .split {
  grid-template-columns: 0.85fr 1fr;
  align-items: start;
  gap: 5rem;
}

.workflow-first-screen {
  padding: 2.6rem 0 2.6rem;
  background: #ffffff;
}

.workflow-first-screen .hero-proof-title {
  margin-bottom: 2.5rem;
}

.workflow-first-screen .workflow-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: 1.4rem;
}

.workflow-copy {
  max-width: 430px;
  padding-top: 2.5rem;
}

.workflow-first-screen .workflow-copy {
  max-width: 520px;
  padding-top: 3.1rem;
  justify-self: end;
}

.workflow-copy h2 {
  font-size: clamp(3rem, 5vw, 4.2rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin-bottom: 1.6rem;
}

.workflow-first-screen .workflow-copy h2 {
  font-size: clamp(1.425rem, 3.2vw, 2.625rem);
}

.workflow-first-screen .case-title {
  margin: 0 0 1.6rem;
  text-align: center;
}

.workflow-first-screen .case-title-sub {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85em; /* ~5pt smaller relative */
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #101011;
  opacity: 0.82;
}

.workflow-first-screen .case-footnote {
  margin: 1rem 0 0;
  color: #606266;
  font-size: 0.88rem;
  line-height: 1.2;
}

.workflow-steps {
  display: grid;
  gap: 1.15rem;
}

.workflow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.9rem;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: #f0f2f6;
  color: #101011;
  font-size: 0.86rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  margin: 0 0 0.35rem;
  font-size: 1.62rem;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-family: "Inter Display", "Inter", "Switzer", sans-serif;
}

@media (max-width: 809px) {
  .step-content h3 {
    font-size: 1.18rem;
    line-height: 1.12;
  }
}

.step-content p {
  margin: 0;
  color: #606266;
  font-size: 1.02rem;
  line-height: 1.45;
}

.workflow-visual {
  border: 0;
  background: #f0f2f6;
  box-shadow: none;
  max-width: none;
  margin-left: 0;
  border-radius: 30px;
  padding: 50px 100px 20px;
}

.workflow-visual img {
  border-radius: 30px;
  aspect-ratio: 1.168;
  object-fit: cover;
}

.case-slider {
  position: relative;
  overflow: hidden;
}

.case-track {
  display: flex;
  transition: transform 260ms ease;
  will-change: transform;
}

.case-slide {
  min-width: 100%;
}

.growth-section {
  padding-top: 2.8rem;
}

.growth-first-block {
  margin-top: 2.2rem;
  align-items: start;
  gap: 2.2rem;
}

.growth-copy h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-family: "Inter Display", "Inter", "Switzer", sans-serif;
}

@media (min-width: 1200px) {
  .growth-copy h3 {
    text-align: center;
  }
}

.growth-intro,
.growth-system {
  margin: 0 0 1rem;
  color: #2a2b31;
  font-size: 1rem;
  line-height: 1.55;
}

.growth-system {
  margin-top: -0.15rem;
}

.growth-list {
  margin: 0;
  padding-left: 0;
  display: grid;
  gap: 0.9rem;
  color: #2a2b31;
}

.growth-item {
  font-size: 0.98rem;
  line-height: 1.55;
}

.growth-readmore {
  margin-top: 1.2rem;
  align-self: center;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.growth-readmore--mobile {
  display: none;
}

.growth-readmore--desktop {
  display: inline-flex;
}

@media (max-width: 809px) {
  .growth-readmore--desktop {
    display: none;
  }
  .growth-readmore--mobile {
    display: block;
    width: fit-content;
    margin: 1.2rem auto 0;
    text-align: center;
  }
}

/* Increase subtitle size for desktop/tablet only */
@media (min-width: 810px) {
  .growth-section .section-subtitle {
    font-size: 1.3125rem; /* +5px vs base 1rem */
  }
}

/* Mirror layout for problem #2 */
.growth-item--mirror .growth-item-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: row-reverse;
}

.growth-problem-2-title {
  text-align: center;
}

.growth-problem-2-title strong {
  font-weight: 800;
}

.growth-item-text {
  flex: 1 1 auto;
}

.growth-problem-2-split {
  margin-top: 1.6rem;
  align-items: start;
  gap: 2.2rem;
}

/* Ensure desktop/tablet match the 1st block style */
.growth-problem-2-copy .growth-problem-2-title {
  text-align: center !important;
}

/* Keep the 2nd problem text consistent */
.growth-problem-2-text {
  margin: 0.85rem 0 0;
  color: #606266;
  font-size: 1rem;
  line-height: 1.55;
}

.crm-bullets {
  margin: 0.65rem 0 0;
  padding-left: 0;
  color: #606266;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.crm-bullets li {
  position: relative;
  padding-left: 1rem;
}

.crm-bullets li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: #606266;
}

.crm-subsections {
  display: grid;
  gap: 0.85rem;
}

.crm-subsection {
  display: grid;
  gap: 0.45rem;
}

.crm-subheading {
  margin: 0;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #101011;
}

.crm-groups {
  margin: 0;
  padding-left: 0;
  display: grid;
  gap: 0.65rem;
  color: #606266;
  font-size: 0.98rem;
  line-height: 1.55;
  list-style: none;
}

.crm-groups li {
  position: relative;
  padding-left: 1rem;
}

.crm-groups li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: #606266;
}

@media (max-width: 809px) {
  .crm-subheading {
    font-size: 1.05rem;
  }

  .crm-groups {
    font-size: 0.98rem;
  }
}

@media (max-width: 809px) {
  .growth-problem-2-split {
    margin-top: 1.1rem;
  }
}

.growth-problem-2-block {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.2rem;
  align-items: start;
}

.growth-problem-2-visual {
  background: #f0f2f6;
  border-radius: 30px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.growth-problem-2-visual img {
  border-radius: 22px;
  aspect-ratio: 1.2;
  object-fit: cover;
  width: 100%;
}

.growth-problem-2-copy {
  display: flex;
  flex-direction: column;
}

.growth-problem-2-title {
  text-align: left;
}

.growth-problem-2-text {
  color: #606266;
  margin: 0.6rem 0 0;
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 809px) {
  .growth-problem-2-block {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .growth-problem-2-visual {
    order: -1;
    padding: 18px;
    border-radius: 24px;
  }

  .growth-problem-2-visual img {
    border-radius: 24px;
  }

  .growth-problem-2-text {
    margin-top: 0.65rem;
  }

  .growth-problem-2-copy .growth-readmore--mobile {
    margin-top: 1.1rem;
  }
}

.growth-item-img {
  flex: 0 0 170px;
  max-width: 170px;
  border-radius: 22px;
  object-fit: cover;
  aspect-ratio: 1.1;
}

@media (max-width: 809px) {
  .growth-item--mirror .growth-item-wrap {
    flex-direction: column;
    gap: 0.75rem;
  }

  .growth-item-img {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    border-radius: 18px;
  }
}

.growth-sublist {
  margin: 0.7rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.55rem;
}

.growth-item-follow {
  margin: 0.55rem 0 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
  font-style: italic;
}

.growth-visual {
  border: 0;
  background: #f0f2f6;
  box-shadow: none;
  border-radius: 30px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.growth-visual img {
  border-radius: 22px;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.case-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(16, 16, 17, 0.88);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.case-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(135deg);
}

.case-arrow-next::before {
  transform: rotate(-45deg);
}

.case-arrow-prev {
  left: 18px;
}

.case-arrow-next {
  right: 18px;
}

.case-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.workflow-meta {
  padding: 0;
  color: var(--muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: flex-start;
}

.workflow-meta p {
  margin: 0;
  font-size: 1rem;
}

.workflow-meta-icons {
  display: inline-flex;
  gap: 0.35rem;
}

.workflow-meta-icons a {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ececf3;
}

.workflow-meta-icons img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.integration-section {
  padding: 3rem 0 6.8rem;
  background: #ffffff;
}

.integration-split {
  align-items: flex-start;
  gap: 3rem;
  grid-template-columns: 1.08fr 0.92fr;
}

.integration-visual {
  background: #f0f2f6;
  border-radius: 30px;
  padding: 44px 60px 40px;
  position: relative;
}

.integration-core {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  margin: 2.2rem auto 0;
  box-shadow: 0 -5px 16px rgba(82, 53, 239, 0.6);
  overflow: hidden;
}

.integration-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.integration-copy {
  max-width: 535px;
  padding-top: 3.6rem;
}

.integration-copy .btn-dark {
  margin-top: 1.4rem;
}

.integration-quote {
  margin: 2.6rem 0 0;
  padding: 0;
}

.integration-quote p {
  font-size: 2rem;
  line-height: 1.33;
  color: #2b2b2c;
  margin: 0;
}

.integration-quote footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #101011;
  font-size: 0.95rem;
}

.integration-quote footer img {
  width: 35px;
  height: 35px;
  border-radius: 30px;
  object-fit: cover;
}

.dark-feature-wrap {
  background: #101011;
  border-radius: 30px;
  padding: 7.5rem 2rem 3rem;
}

.section-dark .section-title {
  color: #fff;
  margin-bottom: 2.8rem;
}

.dark-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.9rem;
  margin-bottom: 2.6rem;
}

.dark-showcase-card {
  background: #2b2b2c;
  border-radius: 30px;
  padding: 6px;
  overflow: hidden;
}

.dark-showcase-media {
  background: #101011;
  border-radius: 25px;
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.dark-showcase-media > img {
  width: 164px;
  height: 164px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.dark-showcase-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 150px !important;
  object-fit: cover !important;
  object-position: center top !important;
  opacity: 0.1;
  z-index: 1 !important;
}

.dark-showcase-media-icons {
  justify-content: space-between;
  padding: 0 2.6rem;
}

.dark-arrow-group {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  opacity: 0.18;
}

.dark-arrow-group img {
  width: 22px;
  height: 38px;
  object-fit: contain;
}

.dark-showcase-media-icons .dark-icon-left,
.dark-showcase-media-icons .dark-icon-right {
  width: 140px;
  height: 150px;
  object-fit: contain;
}

.dark-tag {
  position: absolute;
  z-index: 3;
  width: auto;
  height: 27px;
}

.dark-tag-left {
  left: 28px;
  bottom: 22px;
}

.dark-tag-right {
  right: 28px;
  bottom: 22px;
}

.dark-showcase-copy {
  padding: 1.3rem 1rem 1.15rem;
}

.dark-showcase-copy h3 {
  margin: 0 0 0.55rem;
  font-size: 2rem;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.02em;
}

.dark-showcase-copy p {
  margin: 0;
  font-size: 1rem;
  color: #a7a7a7;
}

.dark-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem;
}

.dark-mini-card {
  min-width: 0;
}

.dark-mini-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #2b2b2c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.dark-mini-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.dark-mini-card h3 {
  margin: 0 0 0.6rem;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.dark-mini-card p {
  margin: 0;
  color: #a7a7a7;
  font-size: 0.96rem;
  line-height: 1.45;
}

.loved-section {
  padding: 6rem 0 4.8rem;
}

.loved-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.loved-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-family: "Inter Display", "Inter", "Switzer", sans-serif;
}

.loved-quote {
  margin: 0;
  max-width: 535px;
}

.loved-avatars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0 0 1rem;
}

.loved-avatars img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(82, 53, 239, 0.2);
}

.loved-quote p {
  margin: 0;
  color: #2b2b2c;
  font-size: 1.75rem;
  line-height: 1.34;
  letter-spacing: -0.02em;
}

.loved-quote footer {
  margin-top: 1.1rem;
  color: #101011;
  font-size: 0.95rem;
}

.pricing-cards {
  align-items: stretch;
}

.pricing-toggle {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  margin: 0 auto 1.6rem;
  color: var(--muted);
  font-size: 0.92rem;
  width: fit-content;
}

.pricing-toggle-pill {
  width: 58px;
  height: 28px;
  border-radius: 999px;
  background: #e7e9f2;
  position: relative;
}

.pricing-toggle-pill i {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand);
  right: 4px;
  top: 4px;
}

.pricing-toggle em {
  color: var(--brand);
  font-style: normal;
}

.price-card {
  background: #fff;
  border: 1px solid #e7e9f2;
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 4px 14px rgba(31, 35, 64, 0.05);
}

.price-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-family: "Inter Display", "Inter", "Switzer", sans-serif;
}

.price {
  margin: 0 0 0.65rem;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 700;
  font-family: "Inter Display", "Inter", "Switzer", sans-serif;
}

.price span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.price-card ul {
  margin: 0 0 0.9rem;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.price-card.featured {
  border-color: #d0c7ff;
  box-shadow: 0 8px 24px rgba(82, 53, 239, 0.16);
}

.pricing-cards .btn {
  width: 100%;
  text-align: center;
  padding: 0.68rem 1rem;
}

.app-section {
  padding-top: 6.5rem;
}

.app-visual {
  background: #17181f;
  border: 0;
  box-shadow: none;
  border-radius: 30px;
  padding: 0;
  max-width: 420px;
}

.app-visual img {
  border-radius: 26px;
}

.cta-band {
  background: linear-gradient(180deg, #f0f2f6 0.45%, rgba(135, 113, 255, 0.3) 24.3%, rgba(135, 113, 255, 0.3) 100%);
  padding: 6.6rem 0 2.5rem;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.cta-box h2 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(1.6rem, 3.1vw, 2.7rem);
  line-height: 1.16;
  font-family: "Inter Display", "Inter", "Switzer", sans-serif;
  font-weight: 700;
}

.post-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.post-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.2rem;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dark-showcase-grid {
    grid-template-columns: 1fr;
  }

  .dark-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(1350px, calc(100% - 30px));
  }

  .hero-topbar {
    grid-template-columns: 1fr;
    border-radius: 0;
    text-align: center;
    gap: 0.9rem;
  }

  .hero-nav-wrap,
  .hero-cta-wrap {
    justify-self: center;
  }

  .hero-mockups {
    grid-template-columns: 1fr;
    max-width: 650px;
    align-items: start;
  }

  .hero-side-card,
  .hero-side-card img {
    min-height: 360px;
  }

  .hero-float-left {
    left: 80px;
  }

  .hero-float-right {
    right: 30px;
  }

  .visual-drop,
  .visual-lift {
    transform: none;
  }

  .logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 0.35rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .workflow-section .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .workflow-first-screen .workflow-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .workflow-copy {
    padding-top: 0;
  }

  .workflow-visual {
    padding: 20px;
  }

  .integration-visual {
    padding: 24px;
  }

  .integration-copy {
    padding-top: 0;
  }

  .integration-quote p {
    font-size: 1.2rem;
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    gap: 2.1rem;
  }

  .growth-first-block .growth-visual {
    order: -1;
  }

  .growth-first-block {
    margin-top: 1.1rem;
    gap: 1.3rem;
  }

  .integration-split {
    grid-template-columns: 1fr;
  }

  .loved-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .loved-quote p {
    font-size: 1.2rem;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .dark-feature-wrap {
    padding: 4.8rem 1rem 2rem;
  }

  .dark-showcase-media {
    min-height: 240px;
  }

  .dark-showcase-media-icons {
    padding: 0 1.1rem;
  }

  .dark-showcase-media-icons .dark-icon-left,
  .dark-showcase-media-icons .dark-icon-right {
    width: 90px;
    height: 110px;
  }

  .dark-arrow-group img {
    width: 14px;
    height: 26px;
  }

  .dark-tag {
    display: none;
  }

  .dark-showcase-copy h3 {
    font-size: 1.45rem;
  }

  .dark-showcase-copy p {
    font-size: 0.9rem;
  }

  .dark-mini-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .dark-mini-card h3 {
    font-size: 1.2rem;
  }

  .hero-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1rem;
  }

  .hero-logo img {
    width: 168px;
    height: 57px;
  }

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