:root {
  --studio-black: #0b0d10;
  --studio-black-soft: #15181d;
  --studio-graphite: #24282f;
  --studio-paper: #f4f4f1;
  --studio-white: #ffffff;
  --studio-muted: #626871;
  --studio-line: #d8dade;
  --studio-line-dark: rgba(255, 255, 255, 0.16);
  --studio-accent: #7895ff;
  --studio-accent-soft: #dfe6ff;
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Public Sans", "Segoe UI", sans-serif;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
}

body {
  color: var(--studio-black);
  background: var(--studio-paper);
  font-family: var(--font-body);
  letter-spacing: -0.012em;
}

.container {
  width: min(calc(100% - 56px), 1260px);
}

.site-header,
.site-header.scrolled,
.site-header.menu-active {
  color: var(--studio-white);
  background: rgba(11, 13, 16, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: none;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  color: var(--studio-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 1px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.main-nav {
  gap: 32px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.main-nav a::after {
  bottom: -11px;
  height: 1px;
  background: var(--studio-accent);
  border-radius: 0;
}

.nav-cta {
  min-height: 40px;
  padding: 0 17px;
  color: var(--studio-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
}

.nav-cta:hover {
  color: var(--studio-black);
  background: var(--studio-white);
  border-color: var(--studio-white);
  transform: none;
}

.menu-toggle {
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 850px;
  padding: 170px 0 42px;
  color: var(--studio-white);
  background: var(--studio-black);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255,255,255,.045) 25%, transparent calc(25% + 1px), transparent calc(50% - 1px), rgba(255,255,255,.045) 50%, transparent calc(50% + 1px), transparent calc(75% - 1px), rgba(255,255,255,.045) 75%, transparent calc(75% + 1px)),
    radial-gradient(circle at 74% 24%, rgba(120, 149, 255, 0.14), transparent 29%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: -40px;
  bottom: -155px;
  color: rgba(255, 255, 255, 0.025);
  content: "LF";
  font-family: var(--font-display);
  font-size: min(32vw, 29rem);
  font-weight: 600;
  letter-spacing: -0.12em;
  line-height: 1;
  pointer-events: none;
}

.hero-glow,
.showcase-orbit,
.browser-card,
.metric-card {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1.34fr) minmax(330px, 0.66fr);
  align-items: end;
  gap: clamp(55px, 9vw, 130px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: var(--studio-accent);
  font-family: var(--font-body);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span,
.section-kicker::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  border-radius: 0;
  box-shadow: none;
}

.hero-role {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.78rem;
  font-weight: 500;
}

.hero-role strong {
  color: var(--studio-white);
}

.hero-role > span {
  color: var(--studio-accent);
}

.hero h1,
.section-heading h2,
.why h2,
.contact h2,
.success-card h1 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.062em;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(4rem, 6.7vw, 6.65rem);
  line-height: 0.93;
}

.hero h1 em,
.section-heading h2 em,
.why h2 em,
.contact h2 em {
  color: inherit;
  font-style: normal;
  font-weight: 400;
}

.hero h1 em {
  color: rgba(255, 255, 255, 0.56);
}

.hero-lead {
  max-width: 650px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  line-height: 1.75;
}

.button {
  min-height: 50px;
  border-radius: 2px;
  font-size: 0.83rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.button-primary {
  color: var(--studio-white);
  background: #365edb;
  border: 1px solid #365edb;
  box-shadow: none;
}

.button-primary:hover {
  color: var(--studio-white);
  background: #294dbf;
  border-color: #294dbf;
  box-shadow: none;
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--studio-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

.button-secondary:hover {
  color: var(--studio-black);
  background: var(--studio-white);
  border-color: var(--studio-white);
}

.hero-trust {
  gap: 12px 26px;
  margin-top: 29px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.73rem;
  font-weight: 500;
}

.hero-trust span {
  width: auto;
  height: auto;
  color: var(--studio-accent);
  background: transparent;
  border-radius: 0;
}

.hero-availability {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

.hero-availability span {
  width: 7px;
  height: 7px;
  background: #50d890;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(80, 216, 144, 0.1);
}

.hero-showcase {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-panel-label {
  margin: 0;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-panel-list li > span {
  color: var(--studio-accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
}

.hero-panel-list div {
  display: grid;
  gap: 4px;
}

.hero-panel-list strong {
  color: var(--studio-white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

.hero-panel-list small {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.72rem;
}

.hero-panel-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0;
  color: var(--studio-white);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-panel-link span {
  color: var(--studio-accent);
  font-size: 1.15rem;
}

.hero-footnote {
  position: relative;
  z-index: 2;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 58px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.33);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.59rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-footnote i {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 0;
}

.section {
  padding: clamp(92px, 10vw, 140px) 0;
}

.section-heading h2,
.why h2,
.contact h2 {
  color: var(--studio-black);
  font-size: clamp(2.75rem, 5.1vw, 5rem);
  line-height: 0.98;
}

.section-heading h2 em,
.contact h2 em {
  color: var(--studio-muted);
}

.section-heading-row {
  align-items: end;
  margin-bottom: 64px;
}

.section-heading-row > p {
  max-width: 430px;
  color: var(--studio-muted);
  font-size: 0.93rem;
  line-height: 1.72;
}

.about {
  background: var(--studio-white);
}

.about-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(70px, 10vw, 145px);
}

.about .section-heading {
  top: calc(var(--header-height) + 48px);
}

.about .section-heading h2 {
  max-width: 600px;
  font-size: clamp(2.8rem, 4.7vw, 4.65rem);
}

.about-note {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px 18px;
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--studio-black);
  border-bottom: 1px solid var(--studio-line);
}

.about-note span {
  color: var(--studio-muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-note strong {
  color: var(--studio-black);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 500;
}

.about-content > p {
  color: var(--studio-muted);
  font-size: 0.99rem;
  line-height: 1.82;
}

.about-content .about-intro {
  margin-bottom: 27px;
  color: var(--studio-black);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  font-weight: 400;
  line-height: 1.35;
}

.about-content .about-intro strong {
  color: var(--studio-black);
  font-weight: 600;
}

.about-values {
  margin-top: 46px;
  border-top: 1px solid var(--studio-black);
}

.about-values article {
  grid-template-columns: 58px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid var(--studio-line);
}

.about-values article > strong {
  color: var(--studio-accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
}

.about-values h3 {
  color: var(--studio-black);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
}

.about-values p {
  color: var(--studio-muted);
}

.services {
  background: #efefec;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
  border-bottom: 1px solid var(--studio-line);
}

.service-card,
.service-card.featured {
  position: relative;
  min-height: 280px;
  padding: 30px 4px 42px;
  color: var(--studio-black);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--studio-line);
  border-radius: 0;
  box-shadow: none;
}

.service-card:hover,
.service-card.featured:hover {
  border-color: var(--studio-black);
  box-shadow: none;
  transform: none;
}

.service-icon {
  display: none;
}

.service-card > span,
.service-card.featured > span {
  position: static;
  display: block;
  margin-bottom: 70px;
  color: var(--studio-accent);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
}

.service-card h3,
.service-card.featured h3 {
  margin: 0 0 11px;
  color: var(--studio-black);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.7vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.service-card p,
.service-card.featured p {
  max-width: 510px;
  margin: 0;
  color: var(--studio-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.projects {
  color: var(--studio-white);
  background: var(--studio-black);
}

.projects .section-kicker {
  color: var(--studio-accent);
}

.projects .section-heading h2 {
  color: var(--studio-white);
}

.projects .section-heading h2 em {
  color: rgba(255, 255, 255, 0.48);
}

.projects .section-heading-row > p {
  color: rgba(255, 255, 255, 0.52);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 88px;
}

.project-card,
.project-link-card,
.prototype-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-column: auto;
  min-width: 0;
  color: var(--studio-white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.project-card:not(.project-placeholder):hover {
  box-shadow: none;
  transform: none;
}

.project-media {
  position: relative;
  padding: clamp(14px, 2vw, 24px);
  background: var(--studio-black-soft);
  border: 1px solid rgba(255, 255, 255, 0.13);
  overflow: hidden;
}

.project-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  content: "";
  pointer-events: none;
  transition: border-color 0.25s ease;
}

.project-link-card:hover .project-media::after {
  border-color: var(--studio-accent);
}

.project-media img {
  width: 100%;
  height: auto;
  background: #e6e6e2;
  object-fit: contain;
}

.project-link-card .project-media {
  min-height: 0;
}

.live-badge {
  position: absolute;
  top: clamp(25px, 4vw, 42px);
  left: clamp(25px, 4vw, 42px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: var(--studio-white);
  background: rgba(11, 13, 16, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.live-badge i {
  width: 7px;
  height: 7px;
  background: #50d890;
  border-radius: 50%;
}

.project-info,
.project-link-card .project-info {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  align-items: start;
  gap: 28px;
  padding: 27px 0 0;
  color: var(--studio-white);
  background: transparent;
  border-top: 0;
  border-left: 0;
}

.project-index {
  padding-top: 7px;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
}

.project-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 11px;
}

.project-tags span {
  padding: 0;
  color: var(--studio-accent);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-tags span + span::before {
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.3);
  content: "/";
}

.project-info h3 {
  margin: 0 0 8px;
  color: var(--studio-white);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.1vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.project-info p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
  line-height: 1.68;
}

.project-info .project-disclaimer {
  margin: 0 0 10px;
  color: #b9c7ff;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.project-link-label,
.project-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.69rem;
  font-weight: 600;
  white-space: nowrap;
}

.project-link-label {
  color: var(--studio-white);
}

.project-link-label span {
  color: var(--studio-accent);
  font-size: 1rem;
}

.why {
  color: var(--studio-black);
  background: var(--studio-white);
}

.why::after {
  display: none;
}

.why-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(65px, 10vw, 145px);
}

.why .section-kicker.light {
  color: var(--studio-accent);
}

.why h2 {
  color: var(--studio-black);
  font-size: clamp(2.75rem, 4.8vw, 4.75rem);
}

.why h2 em {
  color: var(--studio-muted);
}

.why-intro > p:not(.section-kicker) {
  color: var(--studio-muted);
  line-height: 1.75;
}

.text-link-light {
  color: var(--studio-black);
  font-size: 0.82rem;
}

.text-link-light span {
  color: var(--studio-accent);
}

.why-list {
  border-top: 1px solid var(--studio-black);
}

.why-list article {
  grid-template-columns: 58px 1fr;
  padding: 25px 0;
  border-bottom: 1px solid var(--studio-line);
}

.why-list article > span {
  color: var(--studio-accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
}

.why-list h3 {
  color: var(--studio-black);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.why-list p {
  color: var(--studio-muted);
}

.contact {
  background: #efefec;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(55px, 9vw, 125px);
}

.contact h2 {
  font-size: clamp(2.75rem, 4.8vw, 4.75rem);
}

.contact-copy > p:not(.section-kicker) {
  color: var(--studio-muted);
  line-height: 1.75;
}

.contact-direct {
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--studio-black);
}

.contact-direct > a {
  max-width: none;
  padding: 17px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--studio-line);
  border-radius: 0;
}

.contact-direct > a:hover {
  border-color: var(--studio-black);
  box-shadow: none;
  transform: none;
}

.contact-icon {
  width: 38px;
  height: 38px;
  color: var(--studio-black);
  background: transparent;
  border: 1px solid var(--studio-line);
  border-radius: 2px;
}

.contact-icon.whatsapp-icon {
  color: #168d50;
  background: transparent;
}

.contact-direct small {
  color: var(--studio-muted);
}

.contact-direct strong {
  color: var(--studio-black);
}

.contact-form {
  gap: 20px;
  padding: clamp(25px, 4vw, 42px);
  background: var(--studio-white);
  border: 1px solid var(--studio-line);
  border-radius: 3px;
  box-shadow: none;
}

.contact-form label > span:first-child {
  color: var(--studio-black);
  font-size: 0.73rem;
  font-weight: 650;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  color: var(--studio-black);
  background: var(--studio-white);
  border: 0;
  border-bottom: 1px solid #bfc3c8;
  border-radius: 0;
}

.contact-form input:not([type="checkbox"]) {
  padding: 0 2px;
}

.contact-form textarea {
  padding: 12px 2px;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus {
  background: var(--studio-white);
  border-color: var(--studio-accent);
  box-shadow: none;
}

.consent input {
  accent-color: #365edb;
}

.site-footer {
  color: rgba(255, 255, 255, 0.53);
  background: var(--studio-black);
  border-top: 1px solid var(--studio-line-dark);
}

.footer-nav strong,
.footer-contact strong {
  color: var(--studio-white);
  font-size: 0.66rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--studio-accent);
}

.floating-whatsapp {
  width: 56px;
  height: 56px;
  background: #159653;
  border: 2px solid var(--studio-white);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.floating-whatsapp::before {
  display: none;
}

.success-body {
  background: var(--studio-black);
}

.success-page::before,
.success-glow {
  display: none;
}

.success-card {
  background: var(--studio-black-soft);
  border: 1px solid var(--studio-line-dark);
  border-radius: 3px;
  box-shadow: none;
}

.success-icon {
  color: var(--studio-white);
  background: #365edb;
  border-radius: 2px;
}

.success-card h1 {
  color: var(--studio-white);
}

.success-card .button-secondary {
  color: var(--studio-white);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 55px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 6.2vw, 5.2rem);
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 36px), 1260px);
  }

  .main-nav {
    background: rgba(11, 13, 16, 0.99);
  }

  .hero {
    min-height: auto;
    padding: 132px 0 38px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 62px;
  }

  .hero-showcase {
    width: 100%;
    min-height: 0;
    margin: 0;
  }

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .section-heading-row {
    align-items: flex-start;
    gap: 23px;
  }

  .project-info,
  .project-link-card .project-info {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .project-link-label,
  .project-status {
    grid-column: 2;
    margin-top: -12px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), 1260px);
  }

  .hero {
    padding-top: 116px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13.2vw, 4rem);
    line-height: 0.96;
  }

  .hero-actions {
    gap: 11px;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(2, max-content);
  }

  .hero-panel-list li {
    padding: 18px 0;
  }

  .hero-footnote {
    gap: 9px 11px;
    margin-top: 46px;
    font-size: 0.5rem;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .why h2,
  .contact h2,
  .about .section-heading h2 {
    font-size: clamp(2.4rem, 11.8vw, 3.4rem);
  }

  .section-heading-row {
    margin-bottom: 42px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-card,
  .service-card.featured {
    min-height: 240px;
  }

  .service-card > span,
  .service-card.featured > span {
    margin-bottom: 48px;
  }

  .projects-grid {
    gap: 62px;
  }

  .project-media {
    padding: 8px;
  }

  .live-badge {
    top: 17px;
    left: 17px;
    padding: 7px 8px;
    font-size: 0.58rem;
  }

  .project-info,
  .project-link-card .project-info {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 20px;
  }

  .project-index,
  .project-link-label,
  .project-status {
    grid-column: auto;
    margin-top: 0;
  }

  .project-info h3 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .about-note {
    grid-template-columns: 76px 1fr;
  }

  .contact-form {
    padding: 24px 18px;
  }
}

@media (max-width: 430px) {
  .brand-name {
    font-size: 0.88rem;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-role {
    display: flex;
    flex-wrap: wrap;
  }

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

  .project-tags {
    flex-wrap: wrap;
  }
}
