@charset "UTF-8";
:root {
  --color-background: #ffffff;
  --color-background-revers: #0f1b2d;
  --color-surface: #f0f0f0;
  --color-primary: #26B26A;
  --color-secondary: #2FC2A6;
  --color-accent: #E1733A;
  --color-text: #253955;
  --color-text-revers:#ffffff;
  --color-muted: #8a9eb5;
  --color-hero: #f0f0f0;
  --color-hover: #0f1b2d;
  --color-hover-text:#ffffff;
}

[data-theme=dark] {
  --color-background: #0f1b2d;
  --color-background-revers: #ffffff;
  --color-surface: #253955;
  --color-primary: #26B26A;
  --color-secondary: #2FC2A6;
  --color-accent: #E1733A;
  --color-text: #ffffff;
  --color-text-revers:#253955;
  --color-muted: #cccccc;
  --color-hero: #ffffff;
  --color-hover: #ffffff;
  --color-hover-text:#253955;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal.show {
  display: block !important;
}

#passwordModal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: var(--color-background);
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.close {
  color: var(--color-muted);
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: var(--color-text);
}

.modal-content h2 {
  color: var(--color-text);
  margin-bottom: 20px;
  font-size: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--color-text);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--color-surface);
  border-radius: 6px;
  font-size: 16px;
  background-color: var(--color-background);
  color: var(--color-text);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group input[readonly] {
  background-color: var(--color-surface);
  cursor: not-allowed;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

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

.calltoaction__content__text button {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  display: inline-block;
}

.calltoaction__content__text button:hover {
  background-color: var(--color-secondary);
}

.modal-footer {
  margin-top: 20px;
  text-align: center;
  color: var(--color-muted);
}

.modal-footer a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.modal-footer a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Popup Modal Styles */
.popup-modal {
  z-index: 1001;
}

.popup-content {
  max-width: 450px;
  margin: 10% auto;
  padding: 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;
  animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.popup-header {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-muted);
  position: relative;
}

.popup-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 16px;
  font-weight: bold;
}

.popup-icon.success {
  background: #d4edda;
  color: #155724;
}

.popup-icon.error {
  background: #f8d7da;
  color: #721c24;
}

.popup-icon.warning {
  background: #fff3cd;
  color: #856404;
}

.popup-icon.info {
  background: #d1ecf1;
  color: #0c5460;
}

.popup-icon.question {
  background: #e7f3ff;
  color: #0066cc;
}

.popup-header h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 600;
  flex-grow: 1;
}

.popup-header .close {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--color-muted);
  cursor: pointer;
  transition: color 0.3s;
}

.popup-header .close:hover {
  color: var(--color-text);
}

.popup-body {
  padding: 25px;
}

.popup-body p {
  margin: 0 0 15px 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.5;
}

.popup-input-container {
  margin-top: 15px;
}

.popup-input-container input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--color-surface);
  border-radius: 8px;
  font-size: 16px;
  background: var(--color-background);
  color: var(--color-text);
  transition: border-color 0.3s;
}

.popup-input-container input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.popup-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px 25px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-muted);
}

.popup-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 80px;
}

.popup-btn-primary {
  background: var(--color-primary);
  color: white;
}

.popup-btn-primary:hover {
  background: var(--color-secondary);
  transform: translateY(-1px);
}

.popup-btn-secondary {
  background: var(--color-background);
  color: var(--color-text);
  border: 2px solid var(--color-surface);
}

.popup-btn-secondary:hover {
  background: var(--color-surface);
  border-color: var(--color-muted);
}

/* Comprehensive Responsive Design */
/* Mobile First Approach */

