:root {
  --bg: #f5f5f2;
  --surface: #ffffff;
  --surface-muted: #ecece8;
  --border: #d9d9d2;
  --text: #20201c;
  --text-muted: #5f5f56;
  --accent: #2d2b28;
  --accent-hover: #171614;
  --shadow: 0 18px 40px rgba(32, 32, 28, 0.08);
  --radius: 20px;
}

:is(.landing-hero, .landing-section, .landing-footer) * {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #f9f8f4 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.5;
}

:is(.landing-hero, .landing-section, .landing-footer) a {
  color: inherit;
  text-decoration: none;
}

.landing-container {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-left: clamp(24px, 5vw, 72px);
  padding-right: clamp(24px, 4vw, 48px);
}

.landing-section {
  padding: 120px 0;
}

.landing-section .section-title {
  margin: 0 0 20px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.landing-section .section-text {
  max-width: 760px;
  margin: 0 0 56px;
  color: var(--text-muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
}

.landing-hero {
  padding: 40px 0 88px;
  background-image: url("/storage/uploads/uploads/IHpPNEbC1YPWccNAW4YTMCODPQ9y3HkWCtQzPUZ1.webp");
  background-position: calc(100% + 340px) center;
  background-size: cover;
  background-repeat: no-repeat;
}

.landing-hero .hero-header {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.landing-hero .hero-inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-left: clamp(24px, 5vw, 72px);
  padding-right: clamp(24px, 4vw, 48px);
}

.landing-hero .hero-logo {
  display: block;
  width: min(220px, 42vw);
  height: auto;
  margin: 0 auto;
}

.landing-hero .hero-card {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 56px 0 28px;
  background: transparent;
}

.landing-hero .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 10px;
  max-width: min(760px, 50vw);
}

.landing-hero .hero-eyebrow {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 32px;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.8);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}

.landing-hero .hero-title {
  margin: 0 0 32px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.5rem, 1.1rem + 3.2vw, 5rem);
  font-weight: 700;
  max-width: min(760px, 50vw);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.landing-hero .hero-description {
  max-width: min(700px, 46vw);
  margin: 0 0 44px;
  color: var(--text-muted);
  font-size: 1.18rem;
  line-height: 1.82;
}

.landing-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.landing-hero .hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.landing-hero .hero-button-primary {
  background: var(--accent);
  color: #fff;
}

.landing-hero .hero-button-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.landing-hero .hero-button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.landing-hero .hero-button-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.landing-hero .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(100%, 1100px);
  margin-top: 250px;
}

.landing-hero .hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 0;
  padding: 18px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.46);
}

.landing-hero .hero-stat strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.landing-hero .hero-stat span {
  display: block;
  max-width: 100%;
  color: var(--text-muted);
  line-height: 1.65;
}

.placeholder {
  min-height: 100%;
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  border: none;
  background: transparent;
}

.hero-visual .placeholder {
  min-height: 420px;
}

.landing-section .grid {
  display: grid;
  gap: 32px;
}

.landing-section .grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-section .grid-3-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.landing-section .grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-section .card {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(32, 32, 28, 0.05);
}

.landing-section .card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
}

.landing-section .card p,
.landing-section .card li {
  color: var(--text-muted);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.75;
}

.landing-section .card ul {
  padding-left: 18px;
  margin: 0;
}

.landing-section .compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.landing-section .compare .card:first-child {
  border-color: #c8dfd9;
  background: #f4fbf8;
}

.landing-section .steps {
  counter-reset: step;
}

.landing-section .step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--surface-muted);
  font-weight: 700;
}

.landing-section .example-card .placeholder {
  min-height: 220px;
  margin-bottom: 24px;
}

.landing-section .price {
  font-size: 2rem;
  font-weight: 700;
  margin: 12px 0 24px;
  color: var(--text);
}

.landing-section .case-metric {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 700;
  color: #7d5f38;
}

.landing-section .faq-item + .faq-item {
  margin-top: 20px;
}

.landing-section .faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  color: var(--text);
}

.landing-section .faq-item summary::-webkit-details-marker {
  display: none;
}

.landing-section .faq-item p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-family: "Segoe UI", Arial, sans-serif;
}

.landing-section.cta {
  padding-bottom: 120px;
}

.landing-section .cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 40px;
  background: #1d2d29;
  color: #fff;
  border-radius: calc(var(--radius) + 6px);
}

