:root {
  --accent: #db622d;
  --accent-dark: #b74f22;
  --accent-soft: #fff1ea;
  --ink: #1e2430;
  --muted: #5b6370;
  --surface: #ffffff;
  --bg: #f6f8fc;
  --ring: rgba(219, 98, 45, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbff 0%, #f3f5fb 100%);
  scroll-behavior: smooth;
}

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

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      520px 520px at 106% 8%,
      rgba(219, 98, 45, 0.16) 0%,
      rgba(245, 224, 98, 0.08) 34%,
      rgba(245, 224, 98, 0) 70%
    ),
    radial-gradient(
      440px 440px at -8% 78%,
      rgba(219, 98, 45, 0.14) 0%,
      rgba(219, 98, 45, 0.06) 36%,
      rgba(219, 98, 45, 0) 72%
    ),
    radial-gradient(
      380px 380px at 98% 96%,
      rgba(245, 224, 98, 0.12) 0%,
      rgba(245, 224, 98, 0) 68%
    ),
    linear-gradient(180deg, #f8fbff 0%, #f3f5fb 100%);
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  width: 460px;
  height: 460px;
  top: -170px;
  left: -170px;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(219, 98, 45, 0.26) 0%,
    rgba(219, 98, 45, 0.12) 52%,
    rgba(219, 98, 45, 0) 76%
  );
  border-radius: 62% 38% 57% 43% / 44% 61% 39% 56%;
  filter: blur(2px);
  animation: blob 14s ease-in-out infinite;
}

.site-shell::after {
  width: 340px;
  height: 340px;
  right: -150px;
  bottom: -140px;
  background: #db622d;
  border-radius: 50%;
  opacity: 0.9;
  filter: saturate(1.05);
  animation: blob 16s ease-in-out infinite reverse;
}

.container::before,
.container::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.container::before {
  width: clamp(220px, 24vw, 360px);
  height: clamp(220px, 24vw, 360px);
  top: -90px;
  right: -110px;
  background: radial-gradient(
    circle,
    rgba(219, 98, 45, 0.2) 0%,
    rgba(219, 98, 45, 0.08) 46%,
    rgba(219, 98, 45, 0) 74%
  );
  filter: blur(1px);
}

.container::after {
  width: clamp(180px, 16vw, 280px);
  height: clamp(180px, 16vw, 280px);
  bottom: -120px;
  left: -90px;
  background: radial-gradient(
    circle,
    rgba(245, 224, 98, 0.18) 0%,
    rgba(245, 224, 98, 0.06) 44%,
    rgba(245, 224, 98, 0) 72%
  );
}

.shape {
  position: absolute;
  border-radius: 999px;
  opacity: 0.22;
  pointer-events: none;
  filter: blur(1px);
}

.shape-one {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #db622d 0%, rgba(219, 98, 45, 0) 70%);
  top: -80px;
  right: -40px;
  animation: float 9s ease-in-out infinite;
}

.shape-two {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, #f5e062 0%, rgba(245, 224, 98, 0) 72%);
  bottom: -130px;
  left: -80px;
  animation: float 11s ease-in-out infinite reverse;
}

.shape-three {
  width: 220px;
  height: 220px;
  border: 2px solid rgba(219, 98, 45, 0.3);
  top: 36%;
  left: 58%;
  animation: spin 18s linear infinite;
}

.shape-four {
  width: 180px;
  height: 180px;
  background: linear-gradient(
    135deg,
    rgba(219, 98, 45, 0.22),
    rgba(245, 224, 98, 0.16)
  );
  top: 18%;
  left: -50px;
  border-radius: 28% 72% 63% 37% / 34% 34% 66% 66%;
  animation: blob 12s ease-in-out infinite;
}

.shape-five {
  width: 240px;
  height: 240px;
  top: 62%;
  right: 10%;
  border: 1px dashed rgba(219, 98, 45, 0.35);
  border-radius: 24px;
  transform: rotate(24deg);
  animation: pulse 8s ease-in-out infinite;
}

.shape-six {
  width: 130px;
  height: 130px;
  background: radial-gradient(
    circle,
    rgba(219, 98, 45, 0.24) 0%,
    rgba(219, 98, 45, 0) 70%
  );
  top: 48%;
  left: 22%;
  animation: float 7s ease-in-out infinite;
}

.container {
  width: min(1320px, 94%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 26px 0;
  position: relative;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.25px;
  color: var(--ink);
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
}

.brand-text {
  white-space: nowrap;
  color: inherit;
}

.brand .brand-accent {
  color: var(--accent);
  margin-left: -0.03em;
}

.menu {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  isolation: isolate;
  margin-left: auto;
}

.menu a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
  z-index: 2;
}

