@font-face {
  font-family: "Quicksand";
  src: url("assets/fonts/quicksand-v37-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand";
  src: url("assets/fonts/quicksand-v37-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand";
  src: url("assets/fonts/quicksand-v37-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand";
  src: url("assets/fonts/quicksand-v37-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand";
  src: url("assets/fonts/quicksand-v37-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 70px;
  scroll-behavior: smooth;
}

/* Grundreset */
body {
  margin: 0;
  font-family:
    Quicksand,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto;
  color: #333;
}

h2 {
  color: #e0bc38;
}

/* Navigation */
header {
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.6)
  );
}

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

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: flex;
  gap: 8px 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}

.nav-row {
  display: flex;
  gap: 20px; 
  flex-wrap: nowrap;       
  white-space: nowrap  
}

.nav-row a {
  text-decoration: none;
  color: #e0bc38;
  font-weight: 500;
}

.nav-row a:hover {
  opacity: 0.6;
}

.hero {
  padding: 80px 0;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-width: 0;
}

.hero-content {
  margin-right: 30px;
  max-width: 700px;
  flex: 1;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
  color: #e0bc38;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px
}

.hero-actions a {
  margin-right: 16px;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;

  font-size: 16px;
  font-weight: 500;
  text-decoration: none;

  cursor: pointer;
}

.button.primary {
  background-color: #e0bc38;
  color: white;
  border: none;
  font-family: inherit;
}

.button.secondary {
  background-color: transparent;
  color: #e0bc38;
  border: 1px solid #e0bc38;
}

.button:hover {
  opacity: 0.6;
}

.hero-card {
  width: 320px;
  padding: 20px;

  background: linear-gradient(180deg, #ffffff 50%, #fafafa);
  border: 1px solid #e8e8e8;
  border-radius: 14px;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);

  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-card h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  color: #e0bc38;
}

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

.hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  padding: 10px 0;
  border-top: 1px solid #eeeeee;
}

.hero-card li:first-child {
  border-top: none;
}

.hero-card li::before {
  content: "✓";
  line-height: 1;
  margin-top: 2px;
  font-weight: 700;
  color: #e0bc38;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.products {
  padding: 70px 0;
  border-top: 1px solid #eeeeee;
}

.products h2 {
  margin: 0 0 12px 0;
  font-size: 28px;
}

.section-lead {
  margin: 0 0 28px 0;
  max-width: 70ch;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.product-card {
  padding: 22px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.product-tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(224, 188, 56, 0.15);
  color: #e0bc38;
  margin-bottom: 12px;
}

.product-tag.outline {
  background: transparent;
  border: 1px solid #e0bc38;
  color: #e0bc38;
}

.product-card h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
}

.product-card p {
  margin: 0 0 16px 0;
  line-height: 1.7;
}

.product-link {
  text-decoration: none;
  font-weight: 600;
  color: #e0bc38;
}

.product-link:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .hero-inner {
    flex-direction: column;
  }

  .hero-card {
    width: 100%;
    margin-top: 50px;
  }

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

.vision {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff, #fafafa);
  border-top: 1px solid #e0bc38;
  border-bottom: 1px solid #e0bc38;
}

.vision h2 {
  margin: 0 0 12px 0;
  font-size: 28px;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.vision-card {
  padding: 22px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.vision-card h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
}

.vision-card p {
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }
}

.about {
  padding: 70px 0;
}

.about h2 {
  margin: 0 0 20px 0;
  font-size: 28px;
}

.about-content {
  max-width: 75ch;
}

.about-lead {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 18px;
}

.about p {
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact {
  padding: 70px 0;
  border-top: 1px solid #eeeeee;
}

.contact-alt a {
  text-decoration: none;
  color: #e0bc38;
}

.contact-alt a:hover {
  opacity: 0.6;
}

.contact h2 {
  margin: 0 0 12px 0;
  font-size: 28px;
}

.contact-form {
  max-width: 600px;
  margin-top: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #dddddd;
  font-family: inherit;
  font-size: 15px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e0bc38;
}

.footer {
  margin-top: 80px;
  padding: 0 24px;
  border-top: 1px solid #eeeeee;
  background: #fafafa;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0;
}

.footer-brand p {
  margin: 6px 0 0 0;
  color: #777;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 50px;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  color: #333;
}

.footer-links a:hover {
  color: #e0bc38;
}

.footer-brand a {
  text-decoration: none;
  color: #333;
}

.footer-brand a:hover {
  color: #e0bc38;
}

.footer-bottom {
  border-top: 1px solid #eeeeee;
  padding: 16px 0;
  font-size: 14px;
  color: #777;
}

@media (max-width: 860px) {
  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }
}

.product-hero {
  padding: 80px 0;
}

.product-hero-inner {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.product-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(224, 188, 56, 0.15);
  color: #e0bc38;
  margin-bottom: 12px;
}

.product-hero-content h1 {
  margin: 0 0 12px 0;
  font-size: 52px;
  color: #e0bc38;
}

.product-lead {
  margin: 0 0 22px 0;
  max-width: 65ch;
  font-size: 18px;
  line-height: 1.7;
}

.store-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  align-items: center;
}