.landing-section .cta-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Segoe UI", Arial, sans-serif;
}

.landing-footer {
  padding: 28px 0 40px;
  color: var(--text-muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .landing-section {
    padding: 88px 0;
  }

  .landing-section .grid-3,
  .landing-section .grid-2,
  .landing-section .compare,
  .landing-section .cta-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .landing-section {
    padding: 72px 0;
  }

  .landing-hero {
    padding: 18px 0 64px;
    min-height: 100svh;
    background-image: url("./assets/prometey-bg.png");
    background-size: contain;
    background-position: center 500px;
  }

  .landing-hero .hero-inner {
    width: 100%;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  .landing-hero .hero-card,
  .landing-section .card,
  .landing-section .cta-card {
    padding: 28px;
  }

  .landing-hero .hero-card {
    gap: 28px;
    padding: 18px 0 0;
  }

  .landing-hero .hero-copy {
    max-width: none;
    padding-top: 0;
  }

  .landing-hero .hero-eyebrow {
    margin-bottom: 24px;
  }

  .landing-hero .hero-title,
  .landing-hero .hero-description,
  .landing-hero .hero-stats {
    width: 100%;
    max-width: none;
  }

  .landing-hero .hero-description {
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .landing-hero .hero-title {
    line-height: 1;
  }

  .landing-hero .hero-actions {
    flex-direction: column;
  }

  .landing-hero .hero-stats {
    grid-template-columns: 1fr;
  }

  .landing-hero .hero-button {
    width: 100%;
  }
}
.landing-audience-section .section-title {
  margin: 0 0 20px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.landing-audience-section .section-text {
  max-width: 760px;
  margin: 0 0 56px;
  color: var(--text-muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
}

.landing-audience-section .grid {
  position: relative;
  gap: 24px;
  align-items: stretch;
}

.landing-audience-section .grid::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 97vw;
  transform: translateX(-50%);
  top: 210px;
  height: 2px;
  background-image: radial-gradient(circle, rgba(95, 95, 86, 0.42) 1.2px, transparent 1.4px);
  background-size: 14px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}

.landing-audience-section .audience-card {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 20px 20px 26px;
  border: none;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
}

.landing-audience-section .audience-visual {
  display: flex;
  width: min(100%, 260px);
  height: 420px;
  margin: 0 auto 18px;
  align-items: flex-end;
  justify-content: center;
}

.landing-audience-section .audience-statue {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.landing-audience-section .audience-statue-athena {
  transform: translateX(-6px);
}

.landing-audience-section .audience-statue-apollo {
  transform: translateY(4px);
}

.landing-audience-section .audience-statue-ares {
  transform: translateX(6px);
}

.landing-audience-section .audience-copy {
  padding: 0;
}

.landing-audience-section .audience-copy h3 {
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .landing-audience-section .audience-visual {
    width: min(100%, 240px);
    height: 360px;
  }

  .landing-audience-section .grid::before {
    top: 180px;
  }
}

@media (max-width: 640px) {
  .landing-audience-section .audience-card {
    padding: 18px 0 24px;
  }

  .landing-audience-section .audience-visual {
    width: min(100%, 220px);
    height: 320px;
    margin-bottom: 14px;
  }

  .landing-audience-section .grid::before {
    top: 160px;
  }

  .landing-audience-section .audience-copy {
    padding: 0;
  }
}.landing-custom-development-section .custom-dev-intro {
  display: block;
  margin-bottom: 75px;
}

.landing-custom-development-section .custom-dev-intro .section-text {
  max-width: 980px;
  margin-bottom: 0;
  line-height: 1.9;
}

.landing-custom-development-section .custom-dev-slider-shell {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  overflow: visible;
}

.landing-custom-development-section .custom-dev-slider-viewport {
  overflow: hidden;
  border-radius: 34px;
}

.landing-custom-development-section .custom-dev-slider {
  display: flex;
  width: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.landing-custom-development-section .custom-dev-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: stretch;
  width: 100%;
  overflow: visible;
  border: 1px solid rgba(31, 28, 24, 0.08);
  border-radius: 34px;
  background: #ffffff;
  min-height: 100%;
}

.landing-custom-development-section .custom-dev-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #1f1c18;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.landing-custom-development-section .custom-dev-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.landing-custom-development-section .custom-dev-nav span {
  font-size: 3rem;
  line-height: 1;
}

.landing-custom-development-section .custom-dev-nav-prev {
  left: -96px;
}

.landing-custom-development-section .custom-dev-nav-next {
  right: -96px;
}

.landing-custom-development-section .custom-dev-dots {
  display: contents;
}

.landing-custom-development-section .custom-dev-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin: 0 4px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #746e65;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.landing-custom-development-section .custom-dev-dot.is-active {
  background: #1f1c18;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(31, 28, 24, 0.14);
}

.landing-custom-development-section .custom-dev-dot:hover {
  transform: translateY(-1px);
}

.landing-custom-development-section .custom-dev-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 0;
  overflow: visible;
  z-index: 1;
}

.landing-custom-development-section .custom-dev-visual-rental {
  background: #f3f1ec;
}

.landing-custom-development-section .custom-dev-visual-hybrid {
  background: #f3f1ec;
}

.landing-custom-development-section .custom-dev-visual-owned {
  background: #f3f1ec;
}

.landing-custom-development-section .custom-dev-visual-title {
  position: absolute;
  top: 50%;
  bottom: auto;
  right: 61px;
  z-index: 2;
  color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.8rem, 10.4vw, 4.7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  transform: translateY(50%) rotate(270deg);
  transform-origin: bottom right;
  white-space: nowrap;
}

.landing-custom-development-section .custom-dev-visual-title-rental {
  top: -16%;
  bottom: auto;
  right: -13px;
}

.landing-custom-development-section .custom-dev-visual-title-hybrid {
  top: -50%;
  bottom: auto;
  right: -13px;
}

.landing-custom-development-section .custom-dev-visual-title-owned {
  top: -49%;
  bottom: auto;
  right: -13px;
}

.landing-custom-development-section .custom-dev-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 0;
  background: #d9d7d2;
  box-shadow: inset 0 0 0 1px rgba(31, 28, 24, 0.06);
}

.landing-custom-development-section .custom-dev-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 23% center;
}

