* {
  box-sizing: border-box;
}

:root {
  --bg: #f7fbff;
  --ink: #102033;
  --muted: #617089;
  --surface: rgba(255, 255, 255, 0.86);
  --solid: #ffffff;
  --line: rgba(22, 45, 78, 0.12);
  --blue: #245ff2;
  --cyan: #05bdd7;
  --green: #24c590;
  --violet: #7a5cff;
  --navy: #12213b;
  --shadow: 0 24px 80px rgba(18, 40, 74, 0.12);
  --shadow-strong: 0 34px 110px rgba(18, 40, 74, 0.18);
  --radius: 32px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(36, 95, 242, 0.13), transparent 32rem),
    radial-gradient(circle at 88% 10%, rgba(5, 189, 215, 0.14), transparent 34rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f5f8ff 100%);
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -4;
  background-image:
    linear-gradient(rgba(16, 32, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 51, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.75), transparent 72%);
}

.orb {
  position: fixed;
  z-index: -3;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
  opacity: 0.42;
  animation: drift 11s ease-in-out infinite alternate;
}

.orb-one {
  left: -18rem;
  top: 26rem;
  background: radial-gradient(circle, rgba(36,95,242,0.23), transparent 68%);
}

.orb-two {
  right: -17rem;
  top: 70rem;
  background: radial-gradient(circle, rgba(36,197,144,0.18), transparent 70%);
  animation-delay: -4s;
}

.orb-three {
  right: 18%;
  top: 18rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(122,92,255,0.12), transparent 70%);
  animation-delay: -8s;
}

@keyframes drift {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(22px,-26px,0) scale(1.05); }
}

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

p {
  line-height: 1.68;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 80;
  width: calc(100% - 36px);
  max-width: 1160px;
  margin: 14px auto 0;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 60px rgba(18,40,74,0.10);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px 2px 4px;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: 46px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: #43536b;
  font-size: 0.94rem;
  font-weight: 780;
  transition: 0.22s ease;
}

.main-nav a:hover {
  color: var(--ink);
  background: rgba(36,95,242,0.08);
}

.main-nav .nav-cta {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 34px rgba(36,95,242,0.20);
}


.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 5px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
}

.main-nav .language-switcher .lang-link {
  min-width: 34px;
  padding: 7px 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #60708a;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.main-nav .language-switcher .lang-link:hover {
  color: var(--ink);
  background: rgba(36,95,242,0.08);
}

.main-nav .language-switcher .lang-link.active {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 8px 20px rgba(36,95,242,0.18);
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--ink);
}

.section {
  width: calc(100% - 40px);
  max-width: 1160px;
  margin: 0 auto;
  padding: 86px 0;
}

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
  padding-top: 70px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 950;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  letter-spacing: -0.055em;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.88;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.26rem;
  line-height: 1.14;
}

.lead,
.section-heading p,
.soft-card p,
.solution-card p,
.highlight-list span,
.highlight-intro,
.impact-item span,
.process-step p,
.contact-card p,
.site-footer span,
.site-footer p {
  color: var(--muted);
}

.lead {
  max-width: 710px;
  font-size: 1.14rem;
}

.hero-line {
  max-width: 690px;
  margin: 24px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(36,95,242,0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(36,95,242,0.08), rgba(5,189,215,0.08)),
    rgba(255,255,255,0.65);
  color: #314a6b;
  font-weight: 850;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 950;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 42px rgba(36,95,242,0.24);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.35), transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.75s ease;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.78);
}

.email-link {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  color: var(--muted);
  font-weight: 850;
  transition: color 0.22s ease, transform 0.22s ease;
}

.email-link:hover {
  color: var(--blue);
  transform: translateY(-2px);
}

.simple-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.simple-proof span {
  padding: 12px 15px;
  border: 1px solid rgba(36,95,242,0.13);
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  color: #354965;
  font-size: 0.93rem;
  font-weight: 820;
}

.hero-visual {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
}

