:root {
  --green: #1a828a;
  --green-dark: #0d5f68;
  --yellow: #fdd13f;
  --cream: #fbf6ef;
  --white: #ffffff;
  --text: #102a36;
  --muted: #4b5f66;
  --line: rgba(16, 42, 54, .12);
  --shadow: 0 18px 55px rgba(16, 42, 54, .10);
  --soft-shadow: 0 12px 28px rgba(16, 42, 54, .08);
  --radius: 8px;
  --radius-lg: 22px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "Comfortaa", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(253, 209, 63, .9);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--text);
  color: var(--white);
  transform: translateY(-140%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, 1220px);
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section-title {
  max-width: 920px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 0 20px;
  color: var(--green);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
}

.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 62px;
  height: 4px;
  border-radius: 999px;
  background: var(--yellow);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: .92rem;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px) scale(1.01);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--yellow);
  color: var(--text);
  box-shadow: 0 12px 24px rgba(253, 209, 63, .28);
}

.btn-outline {
  background: rgba(255, 255, 255, .6);
  border-color: var(--green);
  color: var(--text);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--text);
  box-shadow: 0 14px 26px rgba(0, 0, 0, .14);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(251, 246, 239, .86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: min-height .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(251, 246, 239, .96);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px rgba(16, 42, 54, .06);
}

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

.brand {
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: 172px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.3vw, 34px);
  margin-left: auto;
}