.landing-custom-development-section .custom-dev-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  padding: 40px 36px;
  position: relative;
  z-index: 2;
}

.landing-custom-development-section .custom-dev-card-content {
  display: grid;
  align-content: start;
  gap: 18px;
}

.landing-custom-development-section .custom-dev-card-footer {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.landing-custom-development-section .custom-dev-card-featured {
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.72) 0%, rgba(255, 255, 255, 0.58) 100%);
}

.landing-custom-development-section .custom-dev-price {
  color: #1f1c18;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.landing-custom-development-section .custom-dev-subprice {
  color: #7b766d;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.45;
}

.landing-custom-development-section .custom-dev-card p {
  margin: 0;
  color: var(--text-muted);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.75;
}

.landing-custom-development-section .custom-dev-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  margin: 0;
  list-style: none;
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
}

.landing-custom-development-section .custom-dev-list li {
  position: relative;
  padding-left: 16px;
}

.landing-custom-development-section .custom-dev-list li::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
  color: #1f1c18;
  font-weight: 700;
}

.landing-custom-development-section .custom-dev-total {
  display: grid;
  gap: 4px;
  margin-top: 10px;
}

.landing-custom-development-section .custom-dev-total-label {
  color: #7b766d;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.landing-custom-development-section .custom-dev-total-value {
  color: #1f1c18;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.landing-custom-development-section .custom-dev-button {
  align-self: stretch;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  padding: 14px 20px;
  border-radius: 16px;
  background: #1f1c18;
  border-color: #1f1c18;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(31, 28, 24, 0.16);
  font-size: 1.08rem;
  font-weight: 800;
  text-align: center;
}

.landing-custom-development-section .custom-dev-button:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

@media (max-width: 1400px) {
  .landing-custom-development-section .custom-dev-slider-shell {
    max-width: 920px;
  }

  .landing-custom-development-section .custom-dev-nav-prev {
    left: -72px;
  }

  .landing-custom-development-section .custom-dev-nav-next {
    right: -72px;
  }
}

@media (max-width: 1200px) {
  .landing-custom-development-section .custom-dev-slider-shell {
    max-width: 860px;
  }

  .landing-custom-development-section .custom-dev-slide {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  }

  .landing-custom-development-section .custom-dev-card {
    padding: 34px 30px;
  }

  .landing-custom-development-section .custom-dev-card h3 {
    font-size: 1.42rem;
  }

  .landing-custom-development-section .custom-dev-nav-prev {
    left: -48px;
  }

  .landing-custom-development-section .custom-dev-nav-next {
    right: -48px;
  }
}

