@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;700;800&display=swap");

:root {
  --bg: #f6efdf;
  --bg-soft: #fbf7ef;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #142638;
  --muted: #4b5a68;
  --muted-2: #637180;
  --border: rgba(20, 38, 56, 0.15);
  --accent: #0a5c97;
  --accent-2: #d48d22;
  --accent-soft: rgba(10, 92, 151, 0.12);
  --radius: 18px;
  --shadow: 0 18px 42px rgba(21, 36, 56, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(720px 340px at 8% -8%, rgba(10, 92, 151, 0.24), transparent 70%),
    radial-gradient(900px 380px at 98% 0%, rgba(212, 141, 34, 0.2), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 46%, #fffdfa 100%);
}

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(251, 247, 239, 0.84);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 132px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 38, 56, 0.12);
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-text strong {
  display: block;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 1.1;
}

.brand-text span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
}

.menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
  transition: 180ms ease;
}

.menu a:hover {
  color: var(--text);
  background: var(--surface-strong);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 17px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent) 0%, #2478b7 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(10, 92, 151, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(10, 92, 151, 0.34);
  filter: brightness(1.03);
}

.btn:active {
  transform: translateY(0);
}

.btn-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  box-shadow: none;
}

.btn-small {
  padding: 9px 12px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
}

.hero::before {
  width: 540px;
  height: 540px;
  right: -180px;
  top: -140px;
  background: radial-gradient(circle, rgba(10, 92, 151, 0.26), transparent 68%);
}

.hero::after {
  width: 460px;
  height: 460px;
  left: -150px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(212, 141, 34, 0.2), transparent 68%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(180deg, rgba(251, 247, 239, 0), rgba(251, 247, 239, 0.56));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 64px 0 70px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: end;
}

.pill {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(20, 38, 56, 0.2);
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  margin: 14px 0 12px;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(34px, 5vw, 57px);
  line-height: 1.02;
  letter-spacing: -0.8px;
  max-width: 760px;
}

.subtitle {
  margin: 0 0 24px;
  max-width: 700px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.stat {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(20, 38, 56, 0.12);
  border-radius: var(--radius);
  padding: 13px 15px;
}

.stat strong {
  display: block;
  font-size: 17px;
}

.stat span {
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 13px;
}

.hero-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(20, 38, 56, 0.14);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.hero-panel-logo {
  width: min(100%, 320px);
  height: auto;
  border-radius: 16px;
  object-fit: contain;
  background: #fff;
  padding: 8px 12px;
  margin: 0 auto 14px;
  border: 1px solid rgba(20, 38, 56, 0.12);
}

.hero-panel-content {
  text-align: center;
}

.hero-panel-content h2 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 22px;
}

.hero-panel-content p {
  margin: 8px 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 78px 0;
}

.section-alt {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.14));
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 29px;
  letter-spacing: -0.3px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
}

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

.partner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: 180ms ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 92, 151, 0.38);
}

.partner-logo {
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 17px;
  margin-bottom: 8px;
}

.partner-card span {
  color: var(--muted-2);
  font-size: 13px;
}

.partner-brand {
  min-height: 146px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.partner-logo-img {
  width: min(100%, 190px);
  height: 58px;
  object-fit: contain;
}

.partner-logo-tall {
  height: 72px;
}

.partner-mark {
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.4px;
  color: var(--accent);
}

.partner-text {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.64));
}

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

.approval-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.approval-card h3 {
  margin: 0 0 8px;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 18px;
}

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

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

.product {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #5c3a0a;
  background: rgba(212, 141, 34, 0.23);
  border: 1px solid rgba(212, 141, 34, 0.36);
}

.product-media {
  height: 138px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(10, 92, 151, 0.14), rgba(212, 141, 34, 0.14));
  border-bottom: 1px solid rgba(20, 38, 56, 0.12);
}

.product-icon {
  font-size: 43px;
  filter: drop-shadow(0 8px 16px rgba(10, 26, 46, 0.22));
}

.product-body {
  padding: 16px;
}

.product-body h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.product-body p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.product-body ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted-2);
  line-height: 1.7;
  font-size: 13px;
}

.catalog {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.catalog h3 {
  margin: 0 0 6px;
}

.catalog p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
  align-items: start;
}

.lead {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.checks {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.check {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(20, 38, 56, 0.16);
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted);
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.about-card h3 {
  margin: 0 0 10px;
}

.about-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

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

.step {
  border: 1px solid rgba(20, 38, 56, 0.15);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.step span {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10, 92, 151, 0.3);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

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

.service-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted-2);
  line-height: 1.75;
}

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

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

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

.contact-card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-card a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(10, 92, 151, 0.35);
  text-underline-offset: 3px;
}

.contact-card small {
  color: var(--muted-2);
}

.footer {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 38, 56, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted-2);
  flex-wrap: wrap;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy > * {
  animation: reveal-up 620ms ease both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 70ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 120ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 170ms;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 220ms;
}

.partner-card,
.approval-card,
.product,
.about-card,
.contact-card,
.service-card {
  animation: reveal-up 520ms ease both;
}

.partner-card:nth-child(2),
.product:nth-child(2) {
  animation-delay: 40ms;
}

.partner-card:nth-child(3),
.product:nth-child(3) {
  animation-delay: 80ms;
}

.partner-card:nth-child(4),
.product:nth-child(4) {
  animation-delay: 120ms;
}

@media (max-width: 1040px) {
  .hero-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-panel {
    max-width: 480px;
  }

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

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

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

  .two-col {
    grid-template-columns: 1fr;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 54px 0 60px;
  }

  .hero h1 {
    font-size: clamp(30px, 7.4vw, 48px);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

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

@media (max-width: 560px) {
  .menu {
    display: none;
  }

  .logo {
    width: 112px;
    height: 44px;
    padding: 5px 8px;
  }

  .section {
    padding: 62px 0;
  }

  .grid,
  .partners,
  .approvals-grid,
  .about-steps {
    grid-template-columns: 1fr;
  }
}
