@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #f6f9ff;
  --bg-soft: #eef5ff;
  --surface: #ffffff;
  --primary: #0a66ff;
  --primary-dark: #084fc6;
  --primary-soft: #e7f0ff;
  --secondary: #1fc4ff;
  --text: #10233f;
  --heading: #071c3a;
  --muted: #5d6f8f;
  --border: #dce8f7;
  --shadow: 0 22px 60px rgba(18, 62, 123, 0.12);
  --shadow-soft: 0 12px 34px rgba(18, 62, 123, 0.08);
  --radius-lg: 30px;
  --radius-md: 22px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 12% -8%, rgba(31, 196, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(10, 102, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 102, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 102, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 72%);
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 232, 247, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition: box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.header.is-glass {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(10, 102, 255, 0.12);
  box-shadow: 0 18px 48px rgba(16, 35, 63, 0.1);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.logo-image {
  width: 100px;
  height: auto;
  display: block;
  object-fit: contain;
  padding: 0.38rem 0.55rem;
  border-radius: 18px;
  /* background: linear-gradient(135deg, var(--primary), #063a9e); */
  /* box-shadow: 0 14px 34px rgba(10, 102, 255, 0.18); */
}

.logo-text {
  display: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.35rem);
}

.menu a {
  color: #405575;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.menu a:nth-last-child(2) {
  color: #ffffff;
}
.menu a:hover,
.menu a.active {
  color: var(--primary);
}

.menu a:hover {
  transform: translateY(-1px);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  padding: 0.25rem;
  border: 1px solid #cfe0f7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 26px rgba(18, 62, 123, 0.08);
}

.language-option {
  min-width: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #405575;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 0.42rem 0.62rem;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.language-option:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.language-option.is-active {
  background: linear-gradient(135deg, var(--primary), #1597ff);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(10, 102, 255, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.22rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #1597ff);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(10, 102, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-dark), #0a7eea);
  box-shadow: 0 18px 36px rgba(10, 102, 255, 0.3);
}

.btn-secondary,
.btn-ghost-light {
  background: #ffffff;
  color: var(--primary);
  border-color: #cfe0f7;
  box-shadow: 0 12px 26px rgba(18, 62, 123, 0.08);
}

.btn-secondary:hover,
.btn-ghost-light:hover {
  color: #ffffff;
  border-color: transparent;
}

.btn-nav {
  min-height: 40px;
  padding: 0.56rem 1rem;
  font-size: 0.9rem;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero-wis {
  padding: 4.4rem 0 5.4rem;
  background:
    radial-gradient(circle at 78% 16%, rgba(10, 102, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 14% 12%, rgba(31, 196, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 72%, #ffffff 100%);
}

.hero-wis::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -8rem;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 196, 255, 0.22), transparent 68%);
  pointer-events: none;
}

.hero-wis-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 620px;
}

.hero-wis-content {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.hero-wis-content h1,
.page-hero h1 {
  color: var(--heading);
  font-size: clamp(2.65rem, 6.2vw, 5.55rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.hero-wis-content h1 {
  margin-bottom: 1.25rem;
}

.hero-wis-outline {
  position: relative;
  z-index: 2;
  width: min(380px, 72%);
  min-height: 500px;
  margin: 0 auto;
  padding: 1.55rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #d7e7fa;
  box-shadow: 0 32px 80px rgba(18, 62, 123, 0.16);
  animation: resumeFloat 7s ease-in-out infinite;
}

.hero-wis-outline::before {
  content: "";
  position: absolute;
  inset: -1.25rem;
  z-index: -1;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(10, 102, 255, 0.12), rgba(31, 196, 255, 0.08));
  transform: rotate(-4deg);
}

.hero-wis-outline::after {
  content: "";
  position: absolute;
  left: 1.55rem;
  bottom: 1.55rem;
  width: calc(100% - 3.1rem);
  height: 3.4rem;
  border-radius: 14px;
  background:
    linear-gradient(90deg, var(--primary), var(--secondary)) 0 0 / 32% 8px no-repeat,
    linear-gradient(#edf4fd, #edf4fd) 0 1.6rem / 100% 8px no-repeat,
    linear-gradient(#edf4fd, #edf4fd) 0 2.55rem / 74% 8px no-repeat;
}

.hero-wis-visual {
  position: relative;
  min-height: 590px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 70% 14%, rgba(31, 196, 255, 0.18), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.9));
}

.resume-topline,
.resume-title-line,
.resume-row,
.resume-section span,
.form-line {
  display: block;
  border-radius: 999px;
  background: #e8f1fb;
}

.resume-topline {
  width: 42%;
  height: 10px;
  margin-bottom: 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.resume-title-line {
  width: 76%;
  height: 18px;
  margin-bottom: 1.5rem;
  background: #dbe9fb;
}

.resume-row {
  width: 100%;
  height: 9px;
  margin-bottom: 0.75rem;
}

.resume-row-short {
  width: 66%;
}

.resume-section {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0 1.65rem;
  padding: 1rem;
  border-radius: 18px;
  background: #f6faff;
  border: 1px solid #e2edf9;
}

.resume-section span {
  height: 8px;
}

.resume-section span:nth-child(1) {
  width: 72%;
  background: #dbe9fb;
}

.resume-section span:nth-child(2) {
  width: 94%;
}

.resume-section span:nth-child(3) {
  width: 58%;
}

.hero-product-card {
  position: absolute;
  z-index: 4;
  width: min(260px, 58%);
  padding: 1rem;
  border: 1px solid #dce8f7;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 55px rgba(18, 62, 123, 0.14);
  backdrop-filter: blur(16px);
}

.hero-product-card span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-product-card strong {
  display: block;
  color: var(--heading);
  font-size: 0.98rem;
  line-height: 1.25;
}

.hero-form-card {
  left: 0;
  top: 7.5rem;
  animation: cardDrift 6.4s ease-in-out infinite;
}

.hero-assistant-card {
  right: 0.4rem;
  bottom: 8rem;
  animation: cardDrift 6.8s ease-in-out infinite reverse;
}

.form-line {
  height: 8px;
  margin-top: 0.85rem;
}

.form-line.short {
  width: 62%;
  margin-top: 0.55rem;
}

.tagline,
.tagline-dark,
.chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.42rem 0.78rem;
  border: 1px solid #cfe0f7;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subtitle,
.subtitle-dark {
  max-width: 720px;
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.page-hero {
  padding: 6rem 0 4.3rem;
  background:
    radial-gradient(circle at 16% 0%, rgba(31, 196, 255, 0.2), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.3rem;
  align-items: start;
}

.hero-content h1 {
  max-width: 900px;
}

.hero-highlight {
  padding: 1.3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-highlight h3 {
  margin-bottom: 0.5rem;
}

.hero-highlight ul,
.card ul {
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.hero-highlight li,
.card li,
.plain-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
}

.hero-highlight li::before,
.card li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.efficiency-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  width: min(1160px, 92%);
  margin: 4.8rem auto 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.efficiency-left {
  display: flex;
  align-items: center;
  min-height: 540px;
  padding: clamp(2rem, 5vw, 4.6rem);
  background:
    radial-gradient(circle at 18% 20%, rgba(31, 196, 255, 0.2), transparent 14rem),
    linear-gradient(135deg, #ffffff 0%, #eef6ff 58%, #e5f4ff 100%);
}

.efficiency-copy h2 {
  max-width: 520px;
  color: var(--heading);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.efficiency-copy strong {
  color: var(--primary);
  font-weight: 900;
}

.efficiency-right {
  display: flex;
  align-items: center;
  padding: clamp(1.6rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.efficiency-list {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.eff-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid #e2edf9;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(18, 62, 123, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.eff-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(18, 62, 123, 0.12);
}

.eff-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--primary-soft), #ffffff);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px #d8e7fb;
}

.eff-item h3 {
  margin-bottom: 0.2rem;
  color: var(--heading);
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.eff-item p {
  color: var(--muted);
}

.section {
  padding: 5rem 0;
}

.compact {
  padding: 3.3rem 0;
}

.section-alt {
  background:
    radial-gradient(circle at 8% 0%, rgba(31, 196, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, var(--bg-soft), #ffffff);
}

h2 {
  margin-bottom: 1rem;
  color: var(--heading);
  font-size: clamp(1.85rem, 3.4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--heading);
  font-size: 1.15rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.section-intro {
  max-width: 700px;
  margin-bottom: 1.7rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-card,
.product-card,
.contact-form,
.testimonial,
.cta-band,
.faq-item,
.impact-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.card,
.service-card,
.product-card,
.contact-form {
  padding: 1.35rem;
}

.card,
.service-card,
.product-card,
.impact-item,
.faq-item {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover,
.service-card:hover,
.product-card:hover,
.impact-item:hover,
.faq-item:hover {
  transform: translateY(-5px);
  border-color: #bfd6f4;
  box-shadow: var(--shadow);
}

.service-card,
.product-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.product-card::before {
  content: "";
  display: block;
  width: 54px;
  height: 6px;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.plain-list ul {
  display: grid;
  gap: 0.6rem;
  list-style: none;
}

.plain-list li {
  color: var(--text);
  font-weight: 700;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.clients-grid span,
.clients-strip span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: #405575;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 24px rgba(18, 62, 123, 0.06);
}

.clients-grid span {
  padding: 0.72rem 0.55rem;
}

.clients {
  padding: 1.4rem 0 3rem;
}

.clients-title {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.clients-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.clients-strip span {
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
}

.impact-strip {
  padding: 3.2rem 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(31, 196, 255, 0.16), transparent 22rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-block: 1px solid var(--border);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.impact-item {
  padding: 1.15rem;
  text-align: center;
  background: #ffffff;
  border-color: var(--border);
  box-shadow: var(--shadow-soft);
}

.impact-item strong {
  display: block;
  color: var(--primary);
  font-size: 1.55rem;
  line-height: 1.1;
}

.impact-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.testimonial {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  text-align: center;
}

.testimonial blockquote {
  max-width: 830px;
  margin: 0.5rem auto;
  color: var(--heading);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.55;
}

.author {
  font-size: 0.92rem;
  font-weight: 800;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  text-align: center;
  background:
    radial-gradient(circle at 15% 15%, rgba(31, 196, 255, 0.18), transparent 16rem),
    #ffffff;
}

.cta-band p {
  margin: 0.4rem 0 1.1rem;
}

.not-found-hero {
  min-height: calc(100vh - 154px);
  display: grid;
  align-items: center;
}

.not-found-card {
  position: relative;
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 14%, rgba(31, 196, 255, 0.2), transparent 18rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.not-found-card::after {
  content: "404";
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  bottom: -0.28em;
  color: rgba(10, 102, 255, 0.08);
  font-size: clamp(7rem, 22vw, 18rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.not-found-card > * {
  position: relative;
  z-index: 1;
}

.contact-form {
  display: grid;
  gap: 0.6rem;
}

.contact-form label {
  color: var(--heading);
  font-size: 0.95rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  padding: 0.78rem 0.9rem;
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10, 102, 255, 0.12);
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-message {
  min-height: 1.2rem;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-message.is-error {
  color: #c93636;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  padding: 1rem 1.15rem;
}

.faq-item summary {
  cursor: pointer;
  color: var(--heading);
  font-weight: 800;
}

.faq-item p {
  margin-top: 0.65rem;
}

.footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(8px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
  filter: blur(0);
}

.reveal-left {
  transform: translate3d(-42px, 0, 0);
}

.reveal-right {
  transform: translate3d(42px, 0, 0);
}

.reveal-zoom {
  transform: translate3d(0, 24px, 0) scale(0.94);
}

.reveal-lift {
  transform: translate3d(0, 48px, 0) scale(0.98);
}

@keyframes resumeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes cardDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .nav {
    justify-content: center;
  }

  .hero-layout,
  .hero-wis-shell,
  .efficiency-section,
  .two-col,
  .cards-2,
  .cards-3,
  .cards-4,
  .strip-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .hero-wis {
    padding-top: 1.5rem;
  }

  .hero-wis-shell {
    min-height: auto;
  }

  .hero-wis-outline {
    width: min(360px, 76%);
    min-height: 300px;
  }

  .hero-wis-visual {
    min-height: 500px;
  }

  .page-hero {
    padding: 4.5rem 0 3rem;
  }

  .efficiency-left {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.5rem, 1160px);
  }

  .logo-image {
    width: 138px;
  }

  .hero-wis-shell {
    padding: 1rem;
    border-radius: 22px;
  }

  .hero-wis-visual {
    min-height: 450px;
  }

  .hero-wis-outline {
    width: 82%;
  }

  .hero-product-card {
    width: min(230px, 70%);
  }

  .hero-form-card {
    left: -0.2rem;
    top: 5.5rem;
  }

  .hero-assistant-card {
    right: -0.2rem;
    bottom: 5.8rem;
  }

  .hero-wis-content h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 14vw, 3.35rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 3.4rem 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