@media (max-width: 1200px) and (min-width: 1024px) {
  .landing-custom-development-section .custom-dev-image {
    object-position: 22% 50%;
  }
}

@media (max-width: 1023px) and (min-width: 900px) {
  .landing-custom-development-section .custom-dev-image {
    object-position: 36% center;
  }
}

@media (max-width: 900px) {
  .landing-custom-development-section .custom-dev-intro .section-text {
    max-width: none;
    line-height: 1.75;
  }

  .landing-custom-development-section .custom-dev-dot {
    margin: 4px 4px;
    padding: 8px 12px;
    font-size: 0.95rem;
  }

  .landing-custom-development-section .custom-dev-slider-shell {
    max-width: 100%;
  }

  .landing-custom-development-section .custom-dev-slider {
    transition-duration: 0.35s;
  }

  .landing-custom-development-section .custom-dev-slide {
    grid-template-columns: 1fr;
  }

  .landing-custom-development-section .custom-dev-visual {
    min-height: 300px;
    padding: 0;
  }

  .landing-custom-development-section .custom-dev-card {
    gap: 16px;
    padding: 30px 28px 32px;
  }

  .landing-custom-development-section .custom-dev-button {
    font-size: 1rem;
  }

  .landing-custom-development-section .custom-dev-nav-prev {
    left: -12px;
  }

  .landing-custom-development-section .custom-dev-nav-next {
    right: -12px;
  }
}