/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  .conteiner {
    padding: 0 15px;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .header__content {
    padding: 15px 0;
  }
  
  .header__content__nav {
    display: none;
  }
  
  .hero__content h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .hero__content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .content__li {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .content__li__img {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .price__content__ul {
    flex-direction: column;
    gap: 20px;
  }
  
  .price__content__li {
    max-width: 100%;
  }
  
  .modal-content {
    width: 95%;
    margin: 10% auto;
    padding: 20px;
  }
  
  .popup-content {
    margin: 15% auto;
    width: 90%;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .conteiner {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .hero__content h1 {
    font-size: 32px;
  }
  
  .content__li {
    flex-direction: column;
    text-align: center;
  }
  
  .price__content__ul {
    flex-direction: column;
    gap: 25px;
  }
  
  .modal-content {
    width: 90%;
    padding: 25px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .conteiner {
    max-width: 720px;
    margin: 0 auto;
  }
  
  .hero__content h1 {
    font-size: 36px;
  }
  
  .content__li {
    flex-direction: row;
  }
  
  .content__li:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .price__content__ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .price__content__li {
    flex: 1;
    min-width: 300px;
  }
  
  .modal-content {
    width: 80%;
  }
  
  .popup-content {
    max-width: 400px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .conteiner {
    max-width: 960px;
    margin: 0 auto;
  }
  
  .hero__content h1 {
    font-size: 42px;
  }
  
  .price__content__ul {
    flex-direction: row;
    gap: 30px;
  }
  
  .price__content__li {
    flex: 1;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .conteiner {
    max-width: 1140px;
    margin: 0 auto;
  }
  
  .hero__content h1 {
    font-size: 48px;
  }
}

/* Mobile Menu Improvements */
@media (max-width: 767.98px) {
  .header__mob {
    display: block;
  }
  
  .header {
    display: none;
  }
  
  .header__mob__menu {
    position: fixed;
    top: 0;
    /* left: -100%; */
    width: 80%;
    height: 100vh;
    background: var(--color-background);
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  }
  
  /* .header__mob__menu.open {
    left: 0;
  } */
  
  /* Prevent body scroll when mobile menu is open */
  body.menu-open {
    overflow: hidden;
  }

  
  .header__mob__menu__list {
    list-style: none;
    padding: 40px 0;
  }
  
  .header__mob__menu__list li {
    margin-bottom: 20px;
  }
  
  .header__mob__menu__list a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-surface);
  }
}

/* Modal Responsive Improvements */
@media (max-width: 575.98px) {
  .modal {
    padding: 10px;
  }
  
  .modal-content {
    margin: 5% auto;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .popup-header {
    padding: 15px 20px;
  }
  
  .popup-body {
    padding: 20px;
  }
  
  .popup-footer {
    padding: 15px 20px;
    flex-direction: column;
    gap: 10px;
  }
  
  .popup-btn {
    width: 100%;
  }
}

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

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

body {
  width: 100%;
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: "Inter", sans-serif;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
  margin: 0;
  padding: 0;
}

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

li {
  list-style: none;
}

.card {
  background: var(--color-surface);
}

#themeToggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.conteiner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 1280px) {
  .conteiner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1279px) {
  .header {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .lang-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.25rem;
    font-weight: 500;
  }
  .lang-btn {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: var(--color-text, #1c2b45);
    padding: 0.3rem 0.6rem;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .lang-btn.active {
    font-weight: 700;
    border-bottom: 2px solid var(--color-primary, #26C281);
  }
  .lang-btn:hover {
    opacity: 0.8;
  }
  .divider {
    color: var(--color-muted, #8a9eb5);
  }
  .header {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 24px 0;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-background);
    -webkit-box-shadow: 0px 1px 4px 0px var(--color-muted);
            box-shadow: 0px 1px 4px 0px var(--color-muted);
  }
  .header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__content__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__content__ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header__content__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
  .header__content__logo > img {
    width: 50px;
    height: 50px;
  }
  .header__content__logo__text {
    font-family: Inter;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0%;
    text-align: left;
  }
  .header__content__li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
    border-radius: 25px;
    padding: 6px 12px;
    -webkit-transition: border 1s ease-in-out, -webkit-box-shadow 1s ease-in-out;
    transition: border 1s ease-in-out, -webkit-box-shadow 1s ease-in-out;
    transition: border 1s ease-in-out, box-shadow 1s ease-in-out;
    transition: border 1s ease-in-out, box-shadow 1s ease-in-out, -webkit-box-shadow 1s ease-in-out;
  }
  .header__content__li:hover {
    -webkit-box-shadow: 0px 1px 4px 0px var(--color-muted);
            box-shadow: 0px 1px 4px 0px var(--color-muted);
  }
}
@media screen and (max-width: 1279px) {
  .header__mob {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--color-background);
    padding: 12px 0;
    /* SVG кнопки */
  }
  .header__mob__content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__mob__content > button {
    text-decoration: none;
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .header__mob__content > button > svg {
    fill: var(--color-text);
  }
  .header__mob__content__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .header__mob__content__logo__text > p {
    margin: 0;
    font-weight: bold;
  }
  .header__mob__link__list2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 21px;
  }
  .header__mob__link__list2__li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50px;
  }
  .header__mob__link__list2__li > a > svg {
    width: 50px;
    fill: var(--color-text);
  }
  .header__mob__menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--color-background);
    padding: 24px 10px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    z-index: 2000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__mob__menu__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 15px;
  }
  .header__mob__menu__box > button {
    text-decoration: none;
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .header__mob__menu__box > button > svg {
    fill: var(--color-text);
  }
  .header__mob__menu__list {
    list-style: none;
    padding: 0 20px;
    margin: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .header__mob__menu__list__li {
    margin: 15px 0;
  }
  .header__mob__menu__list__li > a, .header__mob__menu__list__li > button {
    text-decoration: none;
    color: var(--color-text);
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
  }
  .header__mob__menu__list__li > a:hover, .header__mob__menu__list__li > button:hover {
    -webkit-box-shadow: 0px 1px 4px 0px var(--color-muted);
            box-shadow: 0px 1px 4px 0px var(--color-muted);
  }
  .header__mob__menu.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-box-shadow: -2px 0 8px var(--color-background-revers);
            box-shadow: -2px 0 8px var(--color-background-revers);
  }
  .header__mob button svg {
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .header__mob {
    display: none;
  }
}
.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 80px 0;
  height: auto;
}
.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.hero__content__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px;
  gap: 24px;
}
.hero__content__text > h1 {
  width: 100%;
  font-family: Inter;
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: center;
}
.hero__content__text > p {
  width: 100%;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}
.hero__content__text > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 18px 14px 18px;
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0%;
  border-radius: 6px;
  -webkit-box-shadow: 0px 1px 4px 0px var(--color-muted);
          box-shadow: 0px 1px 4px 0px var(--color-muted);
  background: var(--color-background);
  -webkit-transition: background 1s ease-in-out, color 1s ease-in-out;
  transition: background 1s ease-in-out, color 1s ease-in-out;
}
.hero__content__text > a:hover {
  background: var(--color-hover);
  color: var(--color-hover-text);
}
.hero__content__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 650px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 25px;
}
.hero__content__img > img {
  width: 90%;
}

@media screen and (min-width: 1280px) {
  .hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 80px 0;
    height: 100vh;
  }
  .hero__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero__content__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0px;
    gap: 24px;
  }
  .hero__content__text > h1 {
    font-family: Inter;
    font-size: 52px;
    font-weight: 800;
    line-height: 48px;
    letter-spacing: 0%;
    text-align: left;
  }
  .hero__content__text > p {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: left;
  }
  .hero__content__text > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 14px 18px 14px 18px;
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0%;
    border-radius: 6px;
    -webkit-box-shadow: 0px 1px 4px 0px var(--color-muted);
            box-shadow: 0px 1px 4px 0px var(--color-muted);
    background: var(--color-background);
    -webkit-transition: background 1s ease-in-out, color 1s ease-in-out;
    transition: background 1s ease-in-out, color 1s ease-in-out;
  }
  .hero__content__text > a:hover {
    background: var(--color-hover);
    color: var(--color-hover-text);
  }
  .hero__content__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40%;
    max-width: 650px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 25px;
  }
  .hero__content__img > img {
    width: 90%;
  }
}
.stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.stats__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.stats__content > h2 {
  font-family: Inter;
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: 0%;
  text-align: center;
}
.stats__content__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.stats__content__text__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.stats__content__text__li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 24px 32px 24px;
  border: 1px solid var(--color-muted);
  border-radius: 10px;
  -webkit-box-shadow: 0px 1px 4px 0px var(--color-hover);
          box-shadow: 0px 1px 4px 0px var(--color-hover);
}
.stats__content__text__li > h3 {
  font-family: Inter;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
}
.stats__content__text__li > p {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}

