:root {
  --blue: #2365f2;
  --blue-deep: #1f2fbc;
  --indigo: #4a30d9;
  --violet: #7c3ff2;
  --cyan: #20d7e8;
  --green: #23c57a;
  --yellow: #ffd166;
  --red: #ff6f61;
  --ink: #172038;
  --muted: #6f7891;
  --soft: #f6f7ff;
  --line: #e4e8f5;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(34, 49, 112, 0.18);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  width: min(1560px, calc(100% - clamp(32px, 3vw, 120px)));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(32, 215, 232, 0.42), transparent 26%),
    linear-gradient(128deg, #1e66ee 0%, #4227ca 52%, #853ff0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -96px;
  height: 180px;
  background: var(--white);
  transform: rotate(-4deg);
  transform-origin: left center;
  z-index: 1;
}

.nav {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #2032ba;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(16, 25, 83, 0.2);
}

.brand-mark img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.82);
}

.nav-menu a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-login {
  margin-left: 18px;
}

.nav-signup {
  padding: 10px 17px;
  color: #2230bd;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(19, 27, 89, 0.18);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(64px, 7vw, 128px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(56px, 7vh, 96px) 0 clamp(140px, 16vh, 210px);
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn-primary {
  color: #2031bb;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(13, 27, 91, 0.24);
}

.btn-secondary {
  color: rgba(255, 255, 255, 0.9);
  padding-inline: 6px;
}

.btn-secondary:hover {
  color: var(--white);
}

.hero-visual {
  position: relative;
  min-height: clamp(420px, 35vw, 560px);
}

.browser-card,
.dark-illustration,
.dashboard-illustration {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: #10172d;
  box-shadow: var(--shadow);
}

.browser-card {
  padding: 18px;
  transform: rotate(-1.5deg);
}

.browser-dots {
  display: flex;
  gap: 7px;
  padding-bottom: 15px;
}

.browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff6f61;
}

.browser-dots span:nth-child(2) {
  background: var(--yellow);
}

.browser-dots span:nth-child(3) {
  background: var(--green);
}

.browser-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.86fr;
  gap: 18px;
}

.site-preview,
.google-panel {
  min-height: clamp(260px, 17vw, 340px);
  padding: 24px;
  border-radius: 10px;
  background: #f8fbff;
}

.preview-nav,
.preview-title,
.preview-line,
.preview-button {
  border-radius: 999px;
  background: #dce4f5;
}

.preview-nav {
  width: 56%;
  height: 13px;
}

.preview-title {
  width: 82%;
  height: 42px;
  margin-top: 38px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.preview-line {
  width: 72%;
  height: 10px;
  margin-top: 14px;
}

.preview-line.short {
  width: 54%;
}

.preview-button {
  width: 120px;
  height: 34px;
  margin-top: 28px;
  background: var(--green);
}

.google-panel {
  color: var(--ink);
  background: var(--white);
}

.pin-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  font-weight: 850;
}

.google-panel strong {
  display: block;
  margin-top: 26px;
  font-size: 18px;
}

.google-panel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.rating-row {
  display: flex;
  gap: 5px;
  margin-top: 28px;
}

.rating-row i {
  width: 18px;
  height: 18px;
  clip-path: polygon(50% 0, 63% 34%, 100% 37%, 72% 59%, 82% 100%, 50% 78%, 18% 100%, 28% 59%, 0 37%, 37% 34%);
  background: var(--yellow);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 250px;
  padding: 15px 17px;
  color: var(--ink);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 22px 60px rgba(14, 22, 76, 0.2);
}

.floating-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.floating-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.floating-icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.booking-card {
  right: 12px;
  bottom: 36px;
}

.care-card {
  left: -22px;
  top: 36px;
}

.care-card .floating-icon {
  background: var(--violet);
}

.hero-shape,
.cta-shape {
  position: absolute;
  z-index: 2;
  opacity: 0.85;
  filter: drop-shadow(0 16px 24px rgba(7, 14, 61, 0.18));
}

.shape-one {
  width: 86px;
  height: 86px;
  right: 9%;
  top: 118px;
  background: var(--cyan);
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
}

