
:root {
  --primary: #29d2c8;
  --primary-dark: #22a59c; /* for large text to pass accessibility check */
  --dark: #212529;
  --dark-darker: #1a1c1f;
  --white: #fff;
  --gray: #767474;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.3s ease;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
  --shadow-2xl: 0 25px 70px rgba(0, 0, 0, 0.2);

  --container-max: 1470px;
  --container-padding: 1rem;
  
  --border-radius-lg: 24px;
  --border-radius-md: 20px;
  --border-radius-sm: 16px;
  --border-radius-xs: 8px;

  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--white);
  line-height: 1.5;
  color: #212529;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);

  @media (min-width: 576px) {
    max-width: 540px;
  }

  @media (min-width: 767.98px) {
    max-width: 720px;
  }

  @media (min-width: 991.98px) {
    max-width: 960px;
  }

  @media (min-width: 1199.98px) {
    max-width: 1140px;
  }

  @media (min-width: 1399.98px) {
    max-width: 1320px;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius-xs);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;

  &.btn-primary {
    color: var(--white);
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    font-size: 1.5rem;
    padding: 0.5rem 2rem;
    border-radius: var(--border-radius-xs);
    text-decoration: none;
    width: 100%;
    max-width: 200px;

    &:hover {
      background-color: #24b5ac;
      border-color: #24b5ac;
    }

    @media (max-width: 1399.98px) {
      font-size: 1.25rem;
    }

    @media (max-width: 1199.98px) {
      font-size: 1rem;
    }

    &.btn-small {
      font-size: 1rem;
      padding: 0.5rem 0.75rem;
    }
  }
}

.box {
  border-radius: var(--border-radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 18px 30px;
}

.section-title {
  font-size: 2rem;
  color: var(--dark-darker);
  margin-bottom: 1rem;
  line-height: 1.2;
}



header {
  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 10px;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    margin-top: 0;

    img {
      width: 257px;
      height: 67px;
    }
  }

  .navbar {
    &.primary-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      align-items: center;
      gap: 18px;
      margin: 0;
      padding: 0;

      .nav-link {
        position: relative;
        font-size: 22px;
        color: var(--primary-dark);
        font-weight: 600;
        padding: 10px;

        &::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          border: 2px solid var(--primary);
          border-radius: var(--border-radius-md);
          transform: scaleX(0);
          transition: transform 0.2s ease;
        }

        &:hover::after,
        &.active::after,
        &:active::after {
          transform: scaleX(1);
        }
      }
    }
  }

  .product-toggle {
    display: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    white-space: nowrap;
  }

  .secondary-nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    width: 100%;

    .product-links {
      display: flex;
      flex-wrap: wrap;
      margin-left: -10px;
      margin-right: -10px;
      gap: 8px;
    }

    .nav-link {
      font-size: 18px;
      font-weight: 500;
      color: var(--primary-dark);
      padding: 6px 10px;
      position: relative;

      &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        border: 1.5px solid var(--primary);
        border-radius: var(--border-radius-md);
        transform: scaleX(0);
        transition: transform 0.2s ease;
      }

      &:hover::after,
      &.active::after,
      &:active::after {
        transform: scaleX(1);
      }
    }

    .product-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      z-index: 1000;
      overflow-y: auto;
      padding: 20px;

      &.active {
        display: block;
      }

      .modal-content {
        display: flex;
        flex-direction: column;
        align-items: center;

        .nav-link {
          font-size: 20px;
          margin: 10px 0;
        }

        .close-modal {
          align-self: flex-end;
          width: 40px;
          height: 40px;
          background: transparent;
          border: none;
          position: relative;
          cursor: pointer;

          &::before,
          &::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 24px;
            height: 2px;
            background-color: var(--primary-dark);
            transform-origin: center;
          }

          &::before {
            transform: translate(-50%, -50%) rotate(45deg);
          }

          &::after {
            transform: translate(-50%, -50%) rotate(-45deg);
          }
        }
      }
    }
  }

  @media (max-width: 991.98px) {
    .header-top {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 10px;
    }

    .navbar-brand {
      justify-content: center;
    }

    .navbar.primary-nav {
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 1rem;

      .nav-link {
        font-size: 18px;
        padding: 8px;
      }
    }

    .product-toggle.mobile {
      display: block;
      margin-top: 10px;
    }

    .secondary-nav {
      .product-links.desktop {
        display: none;
      }

      .product-modal {
        display: none;

        &.active {
          display: block;
        }
      }
    }
  }

  @media (max-width: 767.98px) {
    .navbar-brand img {
      max-width: 211px;
      max-height: 85px;
    }
  }
}

