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

  body {
      font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background-color: #020816;
      color: #ffffff;
      padding-top: 80px;

  }

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

  button {
      border: none;
      background: none;
      cursor: pointer;
      font: inherit;
      color: inherit;
  }

  .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 130px;
      z-index: 100;
      background: rgba(2, 8, 22, 0.96);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(10px);
  }

  .header-inner {
      max-width: 1360px;
      height: 100%;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
  }

  .logo {
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .logo img {
      height: 90px;
  }

  .nav {
      display: flex;
      align-items: center;
      gap: 56px;
      margin-left: auto;
      margin-right: 40px;
  }

  .nav-link {
      font-size: 20px;
      font-weight: 400;
      color: #ffffff;
      transition: color 0.2s ease, transform 0.2s ease;
      white-space: nowrap;
  }

  .nav-link:hover {
      color: #1bb29a;
      transform: translateY(-1px);
  }

  .header-controls {
      display: flex;
      align-items: center;
      gap: 16px;
  }

  .lang-switcher {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 16px;
      color: #ffffff;
  }

  .lang-arrow {
      width: 6px;
      height: 6px;
      border-left: 1.5px solid #ffffff;
      border-bottom: 1.5px solid #ffffff;
      transform: rotate(-45deg);
      margin-top: -2px;
  }

  .burger {
      width: 32px;
      height: 24px;
      display: none;
      flex-direction: column;
      justify-content: space-between;
  }

  .burger-line {
      height: 2px;
      width: 100%;
      background-color: #ffffff;
      border-radius: 999px;
      transition: transform 0.2s ease, opacity 0.2s ease;
  }


  @media (max-width: 992px) {
      body {
          padding-top: 70px;
      }

      .site-header {
          height: 110px;
      }

      .nav {
          position: fixed;
          top: 70px;
          left: 0;
          right: 0;
          background-color: #020816;
          flex-direction: column;
          align-items: center;
          gap: 24px;
          padding: 24px 16px 32px;
          border-bottom: 1px solid rgba(255, 255, 255, 0.06);
          display: none;
      }

      .site-header.is-open .nav {
          display: flex;
      }

      .header-inner {
          padding-inline: 16px;
      }

      .nav {
          margin: 0;
      }

      .header-controls {
          margin-left: auto;
      }

      .burger {
          display: flex;
      }

      .site-header.is-open .burger-line:nth-child(1) {
          transform: translateY(11px) rotate(45deg);
      }

      .site-header.is-open .burger-line:nth-child(2) {
          opacity: 0;
      }

      .site-header.is-open .burger-line:nth-child(3) {
          transform: translateY(-11px) rotate(-45deg);
      }

  }



  .hero {
      position: relative;
      padding: 110px 0 140px;
      background-color: #020816;
      background-image:
          url("../img/hero.png");

      background-size: cover;
      background-position: center top;
      color: #ffffff;
  }

  .hero-inner {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 32px;
  }



  .hero-head {
      max-width: 1250px;
      margin: 0 auto 40px;
      text-align: center;
  }

  .hero-title {
      font-size: 32px;
      line-height: 1.35;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.03em;
  }

  .hero-text {
      font-size: 16px;
      line-height: 1.7;
      color: #dde5f3;
      margin-top: 20px;
  }

  .hero-text-secondary {
      margin-top: 20px;
  }



  .hero-layout {
      display: grid;
      grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
      column-gap: 10px;
      align-items: flex-start;
  }



  .hero-left {
      min-width: 0;
  }

  .hero-media-card {
      display: flex;
      flex-direction: column;
      border-radius: 5px;
      overflow: hidden;
      background-color: #000000;
      box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
  }

  .hero-image {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
  }



  .hero-benefits {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 16px 40px 18px;
      background-color: rgba(0, 0, 0, 0.9);
  }

  .hero-benefit {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
  }

  .hero-benefit-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .hero-benefit-icon-img {
      display: block;
      width: 100%;
      height: auto;
  }

  .hero-benefit-caption {
      font-size: 13px;
      color: #f9fafb;
      white-space: nowrap;
  }

  .hero-benefit-divider {
      position: relative;
  }

  .hero-benefit-divider::before {
      content: "";
      position: absolute;
      left: -18px;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 26px;
      background: linear-gradient(180deg, #1bb29a, #1f9fff);
  }



  .hero-right {
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
  }

  .hero-form-card {
      width: 100%;

      border-radius: 26px;
      padding: 30px 30px 32px;
      background-color: #050b17;
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.95);
  }

  .hero-form-title {
      font-size: 20px;
      line-height: 1.4;
      font-weight: 600;
      text-align: center;
      margin-bottom: 24px;
  }

  .hero-form {
      width: 100%;
  }

  .hero-input {
      width: 100%;
      border-radius: 999px;
      border: none;
      padding: 15px 22px;
      margin-bottom: 14px;
      font-size: 14px;
      background-color: #ffffff;
      color: #111827;
      outline: none;
  }

  .hero-input::placeholder {
      color: #6b7280;
  }

  .hero-phone-row {
      display: flex;
      align-items: stretch;
      margin-bottom: 26px;
  }

  .hero-phone-prefix {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0 18px;
      border-radius: 999px;
      border-bottom-right-radius: 0;
      border-top-right-radius: 0;
      background-color: #ffffff;
      font-size: 14px;
      color: #111827;
  }

  .hero-input-phone {
      border-bottom-left-radius: 0;
      border-top-left-radius: 0;
      margin-bottom: 0;
      padding-left: 0;
  }

  .hero-btn {
      width: 100%;
      border-radius: 30px;
      background-color: #00B386;
      border: none;
      color: #ffffff;
      font-weight: 900;
      font-size: 28px;
      text-transform: uppercase;
      padding: 20px 24px;
      cursor: pointer;
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.95);
      transition: background-color 0.18s ease, transform 0.1s ease, box-shadow 0.18s ease;
  }

  .hero-btn:hover {
      background-color: #009872;
      transform: translateY(-2px);
      box-shadow: 0 26px 70px rgba(0, 0, 0, 1);
  }



  .hero-scroll {
      position: absolute;
      left: 50%;
      bottom: -30px;
      transform: translateX(-50%);
      width: 60px;
      height: 60px;
      border-radius: 999px;
      background-color: #00B386;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
  }

  .hero-scroll-arrow {
      width: 12px;
      height: 12px;
      border-left: 2px solid #ffffff;
      border-bottom: 2px solid #ffffff;
      transform: rotate(-45deg);
      margin-top: -2px;
  }



  @media (max-width: 992px) {
      .hero {
          padding: 96px 0 120px;
      }

      .hero-inner {
          padding: 0 20px;
      }

      .hero-layout {
          grid-template-columns: minmax(0, 1fr);
          row-gap: 32px;
      }

      .hero-right {
          justify-content: flex-start;
      }

      .hero-form-card {
          max-width: 100%;
      }
  }

  @media (max-width: 640px) {
      .hero-text {
          font-size: 14px;
      }

      .hero-benefits {
          flex-direction: column;
          align-items: center;
          margin-top: 20px;
      }

      .hero-benefit-caption {
          white-space: normal;
      }

      .hero-benefit-divider::before {
          display: none;
      }

      .hero-btn {
          font-size: 20px;
      }

      .hero-title {
          font-size: 20px;
      }
  }



  .why-now {
      background-color: #ffffff;
      padding: 100px 0 120px;
  }

  .why-now-inner {
      max-width: 1360px;
      width: 100%;
      margin: 0 auto;
      padding: 0 32px;
      text-align: center;
  }

  .why-now-title {
      font-size: 38px;
      line-height: 1.3;
      font-weight: 700;
      color: #27272a;
      margin-bottom: 80px;
  }

  .why-now-grid {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      gap: 40px;
      flex-wrap: wrap;
  }

  .why-now-card {
      flex: 0 0 30%;
      max-width: 320px;
      min-width: 260px;
      background-color: #ffffff;
      border-radius: 32px;
      padding: 40px 36px;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  }

  .why-now-text {
      margin: 0;
      font-size: 18px;
      line-height: 1.6;
      color: #333333;
  }



  @media (max-width: 992px) {
      .why-now {
          padding: 80px 0 100px;
      }

      .why-now-title {
          font-size: 26px;
          margin-bottom: 60px;
      }

      .why-now-card {
          flex: 1 1 45%;
      }

      .why-now-card {
          margin: 0 auto;
      }
  }

  @media (max-width: 640px) {
      .why-now-inner {
          padding: 0 20px;
      }

      .why-now-title {
          font-size: 20px;
          margin-bottom: 40px;
      }

      .why-now-card {
          display: flex;
          align-items: center;
          justify-content: center;
          flex: 1 1 100%;
          max-width: 100%;
          min-height: 200px;
          padding: 0;
      }

      .why-now-text {
          font-size: 16px;
      }
  }



  .what-get {
      background-color: #ffffff;
      padding: 100px 0 120px;
  }

  .what-get-inner {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 32px;
      text-align: center;
  }

  .what-get-title {
      font-size: 38px;
      line-height: 1.3;
      font-weight: 700;
      color: #27272a;
      margin-bottom: 80px;
  }

  .what-get-grid {
      display: flex;
      justify-content: space-around;
      gap: 80px;
      flex-wrap: wrap;
  }

  .what-get-item {
      min-width: 220px;
  }

  .what-get-num {
      font-size: 30px;
      font-weight: 700;
      color: #16a772;

      margin-bottom: 6px;
  }

  .what-get-underline {
      width: 40px;
      height: 3px;
      margin: 0 auto 18px;
      background-color: #16a772;
      border-radius: 999px;
  }

  .what-get-text {
      margin: 0;
      font-size: 18px;
      line-height: 1.6;
      color: #333333;
  }



  @media (max-width: 992px) {
      .what-get {
          padding: 80px 0 100px;
      }

      .what-get-title {
          font-size: 26px;
          margin-bottom: 60px;
      }

      .what-get-grid {
          gap: 40px;
      }
  }

  @media (max-width: 640px) {
      .what-get-inner {
          padding: 0 20px;
      }

      .what-get-title {
          font-size: 22px;
          margin-bottom: 40px;
      }

      .what-get-text {
          font-size: 16px;
      }
  }



  .how-work {
      background-color: #ffffff;
      padding: 100px 0 120px;
  }

  .how-work-inner {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 32px;
  }

  .how-work-title {
      text-align: center;
      font-size: 38px;
      line-height: 1.3;
      font-weight: 700;
      color: #27272a;
      margin-bottom: 56px;
  }

  .how-work-layout {
      display: grid;
      grid-template-columns: minmax(0, 5.5fr) minmax(0, 6.5fr);

      column-gap: 40px;
      align-items: stretch;
  }



  .how-work-left {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }

  .how-work-text {
      font-size: 16px;
      line-height: 1.7;
      color: #333333;
      margin-bottom: 18px;
  }

  .how-work-text:last-of-type {
      margin-bottom: 32px;
  }



  .how-work-btn {
      display: inline-block;
      width: 100%;
      padding: 22px 26px;
      border-radius: 32px;
      border: none;
      background-color: #00B386;
      color: #ffffff;
      font-weight: 900;
      font-size: 28px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      text-align: center;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
      transition: background-color 0.18s ease, transform 0.1s ease, box-shadow 0.18s ease;
  }

  .how-work-btn:hover {
      background-color: #009872;
      transform: translateY(-2px);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  }



  .how-work-right {
      border-radius: 5px;
      overflow: hidden;
  }

  .how-work-image {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
  }



  @media (max-width: 992px) {
      .how-work {
          padding: 80px 0 100px;
      }

      .how-work-inner {
          padding: 0 20px;
      }

      .how-work-title {
          font-size: 26px;
          margin-bottom: 40px;
      }

      .how-work-layout {
          grid-template-columns: minmax(0, 1fr);
          row-gap: 32px;
      }

      .how-work-left {
          order: 1;
      }

      .how-work-right {
          order: 2;
      }

      .how-work-btn {
          max-width: 100%;
      }
  }

  @media (max-width: 640px) {
      .how-work-title {
          font-size: 22px;
      }

      .how-work-text {
          font-size: 15px;
      }

      .how-work-btn {
          font-size: 16px;
      }
  }



  .schemes {
      background-color: #000000;
      padding: 100px 0 90px;
      color: #ffffff;
  }

  .schemes-inner {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 32px;
      text-align: center;
  }

  .schemes-head {
      max-width: 780px;
      margin: 0 auto 60px;
      font-size: 28px;
      font-weight: 700;
      color: #e5e7eb;
  }

  .schemes-head p {
      margin-top: 48px;
  }



  .schemes-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 40px 40px;
      justify-items: center;
      margin-bottom: 60px;
  }

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

  .scheme-circle {
      position: relative;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      overflow: hidden;
  }

  .scheme-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.55);
  }



  .scheme-content {
      position: absolute;
      inset: 0;
      padding: 26px 22px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-size: 13px;
      line-height: 1.6;
      color: #ffffff;
  }

  .scheme-content h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
  }

  .scheme-content p {
      font-size: 20px;
      font-weight: 300;
  }

  .schemes-cta {
      display: flex;
      justify-content: center;
  }

  .schemes-btn {
      display: inline-block;
      width: 100%;
      padding: 22px 30px;
      border-radius: 32px;
      border: none;
      background-color: #00B386;
      color: #ffffff;
      font-weight: 800;
      font-size: 48px;
      text-transform: uppercase;
      text-align: center;
      cursor: pointer;
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
      transition: background-color 0.18s ease, transform 0.1s ease, box-shadow 0.18s ease;
  }

  .schemes-btn:hover {
      background-color: #009872;
      transform: translateY(-2px);
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.7);
  }



  @media (max-width: 992px) {
      .schemes {
          padding: 80px 0 70px;
      }

      .schemes-inner {
          padding: 0 20px;
      }

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

      .scheme-circle {
          width: 340px;
          height: 340px;
      }
  }

  @media (max-width: 640px) {
      .schemes-grid {
          grid-template-columns: minmax(0, 1fr);
      }

      .scheme-circle {
          width: 280px;
          height: 280px;
      }

      .schemes-btn {
          font-size: 16px;
      }

      .scheme-content h3 {
          font-size: 16px;
      }

      .scheme-content p {
          font-size: 16px;
      }
  }



  .why-choose {
      background-color: #000000;
      padding: 90px 0 110px;
      color: #ffffff;
  }

  .why-choose-inner {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 32px;
  }

  .why-choose-title {
      font-size: 32px;
      line-height: 1.3;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 60px;
  }

  .why-choose-grid {
      display: flex;
      gap: 80px;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: nowrap;
  }

  .why-choose-item {
      flex: 1 1 0;
      max-width: 340px;
  }

  .why-choose-item:nth-of-type(2) {
      margin-top: 100px;
  }

  .why-choose-item:nth-of-type(3) {
      margin-top: 200px;
  }

  .why-choose-icon {
      margin-bottom: 24px;
  }

  .why-choose-icon img {
      display: block;
      width: 96px;
      height: auto;
  }

  .why-choose-subtitle {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 14px;
      color: #ffffff;
  }

  .why-choose-text {
      font-size: 15px;
      line-height: 1.7;
      color: #e5e7eb;
  }



  @media (max-width: 1024px) {
      .why-choose-inner {
          padding: 0 20px;
      }

      .why-choose-grid {
          gap: 40px;
      }
  }

  @media (max-width: 768px) {
      .why-choose {
          padding: 70px 0 80px;
      }

      .why-choose-title {
          font-size: 26px;
          margin-bottom: 40px;
          text-align: left;
      }

      .why-choose-grid {
          flex-direction: column;
          gap: 32px;
      }

      .why-choose-item {
          max-width: none;
      }

      .why-choose-item:nth-of-type(2) {
          margin-top: 0;
      }

      .why-choose-item:nth-of-type(3) {
          margin-top: 0;
      }
  }

  @media (max-width: 480px) {
      .why-choose-title {
          font-size: 22px;
      }

      .why-choose-text {
          font-size: 14px;
      }
  }



  .rights {
      background-color: #000000;
      padding: 90px 0 100px;
      color: #ffffff;
  }

  .rights-inner {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 32px;
  }

  .rights-layout {
      display: grid;
      grid-template-columns: minmax(0, 5fr) minmax(0, 5fr);

      column-gap: 40px;
      align-items: center;
  }



  .rights-image-wrap {
      border-radius: 0;
      overflow: hidden;
  }

  .rights-image {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
  }



  .rights-text {
      font-size: 26px;
      line-height: 1.7;
      color: #f9fafb;
  }

  .rights-text p+p {
      margin-top: 28px;
  }



  @media (max-width: 992px) {
      .rights {
          padding: 70px 0 80px;
      }

      .rights-inner {
          padding: 0 20px;
      }

      .rights-layout {
          grid-template-columns: minmax(0, 1fr);
          row-gap: 32px;
      }

      .rights-text {
          font-size: 18px;
      }
  }

  @media (max-width: 640px) {
      .rights-text {
          font-size: 16px;
      }
  }

  .team {
      background-color: #000000;
      color: #ffffff;
      padding: 90px 0 110px;
  }

  .team-inner {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 32px;
  }

  .team-title {
      font-size: 38px;
      line-height: 1.3;
      font-weight: 700;
      margin-bottom: 40px;
  }

  .team-grid {
      display: flex;
      gap: 40px;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 60px;
  }

  .team-card {
      flex: 1 1 0;
      max-width: 340px;
  }

  .team-role {
      font-size: 20px;
      color: #e5e7eb;
      margin-bottom: 8px;
  }

  .team-name {
      font-size: 24px;
      font-weight: 700;
      text-transform: capitalize;
      margin-bottom: 20px;
  }

  .team-photo-wrap {
      background-color: #ffffff;
      margin-bottom: 40px;
  }

  .team-photo {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
  }

  .team-text {
      font-size: 16px;
      line-height: 1.7;
      color: #e5e7eb;
  }

  .team-cta {
      display: flex;
      justify-content: center;
  }

  .team-btn {
      display: inline-block;
      width: 100%;
      padding: 22px 30px;
      border-radius: 32px;
      border: none;
      background-color: #00B386;
      color: #ffffff;
      font-weight: 800;
      font-size: 48px;
      text-transform: uppercase;
      text-align: center;
      cursor: pointer;
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
      transition: background-color 0.18s ease, transform 0.1s ease, box-shadow 0.18s ease;
  }

  .team-btn:hover {
      background-color: #009872;
      transform: translateY(-2px);
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.7);
  }

  @media (max-width: 1024px) {
      .team-inner {
          padding: 0 20px;
      }

      .team-grid {
          gap: 28px;
      }
  }

  @media (max-width: 900px) {
      .team-grid {
          flex-direction: column;
          gap: 32px;
      }

      .team-card {
          max-width: none;
      }
  }

  @media (max-width: 680px) {
      .team-card {
          margin-top: 20px;
      }

      .team-btn {
          font-size: 20px;
      }
  }

  .faq {
      background-color: #ffffff;
      padding: 96px 0 120px;
  }

  .faq-inner {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 48px;
  }

  .faq-title {
      font-size: 38px;
      line-height: 1.3;
      font-weight: 700;
      color: #222222;
      margin-bottom: 40px;
  }

  .faq-block+.faq-block {
      margin-top: 40px;
  }

  .faq-block {
      margin-left: 80px;
  }

  .faq-question {
      font-size: 24px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      color: #333333;
      margin-bottom: 32px;
  }

  .faq-paragraph {
      font-size: 20px;
      line-height: 1.7;
      color: #333333;
      margin-bottom: 18px;
  }

  .faq-subtitle {
      font-size: 20px;
      font-weight: 600;
      color: #333333;
      margin-bottom: 8px;
  }

  .faq-list {
      list-style: none;
      margin: 0;
      padding: 0;
  }

  .faq-list li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 10px;
  }

  .faq-list li::before {
      content: "•";
      position: absolute;
      left: 0;
      top: 4px;
      font-size: 18px;
      line-height: 1;
      color: #333333;
  }

  .faq-list-title {
      font-size: 20px;
      color: #444444;
      margin-bottom: 2px;
  }

  .faq-list-text {
      font-size: 20px;
      color: #333333;
  }

  @media (max-width: 1024px) {
      .faq-inner {
          padding: 0 32px;
      }
  }

  @media (max-width: 768px) {
      .faq {
          padding: 72px 0 90px;
      }

      .faq-inner {
          padding: 0 20px;
      }

      .faq-title {
          font-size: 26px;
          margin-bottom: 28px;
      }

      .faq-block+.faq-block {
          margin-top: 32px;
      }

      .faq-block {
          margin-left: 0;
      }

      .faq-question {
          font-size: 15px;
          margin-bottom: 10px;
      }

      .faq-paragraph,
      .faq-list-title,
      .faq-list-text {
          font-size: 14px;
          line-height: 1.6;
      }
  }

  @media (max-width: 480px) {
      .faq-inner {
          padding: 0 16px;
      }

      .faq-title {
          font-size: 24px;
      }
  }




  .contact {
      position: relative;
      padding: 110px 0 140px;
      background-color: #ffffff;

  }

  .contact-inner {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 32px;
  }



  .contact-head {
      max-width: 1360px;
      margin: 0 auto 40px;
      text-align: center;
  }

  .contact-title {
      font-size: 32px;
      line-height: 1.35;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.03em;
  }

  .contact-text {
      font-size: 15px;
      line-height: 1.7;
      color: #dde5f3;
      margin-bottom: 12px;
  }

  .contact-text-secondary {
      margin-bottom: 0;
  }



  .contact-layout {
      display: grid;
      grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
      column-gap: 10px;
      align-items: flex-start;
  }



  .contact-left {
      min-width: 0;
  }

  .contact-media-card {
      display: flex;
      flex-direction: column;
      overflow: hidden;
  }

  .contact-image {
      display: block;
      width: 100%;
  }



  .contact-benefits {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 16px 40px 18px;
  }

  .contact-benefit {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
  }

  .contact-benefit-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .contact-benefit-icon-img {
      display: block;
      width: 100%;
      height: auto;
  }

  .contact-benefit-caption {
      font-size: 14px;
      color: #333333;
      white-space: nowrap;
  }

  .contact-benefit-divider {
      position: relative;
  }

  .contact-benefit-divider::before {
      content: "";
      position: absolute;
      left: -18px;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 26px;
      background: linear-gradient(180deg, #1bb29a, #1f9fff);
  }



  .contact-right {
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
  }

  .contact-form-card {
      width: 100%;
      background-color: #ffffff;
      color: #333333;
  }

  .contact-form-title {
      font-size: 18px;
      line-height: 1.4;
      font-weight: 600;
      margin-bottom: 10px;
      text-align: center;
  }

  .contact-form-text {
      text-align: center;
      color: #333333;
      margin-bottom: 25px;
  }

  .contact-form {
      width: 100%;
  }

  .contact-input {
      width: 100%;
      border-radius: 999px;
      border: 1px solid #888888;
      padding: 15px 22px;
      margin-bottom: 14px;
      font-size: 14px;
      background-color: #ffffff;
      color: #111827;
      outline: none;
  }

  .contact-input::placeholder {
      color: #6b7280;
  }

  .contact-phone-row {
      display: flex;
      align-items: stretch;
      margin-bottom: 26px;
  }

  .contact-phone-prefix {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0 18px;
      border-radius: 999px;
      border-bottom-right-radius: 0;
      border-top-right-radius: 0;
      background-color: #ffffff;
      border: 1px solid #888888;
      font-size: 14px;
      color: #111827;
      white-space: nowrap;
      border-right: 0;
  }

  .contact-input-phone {
      margin-bottom: 0;
      border-bottom-left-radius: 0;
      border-top-left-radius: 0;
      border-left: 0;
      padding-left: 0;
  }

  .contact-btn {
      width: 100%;
      border-radius: 30px;
      background-color: #00B386;
      border: none;
      color: #ffffff;
      font-weight: 800;
      font-size: 28px;
      text-transform: uppercase;
      padding: 20px 24px;
      cursor: pointer;
      transition: background-color 0.18s ease, transform 0.1s ease, box-shadow 0.18s ease;
  }

  .contact-btn:hover {
      background-color: #009872;
      transform: translateY(-2px);
  }



  .contact-scroll {
      position: absolute;
      left: 50%;
      bottom: -30px;
      transform: translateX(-50%);
      width: 60px;
      height: 60px;
      border-radius: 999px;
      background-color: #00B386;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  }

  .contact-scroll-arrow {
      width: 12px;
      height: 12px;
      border-left: 2px solid #ffffff;
      border-bottom: 2px solid #ffffff;
      transform: rotate(-45deg);
      margin-top: -2px;
  }



  @media (max-width: 992px) {
      .contact {
          padding: 96px 0 120px;
      }

      .contact-inner {
          padding: 0 20px;
      }

      .contact-layout {
          grid-template-columns: minmax(0, 1fr);
          row-gap: 32px;
      }

      .contact-right {
          justify-content: flex-start;
      }

      .contact-form-card {
          max-width: 100%;
      }
  }

  @media (max-width: 640px) {
      .contact-text {
          font-size: 14px;
      }

      .contact-benefits {
          flex-direction: column;
          align-items: center;
          margin-top: 20px;
      }

      .contact-benefit-caption {
          white-space: normal;
      }

      .contact-btn {
          font-size: 20px;
      }

      .contact-benefit-divider::before {
          display: none;
      }
  }

  .footer {
      background-color: #ffffff;
      padding: 50px 0 60px;
  }

  .footer-inner {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
  }

  .footer-left {
      max-width: 520px;
  }

  .footer-logo img {
      display: block;
      max-width: 260px;
      height: auto;
      margin-bottom: 28px;
  }

  .footer-copy {
      font-size: 20px;
      color: #333333;
      margin-bottom: 26px;
  }

  .footer-address-title {
      font-size: 20px;
      font-weight: 600;
      color: #333333;
      margin-bottom: 14px;
  }

  .footer-address {
      font-size: 20px;
      line-height: 1.6;
      color: #333333;
      margin-bottom: 28px;
  }

  .footer-privacy {
      font-size: 20px;
      color: #333333;
      text-decoration: none;
      border-bottom: 1px solid #333333;
  }

  .footer-privacy:hover {
      opacity: 0.8;
  }

  .footer-right {
      max-width: 540px;
      margin-left: auto;
      text-align: right;
  }

  .footer-info-title {
      font-size: 22px;
      font-weight: 600;
      color: #333333;
      margin-bottom: 22px;
  }

  .footer-info-text {
      font-size: 20px;
      color: #333333;
      margin-bottom: 20px;
  }

  .footer-info-text-em {
      color: #c0392b;
  }

  @media (max-width: 1024px) {
      .footer-inner {
          padding: 0 24px;
          flex-direction: column;
          align-items: flex-start;
      }

      .footer-right {
          margin-left: 0;
          margin-top: 32px;
          text-align: left;
      }
  }

  @media (max-width: 768px) {
      .footer {
          padding: 40px 0 50px;
      }

      .footer-inner {
          padding: 0 16px;
      }

      .footer-info-title,
      .footer-info-text {
          font-size: 18px;
      }

      .footer-address,
      .footer-copy,
      .footer-address-title,
      .footer-privacy {
          font-size: 18px;
      }
  }

  .modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
  }

  .modal-backdrop {
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.9);
  }

  .modal-dialog {
      position: relative;
      max-width: 780px;
      width: 100%;
      margin: 0 20px;
      z-index: 1;
  }

  .modal-content {
      background-color: #000000;
      border-radius: 24px;
      padding: 48px 60px 40px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
      color: #ffffff;
      text-align: center;
  }

  .modal-title {
      font-size: 22px;
      line-height: 1.4;
      font-weight: 700;
      margin-bottom: 32px;
  }

  .modal-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
  }

  .modal-input {
      width: 100%;
      height: 50px;
      border-radius: 999px;
      border: none;
      padding: 0 28px;
      font-size: 14px;
      color: #111827;
      outline: none;
  }

  .modal-input::placeholder {
      color: #9ca3af;
  }

  .modal-phone-row {
      display: flex;
      align-items: center;
      height: 50px;
      border-radius: 999px;
      background-color: #ffffff;
      padding: 0 24px;
  }

  .modal-phone-prefix {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-right: 18px;
      font-size: 14px;
      color: #111827;
      white-space: nowrap;
  }

  .modal-flag {
      font-size: 18px;
  }

  .modal-code {
      font-size: 14px;
  }

  .modal-phone-input {
      flex: 1;
      border: none;
      outline: none;
      font-size: 14px;
      color: #111827;
  }

  .modal-phone-input::placeholder {
      color: #9ca3af;
  }

  .modal-checkbox-row {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 6px;
      font-size: 13px;
      color: #f9fafb;
      cursor: pointer;
  }

  .modal-checkbox {
      width: 16px;
      height: 16px;
  }

  .modal-btn {
      margin-top: 20px;
      width: 100%;
      border: none;
      border-radius: 40px;
      background-color: #00B386;
      color: #ffffff;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-align: center;
      padding: 24px 20px;
      cursor: pointer;
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  }

  .modal-btn:hover {
      background-color: #009872;
  }

  .modal-note {
      margin-top: 18px;
      font-size: 13px;
      color: #e5e7eb;
  }

  .modal-note-link {
      color: #ffffff;
      text-decoration: underline;
  }

  .modal-close {
      position: absolute;
      top: -34px;
      right: -6px;
      width: 40px;
      height: 40px;
      background-color: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
  }

  .modal-close-icon {}

  .modal-close-icon img {
      height: 60px;
  }

  .modal.is-open {
      opacity: 1;
      pointer-events: auto;
  }

  @media (max-width: 768px) {
      .modal-content {
          padding: 10px;
          border-radius: 20px;
      }

      .modal-title {
          font-size: 18px;
          margin-bottom: 24px;
      }

      .modal-btn {
          font-size: 18px;
          padding: 20px 14px;
      }

      .modal-close {
          top: -46px;
          right: 0;
      }
  }
