:root {
  --void: #070707;
  --surface: #101113;
  --surface-2: #17191d;
  --line: rgba(255, 255, 255, 0.11);
  --text: #ece7de;
  --muted: #9b978f;
  --cyan: #5cd2e8;
  --yellow: #e9ef76;
  --lime: #c7ef44;
  --wrap: min(1200px, calc(100% - 48px));
  --font: "Syne", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --advertorial-height: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--void);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

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

address {
  font-style: normal;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

/* ── Advertorial ── */
.advertorial-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: var(--advertorial-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Header ── */
.header {
  position: fixed;
  top: var(--advertorial-height);
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px max(24px, calc((100% - 1200px) / 2));
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  scale: 2;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  scale: 2;
}

.logo-dot {
  color: var(--lime);
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav a:hover {
  opacity: 1;
}

.nav-cta {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid currentColor;
  padding: 10px 18px;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--text);
  color: var(--void);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(120px + var(--advertorial-height)) 0 110px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 30%, rgba(0, 229, 255, 0.14), transparent 62%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.55) 48%, rgba(7, 7, 7, 0.2) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-layout {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.hero-copy {
  position: relative;
  z-index: 2;
  flex: 1 1 420px;
  max-width: 560px;
}

.tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #b8b4ac;
  margin: 0 0 20px;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.4rem, 5.8vw, 4.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-transform: none;
  color: var(--text);
}

.hero-title .line {
  display: block;
}

.hero-title .accent {
  color: var(--lime);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.hero-sub {
  max-width: 46ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  color: #c4c0b8;
  line-height: 1.7;
}

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

.hero-visual,
.section-media,
.process-visual {
  margin: 0;
}

.hero-visual {
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  flex: 0 1 360px;
  width: min(100%, 360px);
  max-width: 360px;
  position: relative;
  z-index: 1;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 7, 7, 0.35) 100%);
  pointer-events: none;
}

.hero-visual img,
.section-media img,
.process-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

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

.btn-fill {
  background: var(--lime);
  color: var(--void);
}

.btn-fill:hover {
  box-shadow: 0 0 40px rgba(200, 255, 0, 0.35);
}

.btn-line {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-line:hover {
  border-color: var(--text);
}

.btn-sm {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.7rem;
}

/* ── Sections ── */
.section {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.section-dark {
  background: var(--surface);
}

.section-top {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

.num {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--lime);
  padding-top: 6px;
}

.label {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 16px;
}

.section-top h2,
.trust-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 18ch;
}

.lead {
  margin: 20px 0 0;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.7;
}

/* Problem list */
.problem-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.problem-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.problem-list li:first-child {
  border-top: 1px solid var(--line);
}

.idx,
.step-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--lime);
}

.problem-list p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.24rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.section-media {
  margin: 0 0 48px;
  height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
}

/* Services */
.service-rows {
  display: grid;
  gap: 0;
}

.service-row {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s;
}

.service-row:first-child {
  border-top: 1px solid var(--line);
}

.service-row:hover {
  padding-left: 16px;
}

.service-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 16px;
}

.service-head h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.service-row > p {
  margin: 0 0 20px;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.7;
}

.service-row ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-row li {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--muted);
}

/* Steps */
.steps {
  display: grid;
  gap: 0;
}

.process-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  gap: 28px;
  align-items: stretch;
  margin: 0 0 42px;
}