.footer-container {
  background-color: var(--dark);

  footer {
    padding: 3rem 0;
    color: var(--white);
    display: flex;
    justify-content: space-between;

    @media (max-width: 767.98px) {
      flex-wrap: wrap;
    }

    .logo {
      flex: 0 0 296px;

      padding: 30px 30px 10px 30px;

      @media (max-width: 991.98px) {
        flex: 0 0 215px;
      }

      @media (max-width: 767.98px) {
        flex: 0 0 296px;
        order: 2;
        margin: auto;
      }
    }

    .footer-content {
      max-width: 980px;
      flex-shrink: 1;
      padding: 0 var(--container-padding);
    }

    p,
    a {
      color: var(--white);
      margin-bottom: 1rem;
    }

    a {
      text-decoration: underline;
      &:hover {
        color: var(--primary);
      }
    }

    .footer-text-small {
      font-size: 13px;
    }
  }
}

.faq-section {
  margin: 3rem 0;

  @media (min-width: 900px) {
    margin: 4rem 0;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    .faq-item {
      border: 1px solid rgba(var(--dark-darker-rgb), 0.04);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow-xs);

      summary.faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        width: 100%;
        padding: 1rem 1.5rem;
        background-color: rgba(var(--dark-darker-rgb), 0.05);
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        list-style: none;

        &::marker {
          display: none;
        }

        &::after {
          content: "+";
          font-size: 1.2rem;
          flex-shrink: 0;
        }
      }

      &[open] summary.faq-question::after {
        content: "−";
      }

      .faq-answer {
        padding: 1rem 1.5rem;
        background: linear-gradient(
          135deg,
          var(--white) 0%,
          var(--white-tint) 100%
        );
        color: var(--dark-darker);

        ul {
          margin: 1em 0;
          padding-left: 1.5em;
          list-style-type: disc;
        }

        li {
          margin-bottom: 0.5em;
          line-height: 1.5;

          &:last-child {
            margin-bottom: 0;
          }
        }

        p {
          margin: 0.75em 0;
          font-size: 1rem;
          line-height: 1.5;

          &:first-child {
            margin-top: 0;
          }

          &:last-child {
            margin-bottom: 0;
          }
        }

        strong {
          font-weight: 600;
        }
      }
    }
  }
}