.site-nav a:not(.btn) {
  position: relative;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.site-nav a:not(.btn):hover::after,
.site-nav a:not(.btn).is-active::after {
  transform: scaleX(1);
}

.header-cta {
  flex: 0 0 auto;
  padding-inline: 22px;
  font-size: .82rem;
}

.nav-cta {
  display: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  padding: 54px 0 46px;
  background:
    radial-gradient(circle at 78% 18%, rgba(253, 209, 63, .18), transparent 28%),
    linear-gradient(180deg, #fffaf2 0%, var(--cream) 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: 46px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.7rem, 5.6vw, 5.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--yellow);
}

.hero-text {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 34px 0 30px;
}

.trust-list,
.trust-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li,
.trust-band li {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-right: 1px solid var(--line);
  color: var(--text);
  font-size: .86rem;
  font-weight: 600;
}

.trust-list li:first-child,
.trust-band li:first-child {
  padding-left: 0;
}

.trust-list li:last-child,
.trust-band li:last-child {
  border-right: 0;
}

.trust-list svg,
.trust-band svg {
  width: 24px;
  height: 24px;
  color: var(--green);
  flex: 0 0 auto;
}

.flag-fr {
  width: 23px;
  height: 18px;
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(16, 42, 54, .08);
  background: linear-gradient(90deg, #244aa5 0 33.33%, #fff 33.33% 66.66%, #ed2939 66.66% 100%);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.dashboard-img {
  width: 100%;
  border-radius: 30px;
  filter: drop-shadow(0 28px 42px rgba(16, 42, 54, .16));
  animation: float-soft 6s ease-in-out infinite;
}

.problem {
  background: rgba(255, 255, 255, .58);
  position: relative;
}

.problem::before,
.problem::after {
  content: "";
  position: absolute;
  top: 52%;
  width: 120px;
  height: 62px;
  opacity: .55;
  background-image: radial-gradient(var(--yellow) 1.4px, transparent 1.4px);
  background-size: 12px 12px;
}

.problem::before {
  left: 0;
}

.problem::after {
  right: 0;
}

.problem-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.soft-card {
  min-height: 188px;
  padding: 30px 24px;
  border: 1px solid rgba(16, 42, 54, .08);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.soft-card:hover,
.pillar-card:hover,
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon-circle {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  background: #f3fbfb;
  flex: 0 0 auto;
}

.icon-circle svg {
  width: 30px;
  height: 30px;
}

.icon-circle.solid {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.icon-circle.yellow {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--white);
}

.soft-card h3,
.pillar-card h3,
.why-item h3 {
  margin: 16px 0 8px;
  color: var(--green);
  font-size: 1rem;
  line-height: 1.25;
}

.soft-card p {
  margin: 0;
  color: var(--text);
  font-size: .9rem;
}

.answer {
  padding-top: 82px;
}

.answer-grid {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(520px, 1fr);
  gap: 48px;
  align-items: center;
}

.answer-copy h2,
.team-copy h2,
.final-panel h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.answer-copy > p,
.team-copy p,
.final-panel p {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1.03rem;
}

.answer-points {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.answer-points div {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.answer-points span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.answer-points svg {
  width: 18px;
  height: 18px;
}

.answer-points h3,
.answer-points p {
  margin: 0;
}

.answer-points h3 {
  color: var(--green);
  font-size: 1rem;
}

.answer-points p {
  grid-column: 2;
  color: var(--text);
  font-size: .9rem;
}

.method {
  position: relative;
  min-height: 520px;
}

.method-center {
  position: absolute;
  inset: 94px 160px 76px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(26, 130, 138, .55);
  border-radius: 50%;
}

.method-center img {
  width: 78%;
  border-radius: 20px;
  filter: drop-shadow(0 22px 30px rgba(16, 42, 54, .14));
}

.method-steps {
  position: relative;
  min-height: 520px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  position: absolute;
  max-width: 210px;
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 12px;
  align-items: center;
}

.method-steps span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  font-weight: 700;
  box-shadow: var(--soft-shadow);
}

.method-steps strong {
  display: block;
  color: var(--green);
  font-size: .82rem;
  text-transform: uppercase;
}

.method-steps small {
  grid-column: 2;
  color: var(--text);
  font-size: .78rem;
  line-height: 1.4;
}

.method-steps li:nth-child(1) { top: 0; left: 50%; transform: translateX(-34%); }
.method-steps li:nth-child(2) { top: 120px; left: 0; }
.method-steps li:nth-child(3) { top: 290px; left: 18px; }
.method-steps li:nth-child(4) { top: 128px; right: 0; }
.method-steps li:nth-child(5) { top: 328px; right: 4px; }

.pillars {
  padding-top: 40px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pillar-card {
  display: flex;
  min-height: 384px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(26, 130, 138, .22);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(16, 42, 54, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.assistant-card {
  border-color: rgba(253, 209, 63, .85);
}

.pillar-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 24px 4px;
}

.pillar-head h3 {
  margin: 0 0 2px;
  font-size: 1.18rem;
}

.pillar-head p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  font-size: .92rem;
}

.new-tag {
  display: inline-flex;
  margin: 0 0 4px !important;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--yellow);
  color: var(--green) !important;
  font-size: .66rem !important;
  letter-spacing: .08em;
}

.assistant-card .pillar-head h3 {
  color: #e3a900;
}

.pillar-card ul {
  flex: 1;
  margin: 18px 0 24px;
  padding: 0 34px 0 58px;
  color: var(--text);
  font-size: .94rem;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px 14px 24px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
}

.price-row strong {
  font-size: .92rem;
}

.price-row a {
  min-width: 112px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  font-size: .82rem;
  font-weight: 700;
}

.yellow-row {
  background: var(--yellow);
  color: var(--text);
}

.cases {
  padding-top: 38px;
  background: rgba(255, 255, 255, .42);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.case-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 170px;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 54, .08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.case-visual {
  position: relative;
  min-height: 170px;
  background: linear-gradient(135deg, #eaf4f3, #ffffff);
  overflow: hidden;
}

.case-visual::before,
.case-visual::after {
  content: "";
  position: absolute;
  border-radius: var(--radius);
}

.case-visual::before {
  inset: 44px 20px 20px;
  background: rgba(255, 255, 255, .55);
  box-shadow: inset 0 0 0 1px rgba(16, 42, 54, .08);
}

.case-visual::after {
  right: 16px;
  bottom: 18px;
  width: 70px;
  height: 38px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: skew(-20deg);
}

.case-btp {
  background:
    linear-gradient(145deg, rgba(16, 42, 54, .18), transparent 62%),
    linear-gradient(135deg, #d9e8df, #ffffff);
}

.case-commerce {
  background:
    linear-gradient(145deg, rgba(253, 209, 63, .24), transparent 60%),
    linear-gradient(135deg, #e9d5b1, #fff8eb);
}

.case-services {
  background:
    linear-gradient(145deg, rgba(26, 130, 138, .22), transparent 58%),
    linear-gradient(135deg, #dfecef, #ffffff);
}

.case-visual span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--text);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
}

.case-body {
  padding: 20px 18px;
}

.case-body p {
  margin: 0;
  color: var(--text);
  font-size: .86rem;
}

.case-body p + p {
  margin-top: 14px;
  color: var(--green);
  font-weight: 700;
}

.why {
  padding-bottom: 54px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-item {
  min-height: 172px;
  padding: 26px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.why-item:last-child {
  border-right: 0;
}

.why-item svg {
  width: 42px;
  height: 42px;
  margin-inline: auto;
  color: var(--green);
}

.why-item h3 {
  margin: 14px 0 6px;
  font-size: .95rem;
}

.why-item p {
  margin: 0;
  color: var(--text);
  font-size: .82rem;
}

.trust-band {
  width: fit-content;
  max-width: 100%;
  margin: 26px auto 0;
  padding: 4px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 10px 22px rgba(16, 42, 54, .05);
}

.team {
  padding-top: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .46), var(--cream));
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(280px, .7fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
}

.team-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
}

.team-photo img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  object-position: center;
}

.team-copy .btn {
  margin-top: 24px;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  min-height: 178px;
}

.team-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  text-align: center;
  border-right: 1px dashed rgba(26, 130, 138, .65);
}

.team-stats div:last-child {
  border-right: 0;
}

.team-stats svg {
  width: 44px;
  height: 44px;
  color: var(--green);
}

.team-stats strong {
  color: var(--green);
  font-size: 1.38rem;
}

.team-stats span {
  color: var(--text);
  font-size: .86rem;
}

.final-cta {
  padding: 34px 0 46px;
}

.final-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr auto .82fr;
  gap: 34px;
  align-items: center;
  padding: 42px 54px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 96% 100%, rgba(253, 209, 63, .24), transparent 24%),
    linear-gradient(135deg, var(--green), #00636d);
  color: var(--white);
}

.final-panel::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 42px;
  width: 68px;
  height: 100px;
  opacity: .7;
  background-image: radial-gradient(var(--yellow) 1.4px, transparent 1.4px);
  background-size: 12px 12px;
}

.final-panel::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -78px;
  width: 260px;
  height: 260px;
  border: 2px solid rgba(253, 209, 63, .72);
  border-radius: 50%;
  box-shadow: -36px -34px 0 -2px transparent, -36px -34px 0 0 rgba(253, 209, 63, .72);
}

.final-panel > * {
  position: relative;
  z-index: 1;
}

.final-panel p {
  color: var(--white);
}

.final-panel address {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 34px;
  border-left: 1px dashed rgba(255, 255, 255, .66);
  font-style: normal;
  font-weight: 600;
  font-size: .9rem;
}

.final-panel address a,
.final-panel address span {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
}

.final-panel address svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.site-footer {
  padding: 0 0 36px;
  background: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(170px, 1.4fr) repeat(5, minmax(100px, 1fr));
  gap: 28px;
  align-items: start;
}

.site-footer h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: .82rem;
}

.site-footer a {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: .78rem;
}

.site-footer a:hover {
  color: var(--green);
}

.linkedin {
  width: 34px;
  height: 34px;
  display: grid !important;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white) !important;
  font-weight: 700;
}

.copyright {
  margin: 30px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: .78rem;
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1160px) {
  .site-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(400px, 1fr);
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }

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

  .method {
    max-width: 860px;
    margin-inline: auto;
  }

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

  .why-item:nth-child(3) {
    border-right: 0;
  }

  .why-item:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }

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

  .team-stats {
    grid-column: 1 / -1;
  }

  .final-panel {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .final-panel address {
    width: 100%;
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px dashed rgba(255, 255, 255, .66);
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(100% - 32px, 1220px);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 16px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a:not(.btn) {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: var(--radius);
  }

  .site-nav a:not(.btn):hover {
    background: #f3fbfb;
  }

  .site-nav a:not(.btn)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 34px;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .dashboard-img {
    max-width: 760px;
    margin-inline: auto;
  }

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

  .assistant-card {
    grid-column: 1 / -1;
  }

  .case-card {
    grid-template-columns: 38% 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 82px;
  }

  .section {
    padding: 54px 0;
  }

  .brand img {
    width: 146px;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-list {
    display: grid;
    gap: 8px;
  }

  .trust-list li,
  .trust-band li {
    width: 100%;
    padding: 12px 16px;
    border-right: 0;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 8px 18px rgba(16, 42, 54, .05);
  }

  .hero-visual {
    margin-top: 4px;
  }

  .dashboard-img {
    border-radius: 20px;
  }

  .problem::before,
  .problem::after {
    display: none;
  }

  .problem-grid,
  .pillar-grid,
  .case-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .soft-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 62px 1fr;
    column-gap: 16px;
    align-items: center;
    text-align: left;
    padding: 22px;
  }

  .soft-card h3 {
    margin: 0 0 4px;
  }

  .soft-card p {
    grid-column: 2;
  }

  .answer-points div {
    grid-template-columns: 36px 1fr;
  }

  .method {
    min-height: 0;
  }

  .method-center {
    display: none;
  }

  .method-steps {
    min-height: 0;
    display: grid;
    gap: 18px;
    padding-left: 24px;
    border-left: 1px dashed rgba(26, 130, 138, .55);
  }

  .method-steps li {
    position: static;
    max-width: none;
    transform: none !important;
  }

  .pillar-card,
  .assistant-card {
    grid-column: auto;
  }

  .pillar-card {
    min-height: 0;
  }

  .pillar-head {
    padding: 22px 20px 4px;
  }

  .pillar-card ul {
    padding-left: 46px;
  }

  .price-row {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: center;
  }

  .price-row a {
    min-height: 42px;
  }

  .case-card {
    grid-template-columns: 42% 1fr;
  }

  .case-body {
    padding: 16px;
  }

  .why-grid {
    border: 0;
  }

  .why-item,
  .why-item:nth-child(-n+3),
  .why-item:nth-child(3) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-band {
    display: grid;
    width: 100%;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

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

  .team-photo {
    order: 2;
  }

  .team-copy {
    order: 1;
  }

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

  .team-stats div {
    padding: 14px 8px;
  }

  .team-stats strong {
    font-size: 1.1rem;
  }

  .team-stats span {
    font-size: .74rem;
  }

  .final-panel {
    padding: 38px 28px;
    border-radius: 20px;
  }

  .final-panel .btn {
    width: 100%;
  }

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

  .mobile-sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 99;
    min-height: 62px;
    display: grid;
    grid-template-columns: 42px 1fr 22px;
    align-items: center;
    gap: 12px;
    padding: 10px 18px 10px 10px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--text);
    font-weight: 700;
    box-shadow: 0 18px 30px rgba(16, 42, 54, .18);
  }

  .phone-dot {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--green);
  }

  .phone-dot svg {
    width: 21px;
    height: 21px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 28px, 1220px);
  }

  .eyebrow {
    font-size: .72rem;
  }

  .hero-copy h1 {
    font-size: 2.32rem;
  }

  .section-title {
    font-size: 1.72rem;
  }

  .case-card {
    grid-template-columns: 1fr;
  }

  .case-visual {
    min-height: 150px;
  }

  .team-stats {
    grid-template-columns: 1fr;
  }

  .team-stats div {
    border-right: 0;
    border-bottom: 1px dashed rgba(26, 130, 138, .45);
  }

  .team-stats div:last-child {
    border-bottom: 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