.impact-panel {
  position: relative;
  width: min(100%, 500px);
  min-height: 430px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 0%, rgba(36,95,242,0.16), transparent 24rem),
    radial-gradient(circle at 100% 85%, rgba(36,197,144,0.13), transparent 22rem),
    rgba(255,255,255,0.88);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  animation: panelIn 1s ease both;
}

.impact-panel::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(36,95,242,0.18), transparent 35%, rgba(5,189,215,0.18));
  opacity: 0.6;
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  padding: 1px;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.panel-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  color: #3d526e;
}

.pulse {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(36,197,144,0.13);
}

.impact-path {
  display: grid;
  gap: 14px;
  margin-top: 58px;
}

.impact-path div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.impact-path div:hover {
  transform: translateX(6px);
  box-shadow: 0 16px 38px rgba(36,95,242,0.12);
}

.impact-path small {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 950;
}

.impact-path span {
  font-weight: 950;
  font-size: 1.1rem;
}

.mini-card {
  position: absolute;
  z-index: 4;
  min-width: 195px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}

.mini-card small {
  display: block;
  color: var(--muted);
  font-weight: 820;
}

.mini-card strong {
  display: block;
  margin-top: 4px;
}

.mini-a { left: 0; top: 50px; }
.mini-b { right: -5px; top: 225px; animation-delay: -2s; }
.mini-c { left: 28px; bottom: 34px; animation-delay: -4s; }

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

.short-message {
  margin-top: -18px;
  padding: clamp(32px, 6vw, 64px);
  border-radius: 40px;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(5,189,215,0.35), transparent 24rem),
    linear-gradient(135deg, #102033, #173d73);
  box-shadow: var(--shadow-strong);
}

.short-message p {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
  font-weight: 820;
}

.short-message h2 {
  max-width: 880px;
  margin: 0 auto;
  color: white;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.three-grid,
.impact-grid,
.questions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.soft-card,
.solution-card,
.impact-item,
.question,
.contact-card,
.highlight-card,
.process-list,
.faq-list {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 20px 70px rgba(18,40,74,0.08);
  backdrop-filter: blur(16px);
}

.soft-card {
  min-height: 245px;
  padding: 28px;
  border-radius: 30px;
  transition: 0.24s ease;
}

.soft-card:hover,
.solution-card:hover,
.impact-item:hover,
.question:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.soft-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 17px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 950;
}

.solutions-grid {
  display: grid;
  gap: 18px;
}

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

.solution-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border-radius: 30px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.solution-card::before,
.soft-card::before,
.impact-item::before,
.question::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 0%), rgba(36,95,242,0.14), transparent 16rem);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.solution-card:hover::before,
.soft-card:hover::before,
.impact-item:hover::before,
.question:hover::before {
  opacity: 1;
}

.solution-card:hover {
  border-color: rgba(36,95,242,0.25);
}

.icon {
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(36,95,242,0.10), rgba(5,189,215,0.13));
  font-size: 1.6rem;
  transition: transform 0.28s ease, background 0.28s ease;
}

.solution-card:hover .icon {
  transform: scale(1.07) rotate(-2deg);
  background: linear-gradient(135deg, rgba(36,95,242,0.16), rgba(5,189,215,0.20));
}

.highlight-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 40px;
  background:
    radial-gradient(circle at 100% 0%, rgba(5,189,215,0.13), transparent 23rem),
    rgba(255,255,255,0.88);
  box-shadow: var(--shadow);
}

.highlight-intro {
  max-width: 500px;
}

.highlight-list {
  display: grid;
  gap: 14px;
}

.highlight-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.highlight-list div:hover {
  transform: translateX(5px);
  box-shadow: 0 16px 42px rgba(18,40,74,0.10);
}

.highlight-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.impact-item {
  position: relative;
  min-height: 170px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
  border-radius: 30px;
  transition: 0.24s ease;
  overflow: hidden;
}

.impact-item strong {
  font-size: 1.65rem;
  letter-spacing: -0.045em;
}