.ccard {
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--white) 0%, var(--white-tint) 100%);
  color: var(--dark-darker);
  border: 1px solid rgba(var(--dark-darker-rgb), 0.04);

  .ccard__title {
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);

    & > * {
      font-size: 1.75rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    &::after {
      content: "";
      display: block;
      width: 50px;
      height: 4px;
      background: rgba(255, 255, 255, 0.3);
      margin-top: 0.8rem;
      border-radius: 2px;
      transition: width 0.3s ease;
    }
  }

  .ccard__body {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;

    p,
    li {
      margin: 0 0 0.9rem 0;
      font-weight: 400;
    }
  }

  &::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: all 0.4s ease;
    pointer-events: none;
  }

  &:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);

    &::before {
      width: 300px;
      height: 300px;
      background: rgba(255, 255, 255, 0.08);
    }

    .ccard__title {
      transform: translateX(4px);

      &::after {
        width: 70px;
      }
    }
  }

  &.ccard--small {
    padding: 2rem;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    & .ccard__title {
      margin-bottom: 0;

      & > * {
        margin-bottom: 1rem;
        font-size: 1.5rem;
        line-height: 1.15;
      }
    }

    &::before {
      top: -10%;
      right: -10%;
      width: 160px;
      height: 160px;
      transform: translate(40%, -40%);
      background: rgba(var(--white-rgb), 0.04);
    }

    &:hover::before {
      transform: translate(10%, -10%) scale(1.1);
    }

    & .ccard__title::after {
      display: none;
    }
  }

  &.ccard--primary {
    background: linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%
    );
    color: var(--white);
    border: none;

    &::after {
      content: "";
      position: absolute;
      bottom: -50px;
      left: -50px;
      width: 150px;
      height: 150px;
      background: rgba(var(--white-rgb), 0.06);
      border-radius: 50%;
      pointer-events: none;
    }
  }

  &.ccard--dark {
    background: linear-gradient(
      135deg,
      var(--dark) 0%,
      var(--dark-darker) 100%
    );
    color: var(--white);
    border: 1px solid rgba(var(--white-rgb), 0.06);

    &::after {
      content: "";
      position: absolute;
      bottom: -30px;
      left: -30px;
      width: 120px;
      height: 120px;
      background: rgba(var(--white-rgb), 0.03);
      border-radius: 50%;
      pointer-events: none;
    }
  }

  &.ccard--light {
    background: linear-gradient(
      135deg,
      var(--white) 0%,
      var(--white-tint) 100%
    );
    color: var(--dark-darker);
    border: 1px solid rgba(var(--dark-darker-rgb), 0.04);

    &::after {
      content: "";
      position: absolute;
      bottom: -30px;
      left: -30px;
      width: 120px;
      height: 120px;
      background: rgba(var(--dark-darker-rgb), 0.03);
      border-radius: 50%;
      pointer-events: none;
    }

    &::before {
      background: rgba(var(--dark-rgb), 0.04);
    }

    & .ccard__title::after {
      background: rgba(var(--dark-darker-rgb), 0.3);
    }
  }
}

.table-wrapper {
  border-radius: var(--border-radius-xs);

  @media (min-width: 991.98px) {
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: var(--shadow-xs);
    margin: 2rem 0;
  }

  .product-table tbody tr:last-child td {
    border-bottom: none;
  }

  .mobile-cards {
    display: none;
  }

  .product-table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
    font-size: 0.95rem;
    background-color: var(--white);

    thead {
      background-color: #f4f6f8;
    }

    th,
    td {
      padding: 1.25rem 1rem;
      border-bottom: 1px solid #e0e0e0;
      text-align: left;
      vertical-align: top;

      @media (max-width: 1199.98px) {
        padding: 0.75rem 0.5rem;
      }
    }

    th {
      font-weight: 600;
      color: var(--dark);
      vertical-align: middle;
    }

    tbody tr:nth-child(even) {
      background-color: #fafafa;
    }

    tbody tr:not(:last-of-type):hover {
      background-color: #f0f8ff;
    }
  }

  @media (max-width: 991.98px) {
    .product-table {
      display: none;
    }

    .mobile-cards {
      display: block;
      margin: 2rem 0;
      & > * {
      margin-bottom: 2rem;
    }
    }

    .card-body {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .card-item {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid rgba(var(--dark-darker-rgb), 0.08);
      padding-bottom: 0.5rem;
    }

    .card-item:last-child {
      border-bottom: none;
    }

    .card-item-label {
      flex: 0 0 60%;
      font-weight: 600;
      color: var(--dark-darker);
    }

    .card-item-value {
      flex: 0 0 40%;
      text-align: right;
      color: var(--text);
    }

    .card-footer {
      margin-top: 2rem;
      text-align: right;
    }
  }
}