.store-links.bottom {
  align-items: center;
  justify-content: center;
}

.product-note {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.product-hero-media {
  width: 300px;
}

.product-shot {
  border-radius: 18px;
  border: 1px solid #e8e8e8;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  padding: 16px;
}

.placeholder {
  height: 280px;
  border-radius: 12px;
  border: 1px dashed #e0bc38;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0bc38;
  font-weight: 600;
}

.product-section {
  padding: 70px 0;
  border-top: 1px solid #eeeeee;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.feature-card {
  padding: 22px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.feature-card h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  line-height: 1.7;
}

.product-text {
  max-width: 75ch;
}

.product-text p {
  margin: 0 0 16px 0;
  line-height: 1.7;
}

.product-cta {
  padding: 70px 0;
  border-top: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-cta-inner {
  text-align: center;
  max-width: 850px;
}

@media (max-width: 860px) {
  .product-hero-inner {
    flex-direction: column;
  }

  .product-hero-media {
    width: 100%;
  }

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

.store-badge {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.store-badge img {
  height: 44px;
  width: auto;
  display: block;
}

.store-badge:hover {
  opacity: 0.9;
}

.store-badge.disabled {
  opacity: 0.55;
  pointer-events: none;
}

.store-note {
  position: absolute;
  right: -6px;
  top: -10px;
  font-size: 12px;
  font-weight: 700;
  color: #e0bc38;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  padding: 3px 8px;
}

.product-logo {
  border-radius: 18px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
  background: linear-gradient(180deg, #ffffff 50%, #fafafa);
}

.product-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

.carousel {
  position: relative;
  padding: 0 24px;
  margin-top: clamp(0px, calc(40px - 2vw), 30px);
}

.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 17/5;
  border-radius: 18px;
  overflow: hidden;
  touch-action: pan-y;
}

.carousel-slide {
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition:
    transform 260ms ease,
    filter 260ms ease;
  opacity: 0;
  cursor: pointer;
}

.carousel-slide img {
  height: 100%;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 clamp(3px, 0.5vw, 15px) rgba(0, 0, 0, 0.2));
  transition: filter 260ms ease;
}

/* Positionen: links (-1), mitte (0), rechts (1) */
.carousel-slide[data-pos="0"] {
  opacity: 1;
  filter: brightness(1);
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
  cursor: default;
}

.carousel-slide[data-pos="-1"] {
  opacity: 0.5;
  transform: translate(-100%, -50%) scale(0.7);
  z-index: 2;
}

.carousel-slide[data-pos="1"] {
  opacity: 0.5;
  transform: translate(0, -50%) scale(0.7);
  z-index: 2;
}

/* Für kleines Bild */
.carousel-slide.small[data-pos="-1"] {
  transform: translate(-130%, -50%) scale(0.7);
}
.carousel-slide.small[data-pos="1"] {
  transform: translate(30%, -50%) scale(0.7);
}

.carousel-slide[data-pos="0"]:hover {
  transform: translate(-50%, -50%) scale(1.05);
}
.carousel-slide[data-pos="-1"]:hover {
  transform: translate(-100%, -50%) scale(0.75);
}
.carousel-slide[data-pos="1"]:hover {
  transform: translate(0, -50%) scale(0.75);
}

/* Für kleines Bild */
.carousel-slide.small[data-pos="-1"]:hover {
  transform: translate(-130%, -50%) scale(0.75);
}
.carousel-slide.small[data-pos="1"]:hover {
  transform: translate(30%, -50%) scale(0.75);
}

.carousel-slide[data-pos="0"]:hover img {
  filter: drop-shadow(0 0 clamp(3px, 0.75vw, 15px) rgba(0, 0, 0, 0.3));
}
.carousel-slide[data-pos="-1"]:hover img {
  filter: drop-shadow(0 0 clamp(3px, 0.75vw, 15px) rgba(0, 0, 0, 0.3));
}
.carousel-slide[data-pos="1"]:hover img {
  filter: drop-shadow(0 0 clamp(3px, 0.75vw, 15px) rgba(0, 0, 0, 0.3));
}

.carousel-copy {
  max-width: 75ch;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
  text-align: center;
  margin: 0 auto;
  padding: 0 24px;
}

.carousel-copy.is-fading {
  opacity: 0;
  transform: translateY(4px);
}

.carousel-title {
  margin: 0 0 6px 0;
  text-align: center;
}

.carousel-text {
  margin: 0;
  line-height: 1.7;
  color: #333;
  font-size: 18px;
}

.roadmap {
  border-top: 1px solid #eeeeee;
  padding: 70px 0;
}

.timeline {
  margin-top: 40px;
  padding-left: 28px;
  border-left: 2px solid #e8e8e8;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  transition: transform 300ms ease;
}

.timeline-item:hover {
  transform: scale(1.03) translateX(13px) translateY(-3px);
}

.timeline-dot {
  position: absolute;
  left: -19px;
  top: 7px;
  width: 12px;
  height: 12px;
  background: #e0bc38;
  border-radius: 50%;
}

.timeline-content h3 {
  margin: 0 0 8px 0;
  color: #e0bc38;
}

.timeline-content ul {
  margin: 0;
  padding-left: 18px;
}

.timeline-content li {
  margin-bottom: 6px;
}

.feedback {
  border-top: 1px solid #eeeeee;
  padding: 70px 0;
}

iframe {
  border: 2px solid #e8e8e8;
}

.support {
  border-top: 1px solid #eeeeee;
  padding: 70px 0;
}

.support a {
  text-decoration: none;
  color: #e0bc38;
}

.support a:hover {
  opacity: 0.6;
}

.support-content {
  max-width: 75ch;
  line-height: 1.7;
}

.privacy {
  border-top: 1px solid #eeeeee;
  padding: 70px 0;
}

.privacy a {
  text-decoration: none;
  color: #e0bc38;
}

.privacy a:hover {
  opacity: 0.6;
}

.faq {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.04);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  background: transparent;
  border: 0;
  cursor: pointer;

  font: inherit;
  font-weight: 600;
  color: #333;
}

.faq-question:hover {
  background: rgba(224, 188, 56, 0.06);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  line-height: 1;
  border: 1px solid #e8e8e8;
  color: #e0bc38;
  font-weight: 700;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 220ms ease;
}

.faq-answer-inner {
  padding: 0 18px 16px 18px;
  color: #333;
  line-height: 1.7;
}

.tutorials {
  border-top: 1px solid #eeeeee;
  padding: 70px 0;
}

.tutorial-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tutorial-card {
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.04);
  padding: 16px;
}

.video-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  aspect-ratio: 16 / 9;
  position: relative;
}