@media screen and (min-width: 1280px) {
  .stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .stats__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }
  .stats__content > h2 {
    font-family: Inter;
    font-size: 30px;
    font-weight: 800;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: center;
  }
  .stats__content__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .stats__content__text__ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 22px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
  .stats__content__text__li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 32px 24px 32px 24px;
    border: 1px solid var(--color-muted);
    border-radius: 10px;
    -webkit-box-shadow: 0px 1px 4px 0px var(--color-hover);
            box-shadow: 0px 1px 4px 0px var(--color-hover);
  }
  .stats__content__text__li > h3 {
    font-family: Inter;
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
  }
  .stats__content__text__li > p {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
  }
}
.cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 80px 0;
}
.cont__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
}
.cont__content__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.cont__content__title > h2 {
  font-family: Inter;
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: 0%;
  text-align: center;
}
.cont__content__title > p {
  width: 75%;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}
.cont__content__project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cont__content__project__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.cont__content__project__li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cont__content__project__li > img {
  width: 60%;
}
.cont__content__project__li__div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cont__content__project__li__div > h3 {
  width: 100%;
  font-family: Inter;
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
}
.cont__content__project__li__div > p {
  width: 100%;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}
.cont__content__project__li-rev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cont__content__project__li-rev > img {
  width: 60%;
}
.cont__content__project__li-rev__div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cont__content__project__li-rev__div > h3 {
  width: 100%;
  font-family: Inter;
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
}
.cont__content__project__li-rev__div > p {
  width: 100%;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}