.product-hero {
  display: grid;
  align-items: start;
  margin-top: 3rem;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "left left"
    "left image";

  h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;

    @media (max-width: 991.98px) {
      font-size: 2.25rem;
    }
  }

  p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 400;

    @media (max-width: 576px) {
      font-size: 1rem;
    }
  }

  @media (min-width: 991.98px) {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "left image";
    align-items: center;
    gap: 20px;

    .hero-left {
      grid-area: left;
      display: block;
    }
  }

  @media (min-width: 768px) and (max-width: 991.98px) {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "title title"
      "left  image";
    align-items: start;

    .hero-left {
      display: contents;
    }

    h1 {
      grid-area: title;
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 2rem;
    }

    p {
      grid-area: left;
      margin: 0 20px 0 0;
      font-size: 1.15rem;
      line-height: 1.7;
      font-weight: 400;
    }
  }

  @media (max-width: 767.98px) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "left"
      "image";
    align-items: start;
    gap: 0;

    .hero-left {
      display: block;
      margin-bottom: 1rem;
    }

    h1 {
      grid-area: title;
      font-size: 2.25rem;
      line-height: 1.2;
    }

    p {
      grid-area: left;
      margin: 0 0 12px;
      font-size: 1rem;
      line-height: 1.6;
    }
  }

  .hero-left {
    grid-area: left;
  }

  .image-card {
    grid-area: image;
    height: auto;
    display: block;
    position: relative;
    width: 100%;
    object-fit: cover;
    align-self: center;

    border-radius: var(--border-radius-lg);
    background-size: cover;
    box-shadow: var(--shadow-lg);
    transform-origin: right center;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      box-shadow 0.3s ease;

    &:hover {
      transform: scale(1.03);
      box-shadow: var(--shadow-2xl);
    }
    @media (max-width: 991.98px) {
      max-width: 100%;
    }

    @media (max-width: 576px) {
      max-width: 100%;
      border-radius: var(--border-radius-sm);
    }
  }
}
.product-steps {
  margin: 3rem 0;

  p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 400;
  }

  .steps-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    padding-left: calc(var(--marker-size) + 18px);
    margin-top: 2.5rem;

    &::before {
      content: "";
      position: absolute;
      left: calc(var(--marker-size) / 2);
      top: calc(var(--marker-size) / 2);
      bottom: calc(var(--marker-size) / 2);
      width: 2px;
      background: linear-gradient(
        180deg,
        rgba(17, 24, 39, 0.06),
        rgba(17, 24, 39, 0.03)
      );
      border-radius: 2px;
    }
  }

  .steps-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    min-height: calc(var(--marker-size) + 10px);

    &::before {
      content: "";
      position: absolute;
      left: calc(-1 * (var(--marker-size) + 18px));
      width: var(--marker-size);
      height: var(--marker-size);
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--card-border);
      box-shadow: 0 8px 18px rgba(12, 22, 36, 0.06);
      display: grid;
      place-items: center;
      z-index: 1;
    }

    .step-icon-container {
      position: absolute;
      left: calc(
        -1 * (var(--marker-size) + 16px) + (var(--marker-size) - 32px) / 2
      );
      top: calc((var(--marker-size) - 28px) / 2);
      width: 32px;
      height: 32px;
      fill: var(--primary);
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      svg {
        color: var(--dark);
      }
    }

    p {
      background: var(--white);
      border: 1px solid var(--card-border);
      border-radius: var(--border-radius-md);
      padding: 1.6rem 1.9rem;
      margin: 0;
      font-size: 1rem;
      line-height: 1.45;
      box-shadow: var(--shadow-md);
      color: #111827;
      transition: var(--transition-fast);

      &:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-xl);
      }
    }
  }

  @media (min-width: 991.98px) {
    margin: 4rem 0;
  }
}



.homepage-hero {
  text-align: center;
  margin-bottom: 3rem;

  .homepage-hero-title {
    position: relative;
    display: inline-block;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    text-align: center;
    line-height: 1.2;
    margin: 3rem auto 1rem auto;

    @media (max-width: 991.98px) {
      font-size: 2.25rem;
    }

    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      border: 2px solid var(--primary);
      border-radius: var(--border-radius-md);
    }
  }

  .homepage-hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 400;

    @media (max-width: 576px) {
      font-size: 1rem;
    }
  }
}

