.woo-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 70px;
  padding: 0 max(24px, calc((100vw - 1110px) / 2));
  border-bottom: 1px solid #d3e4f2;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: #385569;
  font-size: 20px;
  font-weight: 800;
}

.brand strong {
  font-weight: 500;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  color: #fff;
  background: linear-gradient(135deg, #0d78c8, #10bee0);
  border-radius: 10px;
  place-items: center;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #385569;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #008dd2;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.header-actions .btn {
  min-height: 42px;
  padding: 0 20px;
  font-size: 13px;
  text-transform: none;
}

.lang-link {
  color: #385569;
  font-size: 13px;
  font-weight: 800;
}

.lang-link strong {
  color: #007bd0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #eef7ff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: #385569;
}

.woo-hero {
  padding: 42px 0 92px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(229,244,255,0.72) 1px, transparent 1px),
    linear-gradient(180deg, #fbfdff, #edf7ff);
  background-size: 92px 92px, auto;
}



.breadcrumb {
  margin-bottom: 36px;
  color: #6f879a;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: #007bd0;
}

.label-line {
  position: relative;
  padding-left: 38px;
  color: #007bd0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.label-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 2px;
  background: #007bd0;
}

.woo-hero .lead {
  color: #6b8296;
}

.store-visual {
  transition: transform 220ms ease;
}

.store-window {
  overflow: hidden;
  border: 1px solid #cde0f2;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 32px 90px rgba(0, 117, 187, 0.13);
}

.window-top {
  height: 48px;
  border-bottom: 1px solid #e1eef8;
  background:
    radial-gradient(circle at 24px 24px, #ff6d6d 0 4px, transparent 5px),
    radial-gradient(circle at 42px 24px, #f8c55d 0 4px, transparent 5px),
    radial-gradient(circle at 60px 24px, #56cb72 0 4px, transparent 5px);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 34px;
}

.product-card {
  min-height: 92px;
  border: 1px solid #d9eaf7;
  border-radius: 16px;
  background:
    linear-gradient(#cde0f2 0 10px, transparent 10px 24px),
    linear-gradient(135deg, #f8fcff, #e4f5ff);
  background-repeat: no-repeat;
  background-position: 20px 62px, 0;
  background-size: 58% 24px, auto;
}

.product-card.active {
  background:
    linear-gradient(#ffffff 0 10px, transparent 10px 24px),
    linear-gradient(180deg, #00a9d9, #007bd0);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 34px 34px;
}

.tag-row span {
  padding: 7px 13px;
  color: #385569;
  border: 1px solid #cde0f2;
  border-radius: 999px;
  background: #f5fbff;
  font-weight: 900;
}

.overview-section p,
.tech-section p,
.faq-section p {
  margin-top: 18px;
  color: #61798e;
  font-size: 18px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.note-card,
.service-card,
.area-card,
.faq-list details {
  border: 1px solid #cde0f2;
  border-radius: 10px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 42px rgba(40, 98, 145, 0.09);
}

.note-card {
  padding: 26px;
}

.note-card h3,
.service-card h3,
.area-card h3,
.step-card h3 {
  margin: 0 0 10px;
  color: #27495e;
  font-size: 22px;
  line-height: 1.08;
}

.note-card p,
.service-card p,
.area-card p,
.step-card p {
  color: #62798d;
  font-size: 16px;
}

.soft-section {
  background: linear-gradient(180deg, #eff8ff, #eaf6ff);
}

.service-grid,
.area-grid,
.step-grid,
.why-grid {
  display: grid;
  gap: 22px;
}

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

.service-card {
  min-height: 190px;
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.area-card:hover,
.note-card:hover {
  border-color: #008dd2;
  box-shadow: 0 24px 54px rgba(0, 117, 187, 0.15);
}

.service-card span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: #fff;
  border-radius: 9px;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(180deg, #2779ff, #145ee7) !important;
    box-shadow: 0 10px 22px rgba(23, 103, 242, 0.27);
}


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

.step-card {
  padding-top: 26px;
  border-top: 1px solid #cde0f2;
}

.step-card strong {
  display: block;
  margin-bottom: 18px;
  color: #007bd0;
  font-size: 28px;
}

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

.tech-section .btn {
  margin-top: 28px;
}

.store-band {
  padding: 56px 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(0, 141, 210, 0.35), transparent 28%),
    linear-gradient(135deg, #071d30, #0f2a43);
}

.band-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.band-inner h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.05;
}

.band-inner p {
  max-width: 370px;
  color: rgba(255,255,255,0.78);
}

.faq-list details {
  padding: 20px 24px;
}

.faq-list summary {
  color: #27495e;
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}

.faq-list p {
  margin-top: 12px;
}

.cta-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(189, 225, 255, 0.38), transparent 25%),
    linear-gradient(180deg, #f7fbff, #eef7ff);
}

.woo-cta {
  max-width: 980px;
  margin: 0 auto;
  padding: 76px 32px;
  border-radius: 10px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 26px 70px rgba(34, 91, 150, 0.1);
  text-align: center;
}

.woo-cta p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px auto 0;
}

.woo-footer {
  position: relative;
  padding: 76px 0 190px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(58, 181, 235, 0.2), transparent 27%),
    linear-gradient(180deg, #f9fcff, #edf7ff);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.22fr 1fr 1fr 0.95fr;
  gap: 66px;
}

.footer-brand {
  margin-bottom: 20px;
}

.woo-footer h3 {
  margin: 0 0 18px;
  color: #b9cbda;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.woo-footer p,
.woo-footer a {
  display: block;
  margin-bottom: 10px;
  color: #6d8499;
  font-size: 16px;
}

.review-card {
  display: grid;
  grid-template-columns: 1fr 58px;
  max-width: 260px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid #cbe0f2;
  border-radius: 12px;
  background: #fff;
}

.review-card strong {
  display: block;
  color: #385569;
}

.review-card span {
  color: #6d8499;
  font-size: 13px;
  font-weight: 800;
}

.review-card i {
  border-radius: 50%;
  background: linear-gradient(135deg, #ccefff, #008dd2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
  border-top: 1px solid #d8e6f5;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-badge {
  position: absolute;
  right: 0;
  bottom: 70px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: max-content;
  margin: 0 auto;
  padding: 28px 70px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 28px 80px rgba(0, 125, 190, 0.14);
}

.footer-badge .brand-mark {
  width: 58px;
  height: 58px;
  font-size: 30px;
}

.footer-badge strong {
  color: #385569;
  font-size: 44px;
  line-height: 1;
}

.footer-badge em {
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 980px) {
  .woo-header {
    grid-template-columns: auto auto;
    padding-right: 17px;
    padding-left: 17px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-actions {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 17px;
    left: 17px;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid #d9e7f7;
    border-radius: 10px;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

  .nav-links a {
    padding: 14px 6px;
  }

  .hero-grid,
  .split-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .area-grid,
  .step-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .woo-hero {
    padding-top: 32px;
  }

  .hero-grid {
    gap: 36px;
  }

  .store-grid,
  .service-grid,
  .area-grid,
  .step-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .store-grid {
    padding: 22px;
  }

  .tag-row {
    padding: 0 22px 22px;
  }

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

  .footer-bottom div {
    flex-wrap: wrap;
  }

  .footer-badge {
    position: static;
    width: min(100%, 340px);
    margin-top: 56px;
    padding: 22px 28px;
  }

  .footer-badge strong {
    font-size: 32px;
  }
}