@media screen and (min-width: 1280px) {
  .cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 80px 0;
  }
  .cont__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 56px;
  }
  .cont__content__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
  .cont__content__title > h2 {
    font-family: Inter;
    font-size: 30px;
    font-weight: 800;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: center;
  }
  .cont__content__title > p {
    width: 75%;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
  }
  .cont__content__project {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cont__content__project__ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .cont__content__project__li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cont__content__project__li > img {
    width: 300px;
  }
  .cont__content__project__li > h3 {
    font-family: Inter;
    font-size: 18px;
    font-weight: 800;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: left;
  }
  .cont__content__project__li > p {
    width: 336px;
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: left;
  }
  .cont__content__project__li-rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 80px 0;
}
.price__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 34px;
}
.price__content__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.price__content__title > h2 {
  font-family: Inter;
  font-size: 36px;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
}
.price__content__title > p {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}
.price__content__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.price__content__li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 560px;
  gap: 50px;
  padding: 32px 24px 32px 24px;
  border: 1px solid var(--color-muted);
  border-radius: 8px;
  -webkit-box-shadow: 0px 1px 4px 0px var(--color-hover);
          box-shadow: 0px 1px 4px 0px var(--color-hover);
  background: var(--color-background);
}
.price__content__li__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.price__content__li__title > p {
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 6%;
  text-align: left;
}
.price__content__li__title > h3 {
  font-family: Inter;
  font-size: 38px;
  font-weight: 900;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: left;
}
.price__content__li__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.price__content__li__about > p {
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
}
.price__content__li__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 18px 14px 18px;
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0%;
  border-radius: 6px;
  -webkit-box-shadow: 0px 1px 4px 0px var(--color-muted);
          box-shadow: 0px 1px 4px 0px var(--color-muted);
  background: var(--color-background);
  color: var(--color-text);
  -webkit-transition: background 1s ease-in-out, color 1s ease-in-out;
  transition: background 1s ease-in-out, color 1s ease-in-out;
}
.price__content__li__btn:hover {
  background: var(--color-hover);
  color: var(--color-hover-text);
}