.hero-text {
  max-width: 880px;
  position: relative;
  margin: 30px auto 40px auto;
  font-size: 2rem;
  font-weight: 700;
  padding: 10px;
  text-align: center;
  line-height: 1.3;

  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-md);
  }

  @media (max-width: 767.98px) {
    font-size: 1.25rem;
  }
}

.credit-item {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  width: 100%;

  .badge {
    position: absolute;
    left: -30px;
    top: -24px;
  }

  .column {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    &.column-1 {
      padding-bottom: 10px;
      width: 220px;

      img {
        margin-bottom: 16px;
      }

      .name {
        margin-top: 5px;
        margin-bottom: 5px;
        text-align: center;
        font-weight: 500;
        line-height: normal;
      }

      @media (max-width: 991.98px) {
        width: 100%;

        img {
          object-fit: contain;
          max-width: 220px;
          max-height: 56px;
          width: 100%;
          height: auto;
          margin-left: auto;
          margin-right: auto;
        }
      }
    }

    .key,
    .value {
      text-align: left;
    }

    &.column-6 {
      width: 220px;

      @media (max-width: 1399.98px) {
        width: 180px;
      }

      @media (max-width: 1199.98px) {
        width: 120px;
      }

      @media (max-width: 991.98px) {
        width: 100%;
        &.action .btn {
          max-width: 100%;
        }
      }
    }
  }

  .stars {
    display: flex;
    align-items: center;
    justify-content: center;

    .rating-number {
      margin-left: 10px;
      color: #000;
      font-size: 14px;
      font-weight: 700;
    }
  }

  .key {
    color: #000;
    font-size: 0.875rem;
  }

  .value {
    color: var(--primary-dark);
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    span {
      font-size: 0.75em;
    }

    @media (max-width: 1399.98px) {
      font-size: 1.5rem;
    }

    @media (max-width: 1199.98px) {
      font-size: 1.025rem;
    }

    @media (max-width: 991.98px) {
      font-size: 2rem;
    }

    @media (max-width: 767.98px) {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 991.98px) {
    flex-direction: column;
    padding: 20px;

    .column {
      width: 100%;
    }
  }
}

.reviews-section {
  margin-top: 3rem;
  margin-bottom: 5rem;
  display: flex;
  flex-wrap: wrap;

  .section-header {
    flex: 1 1 100%;
    margin-bottom: 3rem;
    text-align: center;
  }

  .reviews-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;

    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      border: 2px solid var(--primary);
      border-radius: var(--border-radius-md);
    }
  }

  .review-cards {
    display: flex;
    gap: 16px;

    @media (max-width: 991.98px) {
      flex-wrap: wrap;
    }

    .review-item {
      padding: 30px;
      text-align: center;
      border-radius: var(--border-radius-lg);
      background: var(--white);
      box-shadow: var(--shadow-md);

      .photo {
        border-radius: 100%;
        overflow: hidden;
        width: 140px;
        height: 140px;
        margin: 0 auto 1rem;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }

      .name {
        font-size: 1.625rem;
        font-weight: 700;
      }

      .from {
        color: var(--gray);
        font-size: 1rem;
        margin-bottom: 10px;
      }

      .text {
        font-size: 1rem;
        font-weight: 400;
        margin-bottom: 10px;
      }

      .stars {
        display: flex;
        justify-content: center;
        align-items: center;
      }
    }
  }
}

.homepage-faq-section {
  .faq-section {
    text-align: center;

    .faq-list {
      text-align: left;
    }
  }

  .section-title {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    line-height: 1.5;

    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      border: 2px solid var(--primary);
      border-radius: var(--border-radius-md);
    }
  }
}