.shape-two {
  width: 56px;
  height: 56px;
  left: 46%;
  top: 160px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(24deg);
}

.shape-three {
  width: 62px;
  height: 62px;
  right: 24%;
  bottom: 122px;
  border-radius: 50%;
  background: var(--green);
}

.shape-four {
  width: 72px;
  height: 72px;
  left: 8%;
  bottom: 96px;
  background: rgba(255, 255, 255, 0.28);
  clip-path: polygon(25% 0, 100% 35%, 75% 100%, 0 65%);
}

.section {
  position: relative;
  width: 100%;
  padding: clamp(116px, 8vw, 160px) 0;
}

.intro {
  padding-top: 92px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(82px, 7vw, 132px);
  align-items: center;
}

.two-col.reverse {
  grid-template-columns: minmax(480px, 1.05fr) minmax(0, 0.95fr);
}

.section-copy h2,
.center-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: 0;
}

.section-copy p,
.center-copy p,
.final-cta p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.dark-illustration {
  position: relative;
  min-height: clamp(350px, 27vw, 470px);
  padding: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(32, 215, 232, 0.22), transparent 34%),
    #11182f;
}

.code-window {
  width: 78%;
  padding: 24px;
  border-radius: 10px;
  background: #0a1025;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.code-bar {
  width: 92px;
  height: 12px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.code-window p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 16px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.code-window span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.mini-card {
  position: absolute;
  right: 34px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 18px 40px rgba(5, 10, 34, 0.24);
}

.mini-green {
  top: 86px;
  border-left: 5px solid var(--green);
}

.mini-yellow {
  bottom: 74px;
  border-left: 5px solid var(--yellow);
}

.dashboard-illustration {
  min-height: clamp(340px, 26vw, 460px);
  padding: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 209, 102, 0.2), transparent 26%),
    linear-gradient(135deg, #13215d, #331d93);
}

.status-panel {
  padding: 22px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.status-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
}

.status-panel small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.progress-list {
  display: grid;
  gap: 18px;
  margin: 36px 0;
}