@media screen and (min-width: 1280px) {
  .price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 80px 0;
  }
  .price__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 34px;
  }
  .price__content__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .price__content__title > h2 {
    font-family: Inter;
    font-size: 36px;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
  }
  .price__content__title > p {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
  }
  .price__content__ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    gap: 24px;
  }
  .price__content__li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    max-width: 460px;
    gap: 50px;
    padding: 32px 24px 32px 24px;
    border: 1px solid var(--color-muted);
    border-radius: 8px;
    -webkit-box-shadow: 0px 1px 4px 0px var(--color-hover);
            box-shadow: 0px 1px 4px 0px var(--color-hover);
    background: var(--color-background);
  }
  .price__content__li__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
  .price__content__li__title > p {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 6%;
    text-align: left;
  }
  .price__content__li__title > h3 {
    font-family: Inter;
    font-size: 48px;
    font-weight: 900;
    line-height: 48px;
    letter-spacing: 0%;
    text-align: left;
  }
  .price__content__li__about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  .price__content__li__about > p {
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: left;
  }
  .price__content__li__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 14px 18px 14px 18px;
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0%;
    border-radius: 6px;
    -webkit-box-shadow: 0px 1px 4px 0px var(--color-muted);
            box-shadow: 0px 1px 4px 0px var(--color-muted);
    background: var(--color-background);
    color: var(--color-text);
    -webkit-transition: background 1s ease-in-out, color 1s ease-in-out;
    transition: background 1s ease-in-out, color 1s ease-in-out;
  }
  .price__content__li__btn:hover {
    background: var(--color-hover);
    color: var(--color-hover-text);
  }
}
.accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 80px 0;
}
.accordion__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.accordion__content__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.accordion__content__title > h2 {
  font-family: Inter;
  font-size: 36px;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
}
.accordion__content__title > p {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}
.accordion__content__faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.accordion__content__li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 10px;
  padding: 20px 24px;
  border-radius: 20px;
  border-top: 1px solid var(--color-muted);
  background: var(--color-background);
  cursor: pointer;
  -webkit-transition: background 1s ease-in-out;
  transition: background 1s ease-in-out;
}
.accordion__content__li__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 24px;
}
.accordion__content__li__title .accordion-icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  font-size: 24px;
  font-weight: bold;
}
.accordion__content__li.active {
  background: var(--color-muted);
}
.accordion__content__li.active .accordion-icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.accordion__content__li .accordion-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-transition: max-height 1s ease-in-out, opacity 1s ease-in-out;
  transition: max-height 1s ease-in-out, opacity 1s ease-in-out;
}
.accordion__content__li.active .accordion-answer {
  max-height: 300px;
  opacity: 1;
}