.menu a:hover,
.menu a.active {
  color: var(--accent-dark);
}

.menu-bubble {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 999px;
  background: var(--accent-soft);
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    width 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    height 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.2s ease;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #e2e7f0;
  background: #fff;
  border-radius: 12px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle-line {
  width: 20px;
  height: 2px;
  background: #2f3644;
  border-radius: 2px;
  transition:
    transform 0.28s ease,
    opacity 0.22s ease,
    width 0.25s ease;
}

.nav > .header-cta {
  display: none !important;
  margin-left: 6px;
  padding: 8px 14px;
  font-size: 0.92rem;
  border-radius: 10px;
}

.menu .mobile-menu-cta {
  display: none;
}

@media (min-width: 901px) {
  .nav > .header-cta {
    display: inline-flex !important;
  }
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  padding: 42px 0 26px;
}

.hero.hero-full {
  min-height: calc(100vh - 108px);
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(86px, 11vw, 170px);
  padding: 10px 0 24px;
  position: relative;
}

.hero.hero-full::before {
  content: "";
  position: absolute;
  width: clamp(460px, 46vw, 760px);
  height: clamp(460px, 46vw, 760px);
  left: clamp(-120px, -8vw, -40px);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(219, 98, 45, 0.32) 0%,
    rgba(219, 98, 45, 0.2) 36%,
    rgba(219, 98, 45, 0.08) 58%,
    rgba(219, 98, 45, 0) 76%
  );
  z-index: 0;
  pointer-events: none;
}

.hero.hero-full::after {
  content: "";
  position: absolute;
  width: clamp(300px, 36vw, 560px);
  height: clamp(280px, 32vw, 500px);
  right: clamp(-120px, -7vw, -40px);
  top: clamp(20px, 7vh, 80px);
  background: radial-gradient(
      circle,
      rgba(127, 137, 154, 0.3) 0 1.6px,
      transparent 1.6px
    )
    0 0 / 18px 18px;
  mask-image: radial-gradient(
    circle at 52% 48%,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.95) 38%,
    rgba(0, 0, 0, 0.62) 68%,
    rgba(0, 0, 0, 0.12) 88%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: radial-gradient(
    circle at 52% 48%,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.95) 38%,
    rgba(0, 0, 0, 0.62) 68%,
    rgba(0, 0, 0, 0.12) 88%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.hero-compact-copy {
  max-width: 620px;
  padding-right: clamp(8px, 1.6vw, 24px);
  position: relative;
  z-index: 1;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: clamp(8px, 1.6vw, 24px);
  position: relative;
  z-index: 1;
}

.device-showcase {
  width: min(100%, 980px);
  min-height: 650px;
  position: relative;
}

.device-image {
  position: absolute;
  width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 30px rgba(18, 24, 40, 0.22));
}

.device-mac {
  width: 810px;
  height: 500px;
  left: 86px;
  top: 56px;
  transform: rotate(0deg);
  filter: drop-shadow(0 26px 46px rgba(219, 98, 45, 0.38));
  z-index: 2;
}

.device-ipad {
  width: 268px;
  height: 356px;
  left: 0;
  top: 238px;
  transform: rotate(-5deg);
  z-index: 3;
}

.device-iphone {
  width: 206px;
  height: 388px;
  right: -180px;
  top: 228px;
  transform: rotate(3.2deg);
  z-index: 3;
}