.progress-list div {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.progress-list span {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.success-badge {
  display: inline-flex;
  padding: 12px 16px;
  color: #17375d;
  background: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.collaboration {
  background: #f4f3ff;
}

.center-copy {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.center-copy.light {
  color: var(--white);
}

.center-copy.light p {
  color: rgba(255, 255, 255, 0.74);
}

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

.service-grid article {
  padding: 32px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(51, 47, 116, 0.09);
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  border-radius: 10px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(35, 101, 242, 0.22);
}

.service-icon svg,
.feature-icon svg,
.package-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-grid h3,
.feature-grid h3,
.price-card h3,
.timeline h3 {
  margin: 20px 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.service-grid p,
.feature-grid p,
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.features {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 18%, rgba(32, 215, 232, 0.28), transparent 24%),
    linear-gradient(135deg, #1c39c3 0%, #4b27c6 52%, #7934d7 100%);
}

.features::before,
.features::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  height: 130px;
  background: var(--white);
  transform: rotate(-4deg);
  z-index: 0;
}

.features::before {
  top: -82px;
}

.features::after {
  bottom: -82px;
}

.features .container {
  position: relative;
  z-index: 1;
}

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

.feature-grid article {
  min-height: 185px;
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 26px 55px rgba(8, 15, 60, 0.18);
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 900;
}

.feature-icon.cyan { background: var(--cyan); }
.feature-icon.violet { background: var(--violet); }
.feature-icon.green { background: var(--green); }
.feature-icon.yellow { background: var(--yellow); color: #4b3b08; }
.feature-icon.red { background: var(--red); }
.feature-icon.blue { background: var(--blue); }

.pricing {
  padding-top: clamp(148px, 9vw, 190px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(30, 44, 104, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.featured-card {
  transform: translateY(-18px);
  border-color: rgba(35, 101, 242, 0.24);
  box-shadow: 0 30px 70px rgba(35, 101, 242, 0.18);
}

.sale-card {
  position: relative;
  border: 2px solid rgba(35, 197, 122, 0.72);
  background:
    linear-gradient(180deg, rgba(35, 197, 122, 0.07), transparent 145px),
    var(--white);
  box-shadow: 0 34px 76px rgba(35, 101, 242, 0.2);
}

.sale-card::before {
  content: "Empfohlen";
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 7px 16px;
  color: #072e20;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(35, 197, 122, 0.28);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.price-card.is-hovered {
  transform: translateY(-10px);
  border-color: rgba(35, 101, 242, 0.22);
  box-shadow: 0 28px 70px rgba(35, 101, 242, 0.16);
}

.featured-card.is-hovered {
  transform: translateY(-22px);
}

.price-card h3 {
  margin: 18px 0 18px;
  font-size: 27px;
  line-height: 1.12;
}

.price-label {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.discount-label {
  display: grid;
  justify-items: end;
  gap: 3px;
}

.discount-label strong {
  color: #087547;
  font-size: 15px;
  font-weight: 900;
}

.discount-label span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

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

.package-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(35, 101, 242, 0.2);
}

.featured-card .package-icon {
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

.price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.price-row div,
.total-price {
  border: 1px solid #e8ecf7;
  border-radius: 10px;
  background: #f8faff;
}

.price-row div {
  padding: 15px;
}

.price-row span,
.total-price span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.price-row strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
}

.discounted-price s {
  display: inline-block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.discounted-price strong {
  margin-top: 3px;
  color: #087547;
  font-size: clamp(28px, 2.5vw, 36px);
}

.total-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 26px;
  padding: 16px;
  color: var(--blue);
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1;
  font-weight: 900;
}

.featured-card .total-price {
  color: var(--violet);
  background: linear-gradient(135deg, #f4f8ff, #f7f3ff);
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 14px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.btn-card {
  margin-top: auto;
  color: var(--blue);
  background: #eef4ff;
}

.featured-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 18px 44px rgba(35, 101, 242, 0.24);
}

.pricing-note {
  margin: 28px auto 0;
  max-width: 650px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.benefits {
  padding: 8px 0 90px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.process {
  background: var(--soft);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.timeline article {
  position: relative;
  padding: 30px 26px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 18px 55px rgba(51, 47, 116, 0.08);
}

.timeline article::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -24px;
  width: 24px;
  height: 2px;
  background: #ccd4eb;
}

.timeline article:last-child::after {
  display: none;
}

.timeline span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 130px 0 118px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(32, 215, 232, 0.28), transparent 28%),
    linear-gradient(135deg, #2365f2 0%, #4429ca 54%, #813bdc 100%);
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 0.82fr);
  gap: clamp(70px, 7vw, 128px);
  align-items: start;
}

.final-cta p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .btn-primary {
  margin-top: 34px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(5, 10, 34, 0.24);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #3d4660;
  font-size: 12px;
  font-weight: 850;
}

.contact-form .form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: 0;
  transition: border 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(35, 101, 242, 0.12);
}

.btn-form {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.btn-form:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.form-privacy {
  margin: -4px 0 0;
  color: #687188;
  font-size: 12px;
  line-height: 1.55;
}

.form-privacy a,
.footer-links a,
.legal-content a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-privacy a:hover,
.footer-links a:hover,
.legal-content a:hover {
  color: var(--blue);
}

.cta-one {
  width: 78px;
  height: 78px;
  top: 74px;
  right: 11%;
  border-radius: 50%;
  background: var(--yellow);
}

.cta-two {
  width: 70px;
  height: 70px;
  left: 9%;
  bottom: 70px;
  background: var(--cyan);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.footer {
  padding: 28px 0;
  color: #777f96;
  background: #f8f9ff;
  font-size: 13px;
}

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

.footer-row > div,
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links a {
  font-weight: 750;
}

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background: #f8f9ff;
}

.legal-header {
  padding: 20px 0;
  color: var(--white);
  background: #111936;
}

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

.legal-nav .brand {
  color: var(--white);
  text-decoration: none;
}

.back-link {
  color: #dce2f5;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.back-link:hover {
  color: var(--white);
}

.legal-main {
  padding: 72px 0 88px;
}

.legal-content {
  max-width: 780px;
}

.legal-content h1 {
  max-width: none;
  margin-bottom: 18px;
  color: var(--ink);
  overflow-wrap: anywhere;
  font-size: 56px;
  line-height: 1.06;
}

.legal-intro {
  margin-bottom: 44px;
  color: #626b82;
  font-size: 17px;
}

.legal-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 16px;
  font-size: 25px;
}

.legal-section h3 {
  margin: 24px 0 10px;
  font-size: 18px;
}

.legal-section p,
.legal-section li {
  color: #4d566d;
}

.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  padding-left: 20px;
}

.legal-placeholder {
  display: inline;
  padding: 2px 5px;
  color: #7a3f00;
  background: #fff0c2;
  font-weight: 800;
}

.legal-notice {
  margin: 0 0 36px;
  padding: 18px 20px;
  border-left: 4px solid var(--yellow);
  color: #553b00;
  background: #fff8df;
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 40px, 1040px);
  }

  .hero-content,
  .two-col,
  .two-col.reverse,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 56px;
  }

  .hero-visual {
    max-width: 760px;
    width: 100%;
  }
}

@media (max-width: 960px) {
  .container {
    width: min(100% - 32px, 720px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    color: var(--ink);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 24px 70px rgba(5, 10, 34, 0.24);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 10px;
  }

  .nav-login {
    margin-left: 0;
  }

  .nav-signup {
    color: var(--white);
    background: var(--blue);
    box-shadow: none;
    text-align: center;
  }

  .hero-content,
  .two-col,
  .two-col.reverse,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 46px;
    padding-top: 46px;
  }

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

  .service-grid,
  .feature-grid,
  .pricing-grid,
  .benefit-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-card {
    transform: none;
  }

  .featured-card.is-hovered,
  .price-card.is-hovered {
    transform: translateY(-6px);
  }

  .timeline article::after {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    background:
      linear-gradient(180deg, #ffffff 0 34%, #f8f9ff 34% 100%);
  }

  .container {
    width: min(100% - 28px, 420px);
  }

  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 15% 18%, rgba(255, 209, 102, 0.34), transparent 24%),
      radial-gradient(circle at 86% 28%, rgba(32, 215, 232, 0.42), transparent 28%),
      linear-gradient(145deg, #1e66ee 0%, #3928c6 58%, #7c3ff2 100%);
  }

  .hero::after {
    bottom: -66px;
    height: 124px;
    transform: rotate(-7deg);
  }

  .nav {
    padding: 18px 0;
  }

  .nav-menu {
    top: 68px;
  }

  .hero-content {
    gap: 28px;
    min-height: auto;
    padding: 28px 0 108px;
  }

  .hero-copy h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .hero-copy p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
  }

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

  .btn-secondary {
    min-height: 44px;
    padding: 0 18px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
  }

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

  .browser-card {
    padding: 12px;
    transform: rotate(-1deg) translateX(8px);
  }

  .browser-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 10px;
  }

  .site-preview,
  .google-panel {
    min-height: 178px;
    padding: 16px;
  }

  .preview-title {
    height: 28px;
    margin-top: 26px;
  }

  .preview-button {
    width: 92px;
    height: 28px;
    margin-top: 22px;
  }

  .pin-icon {
    width: 36px;
    height: 36px;
  }

  .google-panel strong {
    margin-top: 20px;
    font-size: 15px;
  }

  .google-panel span {
    font-size: 11px;
  }

  .rating-row {
    gap: 3px;
    margin-top: 20px;
  }

  .rating-row i {
    width: 13px;
    height: 13px;
  }

  .floating-card {
    width: min(238px, 74vw);
    padding: 12px 14px;
  }

  .booking-card {
    right: -2px;
    bottom: 6px;
  }

  .care-card {
    left: -3px;
    top: auto;
    bottom: 78px;
  }

  .floating-card strong {
    font-size: 12px;
  }

  .floating-card small {
    font-size: 10px;
  }

  .floating-icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .shape-one,
  .shape-two {
    display: none;
  }

  .shape-three {
    right: 8%;
    bottom: 74px;
    width: 38px;
    height: 38px;
  }

  .shape-four {
    left: 6%;
    bottom: 44px;
    width: 46px;
    height: 46px;
  }

  .section {
    padding: 68px 0;
  }

  .intro {
    padding-top: 50px;
  }

  .two-col,
  .two-col.reverse,
  .cta-grid {
    gap: 32px;
  }

  .section-copy h2,
  .center-copy h2,
  .final-cta h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .section-copy p,
  .center-copy p,
  .final-cta p {
    font-size: 15px;
    line-height: 1.7;
  }

  .center-copy {
    margin-bottom: 30px;
    text-align: left;
  }

  .dark-illustration {
    min-height: 292px;
    transform: rotate(-1deg);
  }

  .dashboard-illustration {
    min-height: 284px;
    transform: rotate(1deg);
  }

  .dark-illustration,
  .dashboard-illustration,
  .contact-form {
    padding: 22px;
  }

  .code-window {
    width: 86%;
    padding: 18px;
  }

  .code-window p {
    margin: 13px 0;
    font-size: 12px;
  }

  .mini-card {
    right: 16px;
    padding: 11px 14px;
    font-size: 12px;
  }

  .mini-green {
    top: 66px;
  }

  .mini-yellow {
    bottom: 46px;
  }

  .service-grid {
    display: flex;
    gap: 14px;
    width: calc(100% + 14px);
    margin-right: -14px;
    overflow-x: auto;
    padding: 3px 14px 18px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-grid::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .service-grid article {
    flex: 0 0 78%;
    min-height: 246px;
    padding: 24px;
    scroll-snap-align: start;
  }

  .service-grid article:nth-child(even) {
    margin-top: 26px;
  }

  .features {
    background:
      radial-gradient(circle at 80% 11%, rgba(32, 215, 232, 0.28), transparent 22%),
      linear-gradient(155deg, #1c39c3 0%, #4b27c6 58%, #7934d7 100%);
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .feature-grid article {
    min-height: 214px;
    padding: 20px 16px;
  }

  .feature-grid article:nth-child(3),
  .feature-grid article:nth-child(6) {
    transform: translateY(18px);
  }

  .feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .feature-grid h3,
  .service-grid h3,
  .timeline h3 {
    margin-top: 16px;
    font-size: 16px;
  }

  .feature-grid p,
  .service-grid p,
  .timeline p {
    font-size: 12px;
    line-height: 1.55;
  }

  .pricing {
    padding-top: 96px;
  }

  .pricing-grid {
    display: flex;
    gap: 14px;
    width: calc(100% + 14px);
    margin-right: -14px;
    overflow-x: auto;
    padding: 20px 14px 24px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .price-card {
    flex: 0 0 86%;
    min-height: 0;
    padding: 24px;
    scroll-snap-align: center;
  }

  .sale-card {
    order: -1;
  }

  .sale-card::before {
    left: 24px;
    transform: none;
  }

  .price-card h3 {
    font-size: 24px;
  }

  .price-row {
    gap: 8px;
  }

  .price-row div {
    padding: 13px 11px;
  }

  .total-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    font-size: 29px;
  }

  .pricing-note {
    margin-top: 8px;
    text-align: left;
  }

  .benefits {
    padding: 8px 0 66px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    font-size: 12px;
  }

  .benefit-grid div {
    padding: 12px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .timeline {
    display: block;
    position: relative;
  }

  .timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 18px;
    width: 2px;
    background: linear-gradient(var(--blue), var(--violet));
  }

  .timeline article {
    margin-left: 42px;
    padding: 0 0 34px 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .timeline article:last-child {
    padding-bottom: 0;
  }

  .timeline span {
    position: absolute;
    left: -42px;
    width: 36px;
    height: 36px;
    box-shadow: 0 0 0 8px var(--soft);
  }

  .final-cta {
    padding: 78px 0 72px;
  }

  .contact-form {
    border-radius: 12px;
  }

  .footer {
    padding-bottom: 34px;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-row > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .legal-nav {
    align-items: flex-start;
  }

  .legal-main {
    padding: 52px 0 68px;
  }

  .legal-content h1 {
    font-size: 32px;
  }
}