.process-visual {
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.process-note {
  display: flex;
  align-items: end;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.process-note p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.step:first-child {
  border-top: 1px solid var(--line);
}

.step-num {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  color: rgba(200, 255, 0, 0.25);
  transition: color 0.3s;
}

.step:hover .step-num {
  color: var(--lime);
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 55ch;
}

/* Impact */
.impact-layout {
  display: grid;
  gap: 28px;
}

.impact-feature,
.impact-side,
.trust-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.impact-feature img,
.impact-side img,
.trust-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.impact-feature {
  height: 320px;
  position: relative;
}

.impact-feature figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  background: rgba(7, 7, 7, 0.72);
  padding: 8px 12px;
}

.impact-content {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 20px;
  align-items: stretch;
}

.impact-side {
  min-height: 100%;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.impact {
  background: var(--surface);
  padding: 40px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.3s;
}

.impact:hover {
  background: var(--surface-2);
}

.impact h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.impact p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* Trust */
.trust {
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(0, 229, 255, 0.08), transparent),
    var(--void);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.trust-copy {
  max-width: 640px;
}

.trust-text {
  margin: 24px 0 32px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.trust-list li {
  font-family: var(--mono);
  font-size: 0.78rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.trust-list li::before {
  content: "→ ";
  color: var(--lime);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 42ch;
}

.address {
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 2;
  color: var(--muted);
}

.address strong {
  color: var(--text);
}

.address a:hover {
  color: var(--lime);
}

.form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form label span {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
}

.form select {
  appearance: none;
  cursor: pointer;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% + 2px),
    calc(100% - 16px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form select:invalid {
  color: #7d7972;
}

.form select option {
  color: var(--text);
  background: var(--surface);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--lime);
}

.form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.form-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--lime);
  cursor: pointer;
}

.form-check span {
  display: block;
  font-family: var(--font);
  font-size: 0.88rem;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  color: #c4c0b8;
  margin: 0;
}

.form-msg {
  margin: 4px 0 0;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text);
  min-height: 0;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.form-msg strong {
  color: var(--lime);
}

.form-success .form-msg {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  padding: 14px 16px;
  border: 1px solid rgba(199, 239, 68, 0.28);
  background: rgba(199, 239, 68, 0.08);
}

.form-success .btn-fill {
  background: #d8f781;
}

/* Footer */
.footer {
  padding: 60px 0 120px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  gap: 16px;
}

.trust-visual {
  min-height: 380px;
}

.footer-tag {
  margin: 0;
  max-width: 50ch;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.footer-nav a {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--lime);
}

.footer-copy {
  margin: 16px 0 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--muted);
}

/* About page */
.page-hero {
  position: relative;
  padding: calc(150px + var(--advertorial-height)) 0 90px;
  overflow: hidden;
}

.about-hero-grid,
.about-intro-grid,
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.page-title {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.page-subtitle {
  max-width: 46ch;
  margin: 24px 0 0;
  color: #c4c0b8;
  line-height: 1.7;
  font-size: 1.05rem;
}

.about-hero-media,
.about-story-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-hero-media img,
.about-story-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-hero-media {
  aspect-ratio: 4 / 5;
}

.about-copy p,
.about-story-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.about-card h3,
.about-values h3 {
  margin: 10px 0 12px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.about-card p,
.about-values p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-story-copy h2,
.about-cta-panel h2 {
  margin: 0 0 20px;
  max-width: 15ch;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-values {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-values li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.about-values li:first-child {
  border-top: 1px solid var(--line);
}

.about-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: 36px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.about-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-page-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: start;
}

.contact-page-copy {
  max-width: 620px;
}

.contact-page-address {
  margin-top: 34px;
}

.contact-page-form {
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

/* Legal pages */
.legal-page {
  padding-top: calc(150px + var(--advertorial-height));
}

.legal-intro {
  max-width: 720px;
  margin: 0 0 40px;
}

.legal-title {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.legal-subtitle {
  max-width: 54ch;
  margin: 20px 0 0;
  color: #c4c0b8;
  line-height: 1.75;
  font-size: 1rem;
}

.policy-content {
  max-width: 980px;
}

.policy-card {
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 16px;
}

.policy-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

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

.policy-card p + p,
.policy-card ul {
  margin-top: 12px;
}

.policy-card ul {
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.75;
}

.policy-card a {
  color: var(--lime);
}

.policy-card a:hover {
  color: var(--text);
}

.policy-note {
  border-style: dashed;
}

/* Sticky CTA bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px max(24px, calc((100% - 1200px) / 2));
  background: rgba(7, 7, 7, 0.92);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .about-hero-grid,
  .about-intro-grid,
  .about-story-grid,
  .contact-page-grid,
  .policy-grid,
  .process-intro,
  .trust-grid,
  .impact-content,
  .about-cta-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-layout {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
  }

  .hero-copy {
    max-width: none;
    flex: none;
  }

  .hero-visual {
    width: 100%;
    max-width: none;
    flex: none;
    aspect-ratio: 16 / 10;
    order: 2;
  }

  .section-top {
    grid-template-columns: 1fr;
  }

  .num {
    padding-top: 0;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .impact-feature {
    height: 240px;
  }

  .impact-side {
    min-height: 220px;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .sticky-bar {
    flex-direction: column;
    text-align: center;
    padding: 14px 24px;
  }

  .sticky-bar .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: calc(100px + var(--advertorial-height)) 0 96px;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.12;
  }

  .hero-btns {
    flex-direction: column;
  }

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

  .about-cta-actions {
    flex-direction: column;
  }

  .about-cta-actions .btn {
    width: 100%;
  }

  .problem-list li,
  .about-values li,
  .step {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .section {
    padding: 80px 0;
  }

  .section-media {
    height: 240px;
    margin-bottom: 36px;
  }
}