.process-list {
  border-radius: 34px;
  overflow: hidden;
}

.process-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 25px 28px;
  border-bottom: 1px solid var(--line);
  transition: background 0.24s ease;
}

.process-step:hover {
  background: rgba(36,95,242,0.045);
}

.process-step:last-child {
  border-bottom: 0;
}

.process-step span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 950;
}

.process-step h3,
.process-step p {
  margin-bottom: 4px;
}

.question {
  position: relative;
  min-height: 110px;
  display: grid;
  align-content: center;
  padding: 22px;
  border-radius: 24px;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -0.03em;
  transition: 0.24s ease;
  overflow: hidden;
}


.faq-section {
  padding-top: 70px;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(5,189,215,0.10), transparent 24rem),
    rgba(255,255,255,0.88);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.54);
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.faq-item:first-child {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.faq-item:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.faq-item[open] {
  background: rgba(255,255,255,0.86);
  box-shadow: 0 16px 42px rgba(18,40,74,0.07);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -0.025em;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.22s ease;
}

.faq-item[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}

.faq-item p {
  max-width: 780px;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.final-section {
  padding-top: 38px;
}

.final-card {
  padding: clamp(34px, 6vw, 72px);
  border-radius: 42px;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(5,189,215,0.35), transparent 25rem),
    linear-gradient(135deg, #102033, #173d73);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.final-card::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: conic-gradient(from 180deg, transparent, rgba(255,255,255,0.12), transparent 35%);
  animation: rotateGlow 9s linear infinite;
}

.final-card > * {
  position: relative;
  z-index: 2;
}

@keyframes rotateGlow {
  to { transform: rotate(360deg); }
}

.final-card p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.72);
  font-size: 1.02rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.final-card h2 {
  max-width: 1010px;
  margin: 0 auto;
  color: white;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 40px;
  background:
    radial-gradient(circle at 0% 0%, rgba(36,197,144,0.13), transparent 24rem),
    rgba(255,255,255,0.88);
}

.contact-actions {
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
}

.direct-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-top: 2px;
}

.direct-contact span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direct-contact a,
.footer-email {
  color: #264d83;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(36,95,242,0.28);
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.direct-contact a:hover,
.footer-email:hover {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.site-footer {
  width: calc(100% - 40px);
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 0 56px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #7e8ca2;
  text-align: center;
}

.site-footer strong {
  color: var(--ink);
}

.footer-logo {
  display: block;
  height: 56px;
  width: auto;
  margin-bottom: 6px;
}

.footer-email {
  margin-top: 2px;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  filter: blur(8px);
  transition: opacity 0.82s ease, transform 0.82s ease, filter 0.82s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.soft-card.visible,
.solution-card.visible,
.impact-item.visible,
.question.visible {
  animation: cardPop 0.82s cubic-bezier(.2,.75,.2,1) both;
}

@keyframes cardPop {
  0% { opacity: 0; transform: translateY(28px) scale(0.96); }
  60% { opacity: 1; transform: translateY(-4px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1100px) {
  .solutions-grid.equal {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255,255,255,0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 16px;
  }


  .language-switcher {
    width: 100%;
    justify-content: center;
    margin: 5px 0 0;
    padding: 6px;
  }

  .main-nav .language-switcher .lang-link {
    flex: 1;
    min-height: 38px;
    padding: 8px 12px;
  }

  .hero,
  .highlight-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .contact-actions {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .direct-contact {
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header,
  .section,
  .site-footer {
    width: calc(100% - 24px);
  }

  .brand-logo {
    height: 38px;
  }

  .footer-logo {
    height: 50px;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.55rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .direct-contact {
    width: 100%;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .impact-panel {
    min-height: 390px;
    padding: 24px;
    border-radius: 34px;
  }

  .mini-card {
    display: none;
  }

  .three-grid,
  .impact-grid,
  .questions-grid,
  .solutions-grid.equal {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 1fr;
  }
}