@media (max-width: 900px) {
  .hero.hero-full {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 8px 0 16px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    position: relative;
    z-index: 60;
  }

  .nav > .header-cta {
    display: none !important;
  }

  .menu .mobile-menu-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
    padding: 12px 18px;
    border-radius: 12px;
    width: min(84vw, 360px);
    background: var(--accent);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 20px rgba(201, 85, 36, 0.25);
    position: relative;
  }

  .menu .mobile-menu-cta::before {
    content: "";
    position: absolute;
    top: -13px;
    left: 8%;
    width: 84%;
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(47, 54, 68, 0) 0%,
      rgba(47, 54, 68, 0.24) 20%,
      rgba(47, 54, 68, 0.24) 80%,
      rgba(47, 54, 68, 0) 100%
    );
    pointer-events: none;
  }

  .menu .mobile-menu-cta:hover {
    background: var(--accent-dark);
    color: #fff;
  }

  .menu {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background:
      radial-gradient(
        500px 500px at 82% 16%,
        rgba(219, 98, 45, 0.2) 0%,
        rgba(245, 224, 98, 0.08) 36%,
        rgba(245, 224, 98, 0) 74%
      ),
      linear-gradient(180deg, #f9fbff 0%, #f3f6fc 100%);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 24px;
    opacity: 0;
    transform: translateY(-10px) scale(0.985);
    pointer-events: none;
    transition:
      opacity 0.28s ease,
      transform 0.28s ease;
    z-index: 50;
  }

  .menu-bubble {
    display: none;
  }

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

  .nav.is-open .menu-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav.is-open .menu-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .nav.is-open .menu-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .menu a {
    width: min(84vw, 360px);
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2f3644;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #e7ecf4;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 18px rgba(26, 35, 56, 0.08);
  }

  .hero-visual {
    justify-content: center;
    padding-left: 0;
    width: 100%;
    order: 2;
  }

  .hero-compact-copy {
    order: 1;
    margin-top: 10vh;
    margin-inline: auto;
    text-align: center;
  }

  .hero-compact-copy .cta-row {
    justify-content: center;
  }

  .device-showcase {
    width: min(100%, 280px);
    min-height: auto;
    margin: 16px auto 0;
  }

  .device-mac {
    display: none;
  }

  .device-ipad {
    display: none;
  }

  .device-iphone {
    position: relative;
    width: min(72vw, 240px);
    height: auto;
    right: auto;
    top: auto;
    transform: rotate(0deg);
    filter: drop-shadow(0 14px 26px rgba(18, 24, 40, 0.2));
  }
}

.hero h1,
.page-head h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
}

.hero h1 .accent,
.page-head h1 .accent {
  color: var(--accent);
}

.hero p,
.page-head p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.about-hero {
  min-height: calc(100vh - 108px);
  margin-bottom: 8px;
  align-items: center;
  position: relative;
  overflow: visible;
  border-radius: 0;
  padding: 0;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
}

.about-hero > :first-child {
  min-width: 0;
  max-width: 640px;
}

.shape-about-a {
  width: 360px;
  height: 360px;
  top: 90px;
  right: -120px;
  border-radius: 58% 42% 66% 34% / 41% 61% 39% 59%;
  background: radial-gradient(
    circle,
    rgba(245, 224, 98, 0.26) 0%,
    rgba(245, 224, 98, 0.08) 42%,
    rgba(245, 224, 98, 0) 74%
  );
  animation: blob 13s ease-in-out infinite;
}

.shape-about-b {
  width: 320px;
  height: 260px;
  left: 52%;
  top: 170px;
  background: radial-gradient(
      circle,
      rgba(130, 140, 156, 0.34) 0 1.5px,
      transparent 1.5px
    )
    0 0 / 16px 16px;
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.82) 52%,
    rgba(0, 0, 0, 0.12) 84%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.82) 52%,
    rgba(0, 0, 0, 0.12) 84%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0.46;
  pointer-events: none;
}

.about-hero-media {
  border-radius: 16px;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0;
  margin-right: 0;
}

.about-hero-media img {
  width: auto !important;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  display: block;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.cta-row {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 600;
  transition: 0.2s ease;
  border: 2px solid transparent;
}

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

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

.btn-outline {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.btn-outline:hover {
  background: var(--accent-soft);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 44px;
}

.card {
  background: var(--surface);
  border: 1px solid #e9edf5;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(25, 33, 50, 0.05);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

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

.kpi .tile {
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid #edf0f6;
}

.kpi .tile strong {
  font-size: 1.6rem;
  color: var(--accent-dark);
}

.section {
  margin: 32px 0 46px;
}

.section h2 {
  margin: 0 0 10px;
  font-size: 1.55rem;
}

.section p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.timeline .item {
  background: #fff;
  border: 1px solid #eceff5;
  border-radius: 14px;
  padding: 14px 16px;
}

.timeline .item strong {
  color: var(--accent-dark);
}

.timeline .item p {
  margin-top: 6px;
}

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

.module {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eceff5;
  padding: 20px;
  transition: 0.2s ease;
}

.module:hover {
  border-color: rgba(219, 98, 45, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(219, 98, 45, 0.11);
}

.module h3 {
  margin: 0 0 8px;
}

.module p {
  margin: 0;
  color: var(--muted);
}

.module ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.module li {
  margin: 6px 0;
}

.about-showcase {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: center;
}

.about-visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8edf6;
  box-shadow: 0 16px 32px rgba(20, 31, 52, 0.12);
  background: #fff;
}

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

.about-copy {
  background: #fff;
  border: 1px solid #e8edf6;
  border-radius: 16px;
  padding: 18px;
}

.about-copy h3 {
  margin: 0 0 8px;
  color: #2f3644;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-mosaic {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-mosaic .tile {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8edf6;
  background: #fff;
  box-shadow: 0 10px 22px rgba(20, 31, 52, 0.1);
}

.about-mosaic .tile img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.feature-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 52px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.feature-band-muted {
  background: #f5f7fb;
}

.feature-band-inner {
  width: min(1320px, 94%);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.feature-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(219, 98, 45, 0) 0%,
    rgba(219, 98, 45, 0.24) 30%,
    rgba(219, 98, 45, 0.24) 70%,
    rgba(219, 98, 45, 0) 100%
  );
}

.feature-band::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -110px;
  border-radius: 58% 42% 66% 34% / 41% 61% 39% 59%;
  background: radial-gradient(
    circle,
    rgba(219, 98, 45, 0.11) 0%,
    rgba(219, 98, 45, 0.03) 42%,
    rgba(219, 98, 45, 0) 74%
  );
  pointer-events: none;
}

.feature-band-muted::after {
  background: radial-gradient(
    circle,
    rgba(120, 132, 149, 0.1) 0%,
    rgba(120, 132, 149, 0.03) 40%,
    rgba(120, 132, 149, 0) 74%
  );
}

.feature-band-head {
  margin-bottom: 24px;
}

.feature-band-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.feature-band-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.feature-band-reverse .feature-band-copy {
  order: 2;
  padding: 6px 0 6px 8px;
}

.feature-band-reverse .feature-band-media {
  order: 1;
}

.feature-band-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  padding: 6px 8px 6px 0;
}

