
/* =========================================================
   NORDIAL – NÁVRH NÁBYTKU ZDARMA
   File: nordial-navrh-zdarma-v1.css
   Scope: only elements inside .nd-design-page
   ========================================================= */

.nd-design-page {
  --nd-green: #1C3B2D;
  --nd-green-hover: #256a52;
  --nd-beige: #f7f4ee;
  --nd-beige-2: #eee9df;
  --nd-border: #e8e4dc;
  --nd-text: #242824;
  --nd-muted: #6d716d;
  --nd-white: #ffffff;

  color: var(--nd-text);
  font-family: "Urbanist", sans-serif;
  width: 100%;
}

.nd-design-page *,
.nd-design-page *::before,
.nd-design-page *::after {
  box-sizing: border-box;
}

.nd-design-page img {
  display: block;
  width: 100%;
  height: auto;
}

.nd-design-page h1,
.nd-design-page h2,
.nd-design-page h3,
.nd-design-page p {
  margin-top: 0;
}

.nd-design-page a {
  -webkit-tap-highlight-color: transparent;
}

/* HERO */

.nd-design-hero {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  min-height: 590px;
  margin: 0 0 20px;
  background: #faf9f6;
  overflow: hidden;
  border-radius: 0 0 26px 26px;
}

.nd-design-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px clamp(30px, 5vw, 82px);
}

.nd-design-eyebrow,
.nd-design-heading > span,
.nd-design-form-intro > span,
.nd-design-example-request__inner > span {
  display: block;
  margin-bottom: 14px;
  color: var(--nd-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nd-design-hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--nd-green);
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1.03;
  letter-spacing: -.045em;
  font-weight: 700;
}

.nd-design-hero__lead {
  max-width: 560px;
  margin-bottom: 24px;
  color: #464a46;
  font-size: 18px;
  line-height: 1.65;
}

.nd-design-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 30px;
  color: var(--nd-green);
  font-size: 14px;
  font-weight: 600;
}

.nd-design-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: fit-content;
  min-width: 220px;
  padding: 17px 22px;
  border-radius: 999px;
  background: var(--nd-green);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(28, 59, 45, .14);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.nd-design-btn:hover {
  background: var(--nd-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(28, 59, 45, .18);
}

.nd-design-btn span {
  font-size: 20px;
  line-height: 1;
}

.nd-design-hero__image {
  min-height: 590px;
  background:
    radial-gradient(circle at 72% 20%, rgba(255,255,255,.75), transparent 34%),
    linear-gradient(135deg, #f2ede3 0%, #e7dfd1 100%);
}

.nd-design-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

/* COMMON SECTION */

.nd-design-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 88px 34px;
}

.nd-design-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.nd-design-heading h2,
.nd-design-form-intro h2,
.nd-design-example-request h2 {
  margin-bottom: 15px;
  color: var(--nd-green);
  font-size: clamp(34px, 3.7vw, 50px);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 700;
}

.nd-design-heading p {
  margin-bottom: 0;
  color: var(--nd-muted);
  font-size: 17px;
  line-height: 1.65;
}

/* STEPS */

.nd-design-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.nd-design-step {
  position: relative;
  padding: 34px;
  border: 1px solid var(--nd-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(28, 59, 45, .045);
}

.nd-design-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--nd-green);
  color: #fff;
  font-weight: 700;
}

.nd-design-step h3 {
  margin-bottom: 12px;
  color: var(--nd-green);
  font-size: 21px;
  line-height: 1.25;
}

.nd-design-step p {
  margin-bottom: 0;
  color: var(--nd-muted);
  line-height: 1.62;
}

/* EXAMPLES / CASES */

.nd-design-examples {
  max-width: 1200px;
}

.nd-design-case {
  margin-bottom: 70px;
}

.nd-design-case:last-child {
  margin-bottom: 0;
}

.nd-design-case__title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.nd-design-case__title > span {
  color: #a5a99f;
  font-size: 13px;
  font-weight: 700;
  padding-top: 6px;
}

.nd-design-case__title h3 {
  margin-bottom: 5px;
  color: var(--nd-green);
  font-size: 27px;
  line-height: 1.2;
}

.nd-design-case__title p {
  margin-bottom: 0;
  color: var(--nd-muted);
}

.nd-design-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.nd-design-before-after > div {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--nd-border);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(247,244,238,.95), rgba(238,233,223,.95));
}

.nd-design-before-after img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.nd-design-image-label {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--nd-green);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.nd-design-product-note {
  margin-top: 18px;
  padding: 22px 25px;
  border-radius: 14px;
  background: var(--nd-beige);
  line-height: 1.55;
}

.nd-design-product-note strong {
  color: var(--nd-green);
}

/* CATEGORIES */

.nd-design-help {
  padding-top: 30px;
}