@media screen and (min-width: 1280px) {
  .accordion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 80px 0;
  }
  .accordion__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 32px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .accordion__content__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .accordion__content__title > h2 {
    font-family: Inter;
    font-size: 36px;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
  }
  .accordion__content__title > p {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
  }
  .accordion__content__faq {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
  .accordion__content__li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 70%;
    gap: 10px;
    padding: 20px 24px;
    border-radius: 20px;
    border-top: 1px solid var(--color-muted);
    background: var(--color-background);
    cursor: pointer;
    -webkit-transition: background 1s ease-in-out;
    transition: background 1s ease-in-out;
  }
  .accordion__content__li__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .accordion__content__li__title .accordion-icon {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    font-size: 24px;
    font-weight: bold;
  }
  .accordion__content__li.active {
    background: var(--color-muted);
  }
  .accordion__content__li.active .accordion-icon {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .accordion__content__li .accordion-answer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    -webkit-transition: max-height 1s ease-in-out, opacity 1s ease-in-out;
    transition: max-height 1s ease-in-out, opacity 1s ease-in-out;
  }
  .accordion__content__li.active .accordion-answer {
    max-height: 300px;
    opacity: 1;
  }
}
.testimonial {
  width: 100%;
  padding: 80px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-surface);
}
.testimonial__content {
  max-width: 1440px;
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
.testimonial__content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-revers);
}
.testimonial__content p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.testimonial__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1440px;
}
.testimonial__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  border: 1px solid var(--color-muted);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.testimonial__btn svg {
  width: 20px;
  height: 20px;
  fill: var(--color-background-revers);
}
.testimonial__btn:hover {
  background: var(--color-background);
}
.testimonial__btn.next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.testimonial .swiper-container {
  width: 100%;
  max-width: 1200px;
}
.testimonial .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.testimonial .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  background: var(--color-background-revers);
  border-radius: 12px;
  padding: 32px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.testimonial .swiper-slide .avatar {
  font-size: 40px;
  margin-bottom: 16px;
}
.testimonial .swiper-slide h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text-revers);
}
.testimonial .swiper-slide p {
  font-size: 15px;
  color: var(--color-text-revers);
  margin-bottom: 12px;
}
.testimonial .swiper-slide strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-revers);
}
.testimonial .swiper-slide span {
  display: block;
  font-size: 14px;
  color: #888;
}
.testimonial .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
}
.testimonial .pagination__button {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border-radius: 50%;
  border: none;
  background: none;
  cursor: pointer;
}
.testimonial .pagination__button__active {
  background: #333;
}

@media screen and (max-width: 1279px) {
  .swiper-slide {
    max-width: 90%;
  }
  .testimonial__btn {
    display: none;
  }
}
.calltoaction {
  width: 100%;
  background-color: var(--color-background-revers);
  padding: 80px 0;
}
.calltoaction__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 24px;
}
.calltoaction__content__img {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.calltoaction__content__img > img {
  width: 100%;
}
.calltoaction__content__text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 38px;
}
.calltoaction__content__text > h2 {
  color: var(--color-text-revers);
  font-family: Inter;
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: 0%;
  text-align: center;
}
.calltoaction__content__text > p {
  color: var(--color-text-revers);
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}
.calltoaction__content__text > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 18px 14px 18px;
  width: 180px;
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0%;
  border-radius: 6px;
  -webkit-box-shadow: 0px 1px 4px 0px var(--color-muted);
          box-shadow: 0px 1px 4px 0px var(--color-muted);
  background: var(--color-background);
  -webkit-transition: background 1s ease-in-out, color 1s ease-in-out;
  transition: background 1s ease-in-out, color 1s ease-in-out;
}
.calltoaction__content__text > a:hover {
  background: var(--color-hover);
  color: var(--color-hover-text);
}