.feature-band-copy h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #2b3342;
  font-weight: 600;
}

.feature-band-copy h3::after {
  content: "";
  display: block;
  width: min(360px, 88%);
  height: 1px;
  margin-top: 10px;
  margin-bottom: 12px;
  background: linear-gradient(
    90deg,
    rgba(196, 203, 214, 0) 0%,
    rgba(196, 203, 214, 0.72) 24%,
    rgba(196, 203, 214, 0.72) 76%,
    rgba(196, 203, 214, 0) 100%
  );
}

.feature-band-copy p {
  margin: 0;
  color: #5a6270;
  line-height: 1.72;
  max-width: 600px;
  font-size: 1.01rem;
}

.feature-band-media {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.feature-band-media img {
  width: min(100%, 620px);
  max-height: 420px;
  height: auto;
  display: block;
  object-fit: contain;
}

.landing-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 56px 0;
  background: #fff;
}

.landing-section-alt {
  background: #f6f8fc;
}

.landing-inner {
  width: min(1320px, 94%);
  margin-inline: auto;
}

.landing-head {
  margin-bottom: 24px;
}

.landing-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.landing-head p {
  margin: 0;
  color: var(--muted);
  max-width: 680px;
}

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

.feature-card {
  background: #fff;
  border: 1px solid #e7edf6;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(18, 29, 48, 0.06);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 10px;
  background: rgba(219, 98, 45, 0.1);
  font-size: 1.1rem;
}

.feature-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.split-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.split-block-reverse .split-copy {
  order: 2;
}

.split-block-reverse .split-media {
  order: 1;
}

.split-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.split-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.check-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #445061;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.split-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-media img {
  width: min(100%, 620px);
  max-height: 420px;
  object-fit: contain;
}

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

.step-card {
  background: #fff;
  border: 1px solid #e7edf6;
  border-radius: 14px;
  padding: 18px 16px;
}

.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #db622d 0%, #c95524 100%);
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card h3 {
  margin: 0 0 8px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.review-card {
  background: #fff;
  border: 1px solid #e7edf6;
  border-radius: 14px;
  padding: 16px;
}

.review-card p {
  margin: 0 0 12px;
  color: #4f5968;
  line-height: 1.68;
}

.review-card strong {
  color: #2f3644;
  font-size: 0.95rem;
}

.contact-card {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-panel {
  background: #fff;
  border: 1px solid #eceff5;
  border-radius: 16px;
  padding: 18px;
}

form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #dfe5ef;
  background: #fff;
  border-radius: 11px;
  padding: 11px 12px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--ring);
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: auto;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(
      460px 220px at 8% 100%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 72%
    ),
    radial-gradient(
      520px 240px at 92% 6%,
      rgba(245, 224, 98, 0.18) 0%,
      rgba(245, 224, 98, 0) 70%
    ),
    linear-gradient(130deg, #db622d 0%, #c95524 58%, #b84a1f 100%);
  color: rgba(255, 255, 255, 0.92);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  padding-inline: 0;
}

.site-footer .footer-grid,
.site-footer .footer-note {
  width: min(1320px, 94%);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 54px;
  background: #f3f5fb;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 44%,
    83% 72%,
    64% 40%,
    46% 74%,
    27% 42%,
    0 72%
  );
  opacity: 0.96;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 62% 38% 57% 43% / 44% 61% 39% 56%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.08) 42%,
    rgba(255, 255, 255, 0) 75%
  );
  animation: blob 12s ease-in-out infinite;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.footer-grid > section {
  padding: 6px 16px 8px;
  position: relative;
}

