:root {
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-dark: #1e293b;

  --text-main: #334155;
  --text-dark: #0f172a;
  --text-light: #f1f5f9;
  --text-muted: #64748b;

  --primary: #2563eb; /* Deep Blue */
  --primary-hover: #1d4ed8;
  --accent: #10b981; /* Emerald */

  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);

  --font-main: "Segoe UI", system-ui, sans-serif;
  --radius: 8px;
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3rem;
  letter-spacing: -1px;
}
h2 {
  font-size: 2.2rem;
}
h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}
.text-light p {
  color: #cbd5e1;
}

/* Utilities */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.bg-grey {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}
.center {
  text-align: center;
}
.subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
}
.max-800 {
  max-width: 800px;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-dark);
}
.logo i {
  color: var(--primary);
}

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

.desktop-nav {
  display: flex;
  gap: 30px;
}
.desktop-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
}
.desktop-nav a:hover {
  color: var(--primary);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.line {
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-white);
  z-index: 99;
  transform: translateY(-100%);
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.mobile-menu.active {
  transform: translateY(0);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid transparent;
}
.btn--primary {
  background-color: var(--primary);
  color: white;
}
.btn--primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}
.btn--submit {
  background-color: var(--accent);
  color: white;
  width: 100%;
}
.btn--submit:hover {
  opacity: 0.9;
}
.btn--xs {
  padding: 6px 16px;
  font-size: 0.85rem;
  background: var(--primary);
  color: white;
}

/* Hero */
.hero {
  padding: 160px 0 100px;
  background-image: url("./image/background.jpg");
  background-size: cover;
  background-position: center;
  color: var(--text-light);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.label {
  display: inline-block;
  background: #dbeafe;
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero__text {
  font-size: 1.1rem;
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin: 30px 0;
}
.image-container {
  position: relative;
  padding: 10px;
  border: 1px solid var(--border);
  background: #fff;
  transform: rotate(3deg);
  transition: 0.5s;
}
.image-container:hover {
  transform: rotate(0);
}
.visual-decor {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--accent);
  opacity: 0.2;
  z-index: -1;
  border-radius: 50%;
}

/* Cards & Grids */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.card {
  background: var(--bg-white);
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.3s;
}
.card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.card-icon {
  color: var(--primary);
  margin-bottom: 20px;
  width: 40px;
  height: 40px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.info-box {
  padding: 30px;
  border-top: 4px solid var(--primary);
  background: var(--bg-white);
  box-shadow: var(--shadow);
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-layout.reverse {
  direction: rtl;
}
.split-layout.reverse > * {
  direction: ltr;
}

/* Reasons List */
.reasons-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.reasons-list i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
}

/* Text Columns */
.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

/* FAQ Accordion */
.accordion {
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.acc-item {
  border-bottom: 1px solid var(--border);
}
.acc-header {
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  transition: 0.3s;
}
.acc-header:hover {
  color: var(--primary);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}
.acc-body p {
  padding-bottom: 20px;
  color: var(--text-muted);
}

/* Form */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 50px;
  border-radius: var(--radius);
  color: var(--text-dark);
}
.form-header {
  text-align: center;
  margin-bottom: 30px;
}
.clean-form .input-group {
  margin-bottom: 20px;
}
.clean-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}
.clean-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 1rem;
  transition: 0.3s;
}
.clean-form input:focus {
  border-color: var(--primary);
  outline: none;
}
.checkbox-group {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 25px;
  flex-wrap: wrap;
  white-space: wrap;
}
.checkbox-group label {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-muted);
}
.checkbox-group input {
  margin-top: 4px;
}
.checkbox-group a {
  color: var(--primary);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 80px 0 30px;
  font-size: 0.9rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer .logo {
  color: #f8fafc;
  margin-bottom: 20px;
}
.footer h4 {
  color: #f8fafc;
  margin-bottom: 20px;
  font-size: 1rem;
}
.footer a,
.footer p {
  display: block;
  margin-bottom: 10px;
  color: #94a3b8;
}
.footer a:hover {
  color: #fff;
}
.footer__bottom {
  border-top: 1px solid #334155;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
}

/* Cookie */
.cookie-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  width: 340px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 200;
  display: none;
}
.cookie-content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  h1 {
    font-size: 2.5rem;
  }
  .hero__grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    text-align: center;
    justify-content: center;
  }
  .hero__content {
    order: 2;
  }
  .hero__visual {
    order: 1;
    margin-bottom: 40px;
  }
  .hero__content h1 {
    font-size: 2rem;
  }
  .cards-grid,
  .grid-3,
  .split-layout,
  .text-columns,
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .form-container {
    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(--bg-dark);
  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;
}