.tutorial-card h3 {
  margin: 14px 0 6px 0;
  font-size: 18px;
  color: #e0bc38;
}

.tutorial-card p {
  margin: 0;
  line-height: 1.6;
  color: #333;
}

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

@media (max-width: 500px) {
  .tutorial-grid {
    grid-template-columns: 1fr;
  }
}

.video-play {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  display: block;
  position: relative;
}

.video-play img {
  position: absolute;
  top: -3px;
  left: -3px;
  display: block;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  object-fit: cover;
  transition: transform 200ms ease, filter 200ms ease;
  will-change: transform, filter;
}

.video-play:hover img {
  transform: scale(1.02);
  filter: brightness(0.85);
}

.video-embed::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,0.35) 100%
  );

  pointer-events: none;
}

.play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
}

.play-badge::before {
  position: absolute;
  content: "";
  width: 70px;
  height: 50px;
  border-radius: 15px;

  background: #e0bc3854;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow:
    0 0 15px rgba(0,0,0,0.25);

  display: block;
  z-index: -1;
}

.play-badge::after {
  content: "";
  position: absolute;

  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #fff;

  transform: translateX(1px);
}

/* Modal */
.video-modal[hidden] { display: none; }

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;      
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal-panel {
  position: relative;
  width: min(960px, 92vw);
  border-radius: 16px;
  background: #111111;
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
  overflow: hidden;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: white;
  cursor: pointer;
}

.video-modal-frame {
  aspect-ratio: 16 / 9;
}

.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.principles {
  border-top: 1px solid #eeeeee;
  padding: 70px 0;
}

.principles-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
}

.principle-card {
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.04);
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.principle-card h3 {
  margin: 0 0 8px 0;
  color: #e0bc38;
  font-size: 18px;
}

.principle-card p {
  margin: 0;
  line-height: 1.7;
  color: #333;
}

.principle-desc {
  min-height: var(--paragraph-min-height, auto);
}

.principles-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(224,188,56,0.10);
  border: 1px solid rgba(224,188,56,0.25);
  color: #333;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }
}

.principles strong {
  color: #e0bc38;
  font-weight: 400;
}

.principle-more {
  margin-top: auto;
  padding-top: 12px;
}

.principle-more summary {
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  color: #e0bc38;
}

.principle-more-content {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eeeeee;
  color: #333;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.principle-more[open] .principle-more-content {
  opacity: 1;
  transform: translateY(0);
}

.principle-more-content p {
  margin-top: 10px;
}

.principles-grid.no-stretch {
  align-items: start;
}

.hero-content.automation h1 {
  margin-top: 0;
}

.legal {
  padding: 70px 24px;
}

.legal h1 {
  margin: 0 0 18px 0;
  color: #e0bc38;
}

.legal h2 {
  margin: 26px 0 10px 0;
  font-size: 18px;
  color: #e0bc38;
}

.legal h3 {
  color: #e0bc38;
}

.legal p {
  margin: 0 0 12px 0;
  line-height: 1.7;
  max-width: 75ch;
}

.legal a {
  text-decoration: none;
  color: #e0bc38;
}

.legal a:hover {
  opacity: 0.6;
}

.legal strong {
  color: #e0bc38;
}

.privacy.container {
  border-top: none;
  padding: 70px 24px;
}

.privacy.container h1 {
  color: #e0bc38;
}

.privacy.container h2 {
  color: #e0bc38;
}

.privacy.container h3 {
  color: #e0bc38;
}

.privacy.container h4 {
  color: #e0bc38;
}

.privacy.container a:hover {
  opacity: 0.6;
}