.legal-content {
  margin: 0 auto;
  width: 100%;
  padding-bottom: 3rem;

  @media (min-width: 1199.98px) {
    width: 83.333333%;
  }

  @media (min-width: 1399.98px) {
    width: 66.666667%;
  }

  a {
    color: var(--primary);
    text-decoration: underline;
  }

  h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 16px;
  }

  h3 {
    font-size: 16px;
    font-weight: 700;
  }

  p {
    margin-top: 0;
    margin-bottom: 1rem;
  }

  ol {
    list-style-type: lower-alpha;
    padding-left: 2rem;
  }

  ul {
    list-style-type: disc;
    padding-left: 2rem;
  }
}

.partner-toc-list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 1rem;
  margin-bottom: 40px;

  @media (min-width: 991.98px) {
    margin: 140px auto;
  }

  a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, opacity 0.2s ease;

    &:hover {
      transform: translateY(-4px);
      opacity: 0.85;
    }

    img {
      margin-bottom: 1rem;
    }

    span {
      text-align: center;
      line-height: 1.2;
      text-decoration: underline;
      &:hover {
        color: var(--primary);
      }
    }
  }
}

.bg-container {
  position: relative;
}

.hero-img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50vw;
  max-width: 864px;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: right center;
}

.bg-container:hover .hero-img {
  transform: translateY(-50%) scale(1.02);
}

.hero-section {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--primary-dark) 60%,
    var(--primary) 100%
  );
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);

  &::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
  }

  &::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
  }

  &:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);

    .hero-section-content h1::after {
      width: 90px;
    }
  }

  .hero-section-content {
    max-width: 48%;
    padding: 164px 3rem;
    position: relative;
    z-index: 1;

    h1 {
      margin-bottom: 40px;
      font-size: 3rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.02em;
      line-height: 1.2;
      position: relative;
      transition: var(--transition-fast);

      &::after {
        content: "";
        display: block;
        width: 70px;
        height: 4px;
        background: rgba(255, 255, 255, 0.4);
        margin-top: 1rem;
        border-radius: 2px;
        transition: width 0.3s ease;
      }
    }

    p {
      font-size: 1.15rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.95);
      font-weight: 400;
      max-width: 85%;
    }
  }

  &:hover .hero-section-content h1 {
    transform: translateX(4px);
  }
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 6rem;

  .opening-hours {
    padding-left: 0;
    list-style: none;

    li {
      padding-left: 1.5rem;
      position: relative;

      &::before {
        content: "•";
        position: absolute;
        left: 0;
        font-size: 1.3em;
        line-height: 1.4;
        opacity: 0.6;
      }
    }
  }

  p,
  li {
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    opacity: 0.95;
    font-weight: 400;
  }

  p strong,
  li strong {
    font-weight: 600;
    opacity: 1;
  }

  a {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: all 0.2s ease;
    display: inline-block;

    &:hover {
      transform: translateX(2px);
      opacity: 1;
    }
  }
}

@media (max-width: 1199.98px) {
  .hero-section .hero-section-content {
    max-width: 55%;
  }
}

@media (max-width: 991.98px) {
  .hero-img {
    width: 55vw;
  }

  .hero-section .hero-section-content {
    max-width: 60%;

    h1 {
      font-size: 2.5rem;
    }
  }
}

@media (max-width: 991.98px) {
  .hero-img {
    max-width: 260px;
    top: 0;
    transform: translateY(0);
  }

  .bg-container:hover .hero-img {
    transform: scale(1.02);
  }

  .hero-section .hero-section-content {
    max-width: 100%;
    padding: 3rem 2rem;

    h1 {
      font-size: 2.25rem;
    }

    p {
      max-width: 100%;
      font-size: 1.05rem;
    }
  }
}

@media (max-width: 576px) {
  .contact-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}

:root {
  --white-tint: #f8fbfb;
  --white-rgb: 255, 255, 255;
  --dark-rgb: 42, 45, 49;
  --dark-darker-rgb: 26, 28, 31;
}

