:root {
  --brand-primary: #29405a;
  --brand-accent: #e74c3c;
  --brand-hover: #4f46e5;
  --brand-warm: #f59e42;

  --bg-main: #fcf8f7;
  --bg-soft: #f3f4f6;
  --bg-light-blue: #eaf6fd;
  --white: #ffffff;

  --text-main: #29405a;
  --text-soft: rgba(41, 64, 90, 0.72);

  --border-soft: rgba(41, 64, 90, 0.10);
  --shadow-lg: 0 24px 60px rgba(41, 64, 90, 0.14);
  --shadow-md: 0 14px 34px rgba(41, 64, 90, 0.10);

  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

ul {
  padding-left: 18px;
  margin: 16px 0 0;
}

li {
  margin-bottom: 8px;
  color: var(--text-soft);
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(41, 64, 90, 0.08);
}

.header-inner {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: auto;
  height: 120px;
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 72px;
  background: var(--bg-main);
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(55px);
  pointer-events: none;
}

.hero-bg-shape-1 {
  top: -80px;
  left: -40px;
  width: 260px;
  height: 260px;
  background: rgba(231, 76, 60, 0.12);
}

.hero-bg-shape-2 {
  right: -50px;
  bottom: 30px;
  width: 260px;
  height: 260px;
  background: rgba(79, 70, 229, 0.12);
}

.hero-grid,
.intro-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-badge,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--brand-primary);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(41, 64, 90, 0.08);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--brand-primary);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  margin-bottom: 22px;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--text-soft);
}

.hero-lead,
.section-text {
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(231, 76, 60, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(90deg, var(--brand-hover) 0%, var(--brand-warm) 100%);
  transform: translateY(-1px);
}

.btn-secondary,
.btn-nav {
  background: var(--white);
  color: var(--brand-primary);
  border-color: rgba(41, 64, 90, 0.16);
}

.btn-secondary:hover,
.btn-nav:hover {
  color: var(--brand-hover);
  border-color: rgba(79, 70, 229, 0.24);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-point {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(41, 64, 90, 0.08);
  box-shadow: 0 10px 24px rgba(41, 64, 90, 0.05);
  font-size: 0.95rem;
  color: var(--brand-primary);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-main {
  width: 100%;
  max-width: 560px;
  padding: 14px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
}

.hero-card-main img,
.visual-frame img {
  border-radius: 22px;
}

.floating-card {
  position: absolute;
  padding: 16px 18px;
  min-width: 180px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  color: var(--brand-primary);
}

.floating-card-top {
  top: 30px;
  left: 0;
}

.floating-card-bottom {
  right: 0;
  bottom: 40px;
}

.floating-label {
  display: block;
  font-size: 0.82rem;
  color: var(--brand-accent);
  font-weight: 700;
  margin-bottom: 4px;
}

.intro,
.benefits,
.cta {
  background: var(--white);
}

.intro-copy {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 42px;
  box-shadow: var(--shadow-md);
}

.visual-frame {
  padding: 14px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--bg-light-blue) 0%, var(--bg-main) 100%);
  box-shadow: var(--shadow-lg);
}

.section-heading {
  margin-bottom: 46px;
}

.center {
  text-align: center;
}

.workflow,
.audience {
  background: var(--bg-main);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.workflow-card,
.benefit-card.premium,
.sector-card,
.sector-box {
  background: var(--white);
  border: 1px solid rgba(41, 64, 90, 0.08);
  box-shadow: 0 16px 40px rgba(41, 64, 90, 0.06);
}

.workflow-card,
.benefit-card.premium {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.workflow-card::before,
.benefit-card.premium::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
}

.workflow-card:hover,
.benefit-card.premium:hover,
.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(41, 64, 90, 0.12);
}

.step-number {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--brand-accent);
  background: #ffe9e9;
}

.benefits-grid {
  display: grid;
  gap: 22px;
}

.benefits-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.sector-box {
  border-radius: 30px;
  padding: 36px;
}

.sector-box h3 {
  margin-bottom: 24px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sector-card {
  padding: 20px 18px;
  border-radius: 18px;
  text-align: center;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta {
  padding-top: 0;
}

.cta-panel {
  overflow: hidden;
  border-radius: 32px;
  padding: 56px 44px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-light-blue) 0%, var(--bg-main) 100%);
  border: 1px solid rgba(41, 64, 90, 0.08);
  box-shadow: var(--shadow-lg);
}

.cta-content {
  max-width: 760px;
  margin: 0 auto;
}

.site-footer {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer-inner {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer-brand,
.site-footer-nav,
.site-footer-services {
  flex: 1;
  margin-bottom: 2rem;
}

.site-footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.site-footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: fit-content;
  border-radius: 0.75rem;
}

.site-footer-logo {
  height: 12rem;
  width: auto;
  display: block;
}

.site-footer-description {
  color: #29405a;
  opacity: 0.7;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  max-width: 20rem;
  line-height: 1.6;
}

.site-footer-socials {
  display: flex;
  gap: 0.75rem;
}

.site-footer-social-link {
  background: #eaf6fd;
  border-radius: 0.75rem;
  padding: 0.5rem;
  color: #29405a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-footer-social-link:hover {
  background: #d1e9f7;
  transform: translateY(-2px);
}

.site-footer-social-link svg {
  width: 1.5rem;
  height: 1.5rem;
}

.site-footer-title {
  font-weight: 600;
  color: #29405a;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.site-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer-list li {
  margin-bottom: 0.5rem;
  color: #29405a;
  opacity: 0.8;
  font-size: 0.875rem;
  line-height: 1.5;
}

.site-footer-list a {
  color: inherit;
  transition: color 0.25s ease;
}

.site-footer-list a:hover {
  color: #e74c3c;
}

.site-footer-bottom {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.75rem;
  color: #29405a;
  opacity: 0.7;
  gap: 0.75rem;
}

.site-footer-copy {
  margin-bottom: 0.5rem;
}

.site-footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer-legal a {
  color: #29405a;
  transition: color 0.25s ease;
}

.site-footer-legal a:hover {
  color: #e74c3c;
}

@media (min-width: 768px) {
  .site-footer-inner,
  .site-footer-bottom {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .site-footer-bottom {
    flex-direction: row;
    gap: 1rem;
  }

  .site-footer-copy {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .site-footer-inner {
    flex-direction: row;
    gap: 0;
  }

  .site-footer-brand,
  .site-footer-nav,
  .site-footer-services {
    margin-bottom: 0;
  }
}

@media (max-width: 1200px) {
  .workflow-grid,
  .benefits-grid-5,
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .floating-card-top,
  .floating-card-bottom {
    position: static;
    margin-top: 14px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .workflow-grid,
  .benefits-grid-5,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .intro-copy,
  .cta-panel,
  .sector-box,
  .workflow-card,
  .benefit-card.premium {
    padding: 28px 22px;
  }

  h1 {
    max-width: none;
  }
}