@media (max-width: 640px) {
  .landing-custom-development-section .custom-dev-intro {
    margin-bottom: 14px;
  }

  .landing-custom-development-section .custom-dev-intro .section-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .landing-custom-development-section .custom-dev-dot {
    padding: 7px 10px;
    font-size: 0.9rem;
  }

  .landing-custom-development-section .custom-dev-slide {
    border-radius: 26px;
  }

  .landing-custom-development-section .custom-dev-slider-viewport {
    border-radius: 26px;
  }

  .landing-custom-development-section .custom-dev-visual {
    min-height: 240px;
    padding: 0;
  }

  .landing-custom-development-section .custom-dev-visual-title {
    top: 50%;
    bottom: auto;
    right: -4px;
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }


  .landing-custom-development-section .custom-dev-placeholder {
    min-height: 240px;
  }

  .landing-custom-development-section .custom-dev-image {
    min-height: 240px;
  }

  .landing-custom-development-section .custom-dev-card {
    padding: 28px 24px 30px;
  }

  .landing-custom-development-section .custom-dev-card h3 {
    font-size: 1.3rem;
  }

  .landing-custom-development-section .custom-dev-price {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .landing-custom-development-section .custom-dev-subprice,
  .landing-custom-development-section .custom-dev-card p,
  .landing-custom-development-section .custom-dev-list {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .landing-custom-development-section .custom-dev-nav {
    top: 18px;
    transform: none;
    z-index: 4;
  }

  .landing-custom-development-section .custom-dev-nav:hover:not(:disabled) {
    transform: scale(1.04);
  }

  .landing-custom-development-section .custom-dev-nav-prev {
    left: auto;
    right: 44px;
  }

  .landing-custom-development-section .custom-dev-nav-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .landing-custom-development-section .custom-dev-intro .section-text {
    font-size: 0.96rem;
  }

  .landing-custom-development-section .custom-dev-dot {
    padding: 6px 9px;
    margin: 3px 3px;
    font-size: 0.84rem;
  }

  .landing-custom-development-section .custom-dev-visual,
  .landing-custom-development-section .custom-dev-placeholder,
  .landing-custom-development-section .custom-dev-image {
    min-height: 210px;
  }

  .landing-custom-development-section .custom-dev-card {
    padding: 24px 20px 26px;
  }

  .landing-custom-development-section .custom-dev-nav span {
    font-size: 2.4rem;
  }
}

/* Форма */

.landing-form-section {
  padding-top: 96px;
}

.landing-form-shell {
  width: 100%;
}

.landing-form-container {
  max-width: 1180px;
}

.landing-form-frame {
  padding: 18px;
  border: 1px solid rgba(217, 217, 210, 0.9);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 20px 48px rgba(32, 32, 28, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.landing-lead-form {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.landing-form-intro {
  padding: 10px 8px 10px 4px;
}

.landing-form-title {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.2rem, 2vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}

.landing-form-text {
  margin: 24px 0 0;
  max-width: 420px;
  color: var(--text-muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
}

.landing-form-message {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
}

.landing-form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.landing-form-field {
  display: flex;
  flex-direction: column;
}

.landing-form-field-full {
  grid-column: 1 / -1;
}

.landing-form-label {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}

.landing-form-input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(217, 217, 210, 1);
  border-radius: 16px;
  background: rgba(247, 245, 240, 0.92);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-form-input::placeholder {
  color: #8b8b83;
}

.landing-form-input:focus {
  border-color: rgba(45, 43, 40, 0.55);
  background: #fffdf9;
  box-shadow: 0 0 0 4px rgba(45, 43, 40, 0.08);
}

.landing-form-textarea {
  min-height: 152px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: vertical;
}

.landing-form-actions {
  padding-top: 8px;
}

.landing-form-actions-row {
  display: flex;
  justify-content: flex-start;
}

.landing-form-submit {
  min-height: 56px;
  padding: 0 30px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.landing-form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.landing-form-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.landing-form-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 18, 24, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.landing-form-modal-card {
  display: flex;
  width: 100%;
  max-width: 360px;
  flex-direction: column;
  align-items: center;
  padding: 34px 28px 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f5f0 100%);
  text-align: center;
  box-shadow: 0 30px 80px rgba(7, 15, 32, 0.22);
}

.landing-form-modal-icon {
  display: flex;
  width: 112px;
  height: 112px;
  margin-bottom: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(45, 43, 40, 0.08);
  color: var(--accent);
}

.landing-form-modal-icon-inner {
  display: flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 3px rgba(45, 43, 40, 0.14);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.landing-form-modal-title {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-form-modal-text {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.75;
}

.landing-form-modal-action {
  width: 100%;
  margin-top: 24px;
  min-height: 52px;
  border: none;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

body.landing-modal-open {
  overflow: hidden;
}

.landing-order-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.landing-order-modal.hidden {
  display: none;
}

.landing-order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 24, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.landing-order-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  padding: 18px;
  border: 1px solid rgba(217, 217, 210, 0.9);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(7, 15, 32, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.landing-order-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.landing-order-form {
  display: grid;
  gap: 28px;
  padding: 26px;
  border-radius: 22px;
  background: #ffffff;
}

.landing-order-form-intro {
  max-width: 620px;
}

.landing-order-form-title {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 2vw, 2.7rem);
  font-weight: 700;
  line-height: 1.02;
}

.landing-order-form-text {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}

.landing-order-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.landing-order-form-field {
  display: flex;
  flex-direction: column;
}

.landing-order-form-field-full {
  grid-column: 1 / -1;
}

.landing-order-form-label {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}

.landing-order-form-input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(217, 217, 210, 1);
  border-radius: 16px;
  background: rgba(247, 245, 240, 0.92);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-order-form-input::placeholder {
  color: #8b8b83;
}

.landing-order-form-input:focus {
  border-color: rgba(45, 43, 40, 0.55);
  background: #fffdf9;
  box-shadow: 0 0 0 4px rgba(45, 43, 40, 0.08);
}

.landing-order-form-textarea {
  min-height: 144px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: vertical;
}

.landing-order-form-submit {
  min-height: 56px;
  border: none;
  border-radius: 16px;
  background: #1f1c18;
  color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 900px) {
  .landing-lead-form {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .landing-form-text {
    max-width: none;
  }

  .landing-order-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .landing-form-frame {
    padding: 10px;
    border-radius: 22px;
  }

  .landing-lead-form {
    gap: 24px;
    padding: 18px;
    border-radius: 18px;
  }

  .landing-form-fields {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .landing-form-title {
    font-size: 2rem;
  }

  .landing-form-text {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .landing-form-input {
    min-height: 52px;
  }

  .landing-form-textarea {
    min-height: 136px;
  }

  .landing-form-submit {
    width: 100%;
  }

  .landing-order-modal {
    padding: 12px;
  }

  .landing-order-modal-dialog {
    padding: 10px;
    border-radius: 22px;
  }

  .landing-order-form {
    gap: 22px;
    padding: 18px;
    border-radius: 18px;
  }

  .landing-order-form-title {
    font-size: 1.8rem;
  }

  .landing-order-form-text {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .landing-order-form-input {
    min-height: 52px;
  }

  .landing-order-form-textarea {
    min-height: 128px;
  }
}