.nd-design-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--nd-border);
  border-left: 1px solid var(--nd-border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.nd-design-category {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 110px;
  padding: 25px;
  border-right: 1px solid var(--nd-border);
  border-bottom: 1px solid var(--nd-border);
}

.nd-design-category span {
  color: #a8ada7;
  font-size: 12px;
}

.nd-design-category strong {
  color: var(--nd-green);
  font-size: 17px;
  line-height: 1.25;
}

/* EXAMPLE REQUEST */

.nd-design-example-request {
  padding: 96px 35px;
  background: var(--nd-beige);
}

.nd-design-example-request__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.nd-design-example-request blockquote {
  margin: 30px auto;
  padding: 30px;
  border: 0;
  color: var(--nd-green);
  font-size: clamp(21px, 2.8vw, 30px);
  font-weight: 500;
  line-height: 1.45;
}

.nd-design-example-request p {
  margin-bottom: 0;
  color: var(--nd-muted);
}

/* FORM */

.nd-design-form-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 60px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px 35px;
}

.nd-design-form-intro {
  padding-top: 24px;
}

.nd-design-form-intro p {
  max-width: 430px;
  color: var(--nd-muted);
  font-size: 17px;
  line-height: 1.65;
}

.nd-design-form-benefits {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  color: var(--nd-green);
  font-weight: 600;
}

.nd-design-form-box {
  padding: 38px;
  border: 1px solid var(--nd-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 45px rgba(27, 48, 37, .07);
}

.nd-design-current-form > h3 {
  margin-bottom: 8px;
  color: var(--nd-green);
  font-size: 24px;
}

.nd-design-current-form > p {
  color: var(--nd-muted);
  line-height: 1.55;
}

/* Style the existing Shoptet contact form only inside this landing page */

.nd-design-current-form form {
  margin-top: 24px;
}

.nd-design-current-form form label,
.nd-design-current-form .form-group label {
  color: #303630;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nd-design-current-form input[type="text"],
.nd-design-current-form input[type="email"],
.nd-design-current-form input[type="tel"],
.nd-design-current-form textarea,
.nd-design-current-form select {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid #dde3de;
  border-radius: 11px;
  background: #fff;
  color: var(--nd-text);
  font-family: inherit;
  box-shadow: none;
}

.nd-design-current-form textarea {
  min-height: 160px;
  resize: vertical;
}

.nd-design-current-form input:focus,
.nd-design-current-form textarea:focus,
.nd-design-current-form select:focus {
  outline: none;
  border-color: rgba(28, 59, 45, .55);
  box-shadow: 0 0 0 3px rgba(28, 59, 45, .08);
}

.nd-design-current-form button,
.nd-design-current-form input[type="submit"],
.nd-design-current-form .btn,
.nd-design-current-form .btn-primary {
  min-height: 50px;
  padding: 14px 28px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--nd-green) !important;
  color: #fff !important;
  font-family: inherit;
  font-weight: 700;
  box-shadow: none !important;
  transition: background .2s ease, transform .2s ease;
}

.nd-design-current-form button:hover,
.nd-design-current-form input[type="submit"]:hover,
.nd-design-current-form .btn:hover,
.nd-design-current-form .btn-primary:hover {
  background: var(--nd-green-hover) !important;
  transform: translateY(-1px);
}

/* BOTTOM BENEFITS */

.nd-design-bottom-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1320px;
  margin: 0 auto 60px;
  padding: 32px 35px;
  border-top: 1px solid var(--nd-border);
  border-bottom: 1px solid var(--nd-border);
}

.nd-design-bottom-benefits > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 30px;
  text-align: center;
}

.nd-design-bottom-benefits > div:not(:last-child) {
  border-right: 1px solid var(--nd-border);
}

.nd-design-bottom-benefits strong {
  color: var(--nd-green);
  font-size: 17px;
}

.nd-design-bottom-benefits span {
  color: var(--nd-muted);
  font-size: 13px;
}

/* TABLET */

@media (max-width: 900px) {
  .nd-design-hero {
    grid-template-columns: 1fr;
  }

  .nd-design-hero__image {
    min-height: 390px;
    order: -1;
  }

  .nd-design-hero__image img {
    min-height: 390px;
  }

  .nd-design-hero__content {
    padding: 52px 28px 62px;
  }

  .nd-design-steps {
    grid-template-columns: 1fr;
  }

  .nd-design-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .nd-design-form-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* MOBILE */

@media (max-width: 600px) {
  .nd-design-hero {
    border-radius: 0 0 18px 18px;
  }

  .nd-design-hero__image {
    min-height: 280px;
  }

  .nd-design-hero__image img {
    min-height: 280px;
  }

  .nd-design-hero__content {
    padding: 36px 20px 46px;
  }

  .nd-design-hero h1 {
    font-size: 39px;
  }

  .nd-design-hero__lead {
    font-size: 16px;
  }

  .nd-design-trust {
    display: grid;
    gap: 8px;
  }

  .nd-design-btn {
    width: 100%;
  }

  .nd-design-section {
    padding: 62px 20px;
  }

  .nd-design-before-after {
    grid-template-columns: 1fr;
  }

  .nd-design-before-after > div {
    min-height: 230px;
  }

  .nd-design-categories {
    grid-template-columns: 1fr;
  }

  .nd-design-example-request {
    padding: 62px 20px;
  }

  .nd-design-example-request blockquote {
    padding: 18px 0;
  }

  .nd-design-form-section {
    padding: 62px 20px;
  }

  .nd-design-form-box {
    padding: 22px;
  }

  .nd-design-bottom-benefits {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
    padding: 20px;
  }

  .nd-design-bottom-benefits > div {
    padding: 18px 0;
  }

  .nd-design-bottom-benefits > div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--nd-border);
  }
}