.about-main {
  padding: 3rem 2rem;

  @media (max-width: 576px) {
    padding: 2rem 1rem;
  }

  .about-hero {
    display: grid;
    grid-template-columns: 1fr 42%;
    gap: 2rem;
    align-items: center;
    margin-top: 1.5rem;

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

  .image-card-wrapper {
    overflow: visible;
    display: flex;
    justify-content: flex-end;

    &:hover .image-card {
      transform: scale(1.03);
      box-shadow: var(--shadow-2xl);
    }

    @media (max-width: 991.98px) {
      justify-content: center;
      margin-top: 1.25rem;
    }
  }

  .image-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: var(--border-radius-lg);
    background-size: cover;
    box-shadow: var(--shadow-lg);
    transform-origin: right center;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      box-shadow 0.3s ease;

    @media (max-width: 991.98px) {
      max-width: 100%;
    }

    @media (max-width: 576px) {
      max-width: 100%;
      border-radius: var(--border-radius-sm);
    }
  }

  .hero-section-content {
    padding: 0;
    color: var(--dark-darker);

    h1 {
      margin: 0 0 1rem 0;
      font-size: 2.75rem;
      color: var(--dark-darker);

      @media (max-width: 991.98px) {
        font-size: 2.25rem;
      }
    }

    p {
      margin: 0;
      font-size: 1.125rem;
      color: rgba(var(--dark-rgb), 0.9);
      line-height: 1.7;
      max-width: 52ch;

      @media (max-width: 576px) {
        font-size: 1rem;
      }
    }
  }

  .about-values {
    margin-top: 3.5rem;
    padding: 2rem 0;
    background: transparent;

    .about-values-inner {
      max-width: 100%;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;

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

      /* .values-card {
        padding: 2rem;
        border-radius: var(--border-radius-md);
        box-shadow: var(--shadow-md);
        transition: var(--transition-smooth);
        position: relative;
        overflow: hidden;
        min-height: 170px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;

        &:hover {
          transform: translateY(-8px);
          box-shadow: var(--shadow-xl);
        }

        &::before {
          content: "";
          position: absolute;
          top: -10%;
          right: -10%;
          width: 160px;
          height: 160px;
          border-radius: 50%;
          background: rgba(var(--white-rgb), 0.04);
          transform: translate(40%, -40%);
          transition: all 0.4s ease;
          pointer-events: none;
        }

        &:hover::before {
          transform: translate(10%, -10%) scale(1.1);
          opacity: 1;
        }

        h3 {
          margin-bottom: 0.75rem;
          font-size: 1.25rem;
          font-weight: 700;
          line-height: 1.15;
        }

        p {
          margin: 0;
          font-size: 1.05rem;
          line-height: 1.6;
          opacity: 0.95;
        }

        &.values-card--light::before {
          background: rgba(var(--dark-rgb), 0.04);
        }

        &.values-card--primary {
          background: linear-gradient(
            135deg,
            var(--primary) 0%,
            var(--primary-dark) 100%
          );
          color: var(--white);
          border: none;

          &::after {
            content: "";
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 120px;
            height: 120px;
            background: rgba(var(--white-rgb), 0.06);
            border-radius: 50%;
            pointer-events: none;
          }
        }

        &.values-card--dark {
          background: linear-gradient(
            135deg,
            var(--dark) 0%,
            var(--dark-darker) 100%
          );
          color: var(--white);
          border: 1px solid rgba(var(--white-rgb), 0.06);

          &::after {
            content: "";
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 100px;
            height: 100px;
            background: rgba(var(--white-rgb), 0.03);
            border-radius: 50%;
            pointer-events: none;
          }
        }

        &.values-card--light {
          background: linear-gradient(
            135deg,
            var(--white) 0%,
            var(--white-tint) 100%
          );
          color: var(--dark-darker);
          border: 1px solid rgba(var(--dark-darker-rgb), 0.04);

          &::after {
            content: "";
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 120px;
            height: 120px;
            background: rgba(var(--dark-darker-rgb), 0.03);
            border-radius: 50%;
            pointer-events: none;
          }
        }
      } */
    }
  }
}

:root {
  --card-border: rgba(17, 24, 39, 0.06);
  --marker-size: 60px;
  --gap: 2rem;
}