.footer-grid > section:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -11px;
  width: 1px;
  height: calc(100% - 12px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.68) 18%,
    rgba(245, 224, 98, 0.72) 52%,
    rgba(255, 255, 255, 0.65) 82%,
    rgba(255, 255, 255, 0) 100%
  );
}

.footer-grid > section:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 12px;
  right: -17px;
  width: 13px;
  height: calc(100% - 20px);
  border-right: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  pointer-events: none;
}

.site-footer h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #fff;
}

.site-footer p {
  margin: 0 0 6px;
  line-height: 1.55;
}

.site-footer a {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  padding-left: 22px;
  transition:
    color 0.2s ease,
    transform 0.22s ease;
}

.site-footer .footer-contact-link {
  display: inline;
  margin-bottom: 0;
  padding-left: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer .footer-grid > section:nth-child(3) a::before {
  content: "»»";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.12em;
  transition:
    transform 0.22s ease,
    color 0.22s ease;
}

.site-footer a:hover {
  color: #fff;
  transform: translateX(3px);
}

.site-footer .footer-grid > section:nth-child(3) a:hover::before {
  transform: translateX(3px);
  color: #fff;
}

.footer-note {
  margin-top: 22px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.84);
}

.cookie-notice {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(880px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    radial-gradient(
      220px 120px at 12% 10%,
      rgba(245, 224, 98, 0.18) 0%,
      rgba(245, 224, 98, 0) 72%
    ),
    rgba(20, 26, 38, 0.92);
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(11, 16, 27, 0.28);
  backdrop-filter: blur(14px);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 0.28s ease,
    transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0.28s ease;
}

.cookie-notice.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.cookie-notice.is-leaving {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.97);
}

.cookie-copy {
  max-width: 620px;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  color: #fff;
}

.cookie-copy p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions .btn {
  min-width: 148px;
}

.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #db622d 0%, #c95524 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(201, 85, 36, 0.34);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition:
    opacity 0.24s ease,
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0.24s ease;
}

.scroll-top-btn:hover {
  cursor: pointer;
  transform: translateY(-2px) scale(1);
  box-shadow: 0 18px 34px rgba(201, 85, 36, 0.4);
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.cookie-dismiss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cookie-dismiss:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(6px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes blob {
  0%,
  100% {
    border-radius: 28% 72% 63% 37% / 34% 34% 66% 66%;
  }
  50% {
    border-radius: 63% 37% 40% 60% / 53% 63% 37% 47%;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: rotate(24deg) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: rotate(18deg) scale(1.08);
    opacity: 0.34;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .kpi,
  .module-grid,
  .contact-card,
  .footer-grid,
  .about-showcase,
  .about-mosaic,
  .feature-band-body,
  .feature-grid,
  .steps-grid,
  .review-grid,
  .split-block {
    grid-template-columns: 1fr;
  }

  .feature-band {
    padding: 34px 0;
  }

  .feature-band-head {
    margin-bottom: 18px;
  }

  .feature-band-copy,
  .feature-band-media {
    min-height: auto;
  }

  .feature-band-copy {
    padding: 0;
  }

  .landing-section {
    padding: 36px 0;
  }

  .landing-head {
    margin-bottom: 18px;
  }

  .feature-card,
  .step-card,
  .review-card {
    padding: 14px;
  }

  .site-footer {
    margin-top: 24px;
    padding-top: 18px;
  }

  .cookie-notice {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
    padding: 15px;
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-copy {
    max-width: none;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-actions .btn,
  .cookie-dismiss {
    width: 100%;
  }

  .scroll-top-btn {
    right: 14px;
    bottom: 14px;
  }

  .site-footer::before {
    height: 36px;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 76% 88%, 54% 58%, 31% 92%, 0 66%);
  }

  .footer-grid {
    margin-top: 24px;
    gap: 14px;
  }

  .footer-grid > section {
    padding: 2px 0 6px;
  }

  .footer-grid > section::before,
  .footer-grid > section::after {
    display: none;
  }
}
