:root {
  --bg-color: #f9f7f2;
  --text-color: #2d3436;
  --primary-color: #00cec9; /* Teal */
  --secondary-color: #ff7675; /* Coral */
  --accent-color: #74b9ff; /* Warm Blue */
  --white: #ffffff;
  --border-radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --font-main: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.8rem;
}
h2 {
  font-size: 2.2rem;
}
h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

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

img {
  max-width: 100%;
  border-radius: var(--border-radius);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn--primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 206, 201, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 206, 201, 0.4);
}

.btn--secondary {
  background-color: var(--white);
  color: var(--text-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn--secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.9rem;
  background-color: var(--secondary-color);
  color: var(--white);
}

.full-width {
  width: 100%;
}

/* HEADER */
.header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  background-color: rgba(249, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-color);
}

.logo i {
  color: var(--secondary-color);
}

.desktop-nav {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  font-weight: 500;
  position: relative;
}

.desktop-nav a:hover {
  color: var(--secondary-color);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

/* HERO */
.hero {
  padding: 80px 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero__actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.image-box {
  position: relative;
}

.image-box::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: var(--border-radius);
  z-index: -1;
  opacity: 0.2;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section--bg {
  background-color: var(--white);
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* CARDS */
.card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
}

.icon--coral {
  background-color: var(--secondary-color);
}
.icon--green {
  background-color: var(--primary-color);
}
.icon--blue {
  background-color: var(--accent-color);
}

/* STEPS */
.steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  background: var(--bg-color);
  padding: 30px;
  border-radius: var(--border-radius);
}

.step__num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

/* HIGHLIGHT BOX */
.highlight-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #e0f2f1;
  padding: 20px;
  border-radius: var(--border-radius);
  color: #00695c;
  margin-top: 20px;
}

/* CASES */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.case-card__body {
  padding: 20px;
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* FEATURES ROW */
.features-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary-color);
}

/* FAQ */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.accordion {
  margin-top: 40px;
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-header {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  text-align: left;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content p {
  padding-bottom: 20px;
  color: #636e72;
}

/* FORM */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background-color: var(--white);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
  font-weight: 600;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

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

.checkbox-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
}

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

.logo img {
  width: 30px;
  height: 30px;
}

/* FOOTER */
.footer {
  background-color: var(--white);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.footer__col p,
.footer__col a {
  display: block;
  margin-bottom: 10px;
  color: #636e72;
}

.footer__col a:hover {
  color: var(--primary-color);
}

.footer__bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: #b2bec3;
  font-size: 0.9rem;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__head {
  padding: 20px;
  display: flex;
  justify-content: flex-end;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 700;
}

/* COOKIE */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: 350px;
  z-index: 150;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 2rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .burger-btn {
    display: block;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .image-box::before {
    display: none;
  }
  .grid-3,
  .grid-2,
  .cases-grid,
  .footer__grid,
  .form-wrap {
    grid-template-columns: 1fr;
  }
  .visual-block {
    order: -1;
  }
  .form-wrap {
    padding: 30px;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
}