/* .product-hero {
  display: grid;
  align-items: start;
  margin-top: 3rem;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "left left"
    "left image";

  h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;

    @media (max-width: 991.98px) {
      font-size: 2.25rem;
    }
  }

  p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 400;

    @media (max-width: 576px) {
      font-size: 1rem;
    }
  }

  @media (min-width: 991.98px) {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "left image";
    align-items: center;
    gap: 20px;

    .hero-left {
      grid-area: left;
      display: block;
    }
  }

  @media (min-width: 768px) and (max-width: 991.98px) {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "title title"
      "left  image";
    align-items: start;

    .hero-left {
      display: contents;
    }

    h1 {
      grid-area: title;
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 2rem;
    }

    p {
      grid-area: left;
      margin: 0 20px 0 0;
      font-size: 1.15rem;
      line-height: 1.7;
      font-weight: 400;
    }
  }

  @media (max-width: 767.98px) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "left"
      "image";
    align-items: start;
    gap: 0;

    .hero-left {
      display: block;
      margin-bottom: 1rem;
    }

    h1 {
      grid-area: title;
      font-size: 2.25rem;
      line-height: 1.2;
    }

    p {
      grid-area: left;
      margin: 0 0 12px;
      font-size: 1rem;
      line-height: 1.6;
    }
  }

  .hero-left {
    grid-area: left;
  }

  .image-card {
    grid-area: image;
    height: auto;
    display: block;
    position: relative;
    width: 100%;
    object-fit: cover;
    align-self: center;

    border-radius: var(--border-radius-lg);
    background-size: cover;
    box-shadow: var(--shadow-lg);
    transform-origin: right center;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      box-shadow 0.3s ease;

    &:hover {
      transform: scale(1.03);
      box-shadow: var(--shadow-2xl);
    }
    @media (max-width: 991.98px) {
      max-width: 100%;
    }

    @media (max-width: 576px) {
      max-width: 100%;
      border-radius: var(--border-radius-sm);
    }
  }
} */

/* .product-steps {
  margin: 3rem 0;

  p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 400;
  }

  .steps-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    padding-left: calc(var(--marker-size) + 18px);
    margin-top: 2.5rem;

    &::before {
      content: "";
      position: absolute;
      left: calc(var(--marker-size) / 2);
      top: calc(var(--marker-size) / 2);
      bottom: calc(var(--marker-size) / 2);
      width: 2px;
      background: linear-gradient(
        180deg,
        rgba(17, 24, 39, 0.06),
        rgba(17, 24, 39, 0.03)
      );
      border-radius: 2px;
    }
  }

  .steps-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    min-height: calc(var(--marker-size) + 10px);

    &::before {
      content: "";
      position: absolute;
      left: calc(-1 * (var(--marker-size) + 18px));
      width: var(--marker-size);
      height: var(--marker-size);
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--card-border);
      box-shadow: 0 8px 18px rgba(12, 22, 36, 0.06);
      display: grid;
      place-items: center;
      z-index: 1;
    }

    .step-icon-container {
      position: absolute;
      left: calc(
        -1 * (var(--marker-size) + 16px) + (var(--marker-size) - 32px) / 2
      );
      top: calc((var(--marker-size) - 28px) / 2);
      width: 32px;
      height: 32px;
      fill: var(--primary);
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      svg {
        color: var(--dark);
      }
    }

    p {
      background: var(--white);
      border: 1px solid var(--card-border);
      border-radius: var(--border-radius-md);
      padding: 1.6rem 1.9rem;
      margin: 0;
      font-size: 1rem;
      line-height: 1.45;
      box-shadow: var(--shadow-md);
      color: #111827;
      transition: var(--transition-fast);

      &:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-xl);
      }
    }
  }

  @media (min-width: 991.98px) {
    margin: 4rem 0;
  }
} */

.product-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 4rem 0;

  .product-info-card {
    flex: 1 1 100%;

    @media (min-width: 991.98px) {
      flex: 1 1 calc(50% - 2rem);
    }
  }
}