@media screen and (min-width: 1280px) {
  .calltoaction {
    width: 100%;
    background-color: var(--color-background-revers);
    padding: 80px 0;
  }
  .calltoaction__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .calltoaction__content__img {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .calltoaction__content__img > img {
    width: 100%;
  }
  .calltoaction__content__text {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 38px;
  }
  .calltoaction__content__text > h2 {
    color: var(--color-text-revers);
    font-family: Inter;
    font-size: 30px;
    font-weight: 800;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: left;
  }
  .calltoaction__content__text > p {
    color: var(--color-text-revers);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: left;
  }
  .calltoaction__content__text > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 14px 18px 14px 18px;
    width: 180px;
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0%;
    border-radius: 6px;
    -webkit-box-shadow: 0px 1px 4px 0px var(--color-muted);
            box-shadow: 0px 1px 4px 0px var(--color-muted);
    background: var(--color-background);
    -webkit-transition: background 1s ease-in-out, color 1s ease-in-out;
    transition: background 1s ease-in-out, color 1s ease-in-out;
  }
  .calltoaction__content__text > a:hover {
    background: var(--color-hover);
    color: var(--color-hover-text);
  }
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.reviews__content {
  text-align: center;
}

.reviews__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.reviews__subtitle {
  font-size: 1.2rem;
  color: var(--color-muted);
  margin-bottom: 3rem;
}

.reviews__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-client {
  font-weight: 600;
  color: var(--color-text);
  font-size: 1.1rem;
}

.review-rating {
  display: flex;
  gap: 2px;
}

.review-rating .star {
  color: #ffd700;
  font-size: 16px;
}

.review-project {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.review-comment {
  color: var(--color-text);
  line-height: 1.6;
  font-style: italic;
  position: relative;
}

.review-comment::before {
  content: '"';
  font-size: 3rem;
  color: var(--color-primary);
  position: absolute;
  top: -10px;
  left: -10px;
  line-height: 1;
}

.review-comment::after {
  content: '"';
  font-size: 3rem;
  color: var(--color-primary);
  position: absolute;
  bottom: -20px;
  right: -10px;
  line-height: 1;
}

.review-date {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  text-align: right;
}

.reviews__loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--color-muted);
}

.reviews__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .reviews {
    padding: 60px 0;
  }
  
  .reviews__title {
    font-size: 2rem;
  }
  
  .reviews__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
}

.footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 0;
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.footer__content__logo {
  width: 60px;
  height: 60px;
}
.footer__content__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__content__text > p {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
}
.footer__content__text__document {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.footer__content__text__document > p {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__content__text__document > p > a {
  width: 100%;
  text-decoration: underline;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
}
.footer__content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__content__list__li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__content__list__li > a > svg {
  width: 40px;
  height: 40px;
  fill: var(--color-text);
  -webkit-transition: border 1s ease-in-out;
  transition: border 1s ease-in-out;
}

@media screen and (min-width: 1280px) {
  .footer {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px 0;
  }
  .footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__content__logo {
    width: 100px;
    height: 100px;
  }
  .footer__content__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__content__text__document {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
  }
  .footer__content__text__document > p > a {
    text-decoration: underline;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0%;
  }
  .footer__content__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__content__list__li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50px;
  }
  .footer__content__list__li > a > svg {
    width: 50px;
    fill: var(--color-text);
    -webkit-transition: border 1s ease-in-out;
    transition: border 1s ease-in-out;
  }
}
.swiper-container {
  width: 100%;
  overflow: hidden;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}
.swiper-slide > img {
  width: 100%;
  height: 100%;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0 0 0;
}

@media screen and (min-width: 1280px) {
  .swiper-container {
    width: 100%;
    overflow: hidden;
  }
  .swiper-wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .swiper-slide {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    display: block;
  }
  .swiper-slide > img {
    width: 100%;
    height: 100%;
  }
  .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 0 0 0;
  }
}/*# sourceMappingURL=main.css.map */




/* Admin Popup Additional Styles */
.admin-user-info {
  text-align: center;
  margin-bottom: 25px;
}

.admin-user-info p:first-child {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.admin-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-primary-btn {
  background-color: var(--color-primary);
  color: white;
}

.admin-primary-btn:hover {
  background-color: var(--color-secondary) !important;
}

.admin-danger-btn {
  background-color: #dc3545 !important;
  color: white !important;
}

.admin-danger-btn:hover {
  background-color: #c82333 !important;
}

.cancel-btn {
  background-color: transparent !important;
  border: 1px solid var(--color-border) !important;
  color: var(--color-text) !important;
  padding: 12px 24px !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  font-weight: 400 !important;
}

.cancel-btn:hover {
  background-color: var(--color-surface) !important;
  border-color: var(--color-muted) !important;
}
