@import url(https://fonts.googleapis.com/css?family=DM+Sans:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
.break {
  word-break: break-all;
}
a,
button {
  text-align: center;
  width: fit-content;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s linear;
  border: none;
}
button:focus,
a:focus {
  outline: 4px solid #fff;
  filter: brightness(90%);
}
@media (hover: hover) {
  button:hover,
  a:hover {
    filter: brightness(80%);
  }
}
.p0 {
  padding: 0 !important;
}
textarea,
input {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
}

main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
:root {
  scroll-behavior: smooth;
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
}
body {
  /* background: #000 url(../images/bg.png) center / cover no-repeat; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* terms */
.th,
.terms {
  flex-grow: 1;
  padding-block: 150px 50px;
}
.th__title {
  color: #04141d;
  text-align: center;
  font-family: "DM Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 52.8px */
  letter-spacing: 1.92px;
  margin-bottom: 32px;
}
.th__btn {
  display: block;
  width: fit-content;
  margin-inline: auto;
  border-radius: 40px;
  background: #0080ff;
  padding: 20px 48px;
  color: #fff;
  text-align: center;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  text-transform: uppercase;
}
.terms__title {
  color: #04141d;
  text-align: center;
  font-family: "DM Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 52.8px */
  letter-spacing: 1.92px;
  margin-bottom: 48px;
}
.terms p {
  color: #04141d;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
@media (max-width: 768px) {
  .terms__title {
    font-size: 32px;
  }
}
/* cookie */
.cookie-notification {
  position: fixed;
  bottom: 0;
  box-sizing: border-box;
  z-index: 5;
  width: 100%;
  padding-block: 30px;
  background-color: #fff;
  display: none;
}

.cookie__title {
  color: #04141d;
  font-family: "DM Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 52.8px */
  letter-spacing: 1.92px;
  margin-bottom: 12px;
}

.cookie__text {
  color: #04141d;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  margin-bottom: 32px;
}

.cookie__btns {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.cookieBtn {
  display: block;
  width: fit-content;
  margin-inline: auto;
  border-radius: 40px;
  padding: 20px 48px;

  color: #0080ff;
  text-align: center;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  text-transform: uppercase;
}
.cookieBtn:first-child {
  background: #0080ff;
  color: #fff;
}
@media (max-width: 520px) {
  .cookie__btns {
    flex-direction: column;
    align-items: initial;
  }

  .cookieBtn {
    width: 100%;
  }
}

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

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #333;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
}

.cta-button {
  background: #007bff;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  display: block;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 1.5rem;
}

.cta-button:hover {
  background: #0056b3;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: white;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s;
}

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

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.service-card p {
  color: #666;
  font-size: 1rem;
}

/* Tools Section */
.tools {
  padding: 80px 0;
  background: #1a1a1a;
  color: white;
}

.tools-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tools-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.tools-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.tools-list {
  list-style: none;
  margin-bottom: 2rem;
}

.tools-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #ccc;
  text-align: left;
}

.tools-list li::before {
  content: "•";
  color: #007bff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.tools-image {
  text-align: center;
}

.tools-image img {
  border-radius: 10px;
}

/* Why Choose Section */
.why-choose {
  padding: 80px 0;
  background: #f8f9fa;
}

.why-choose h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature p {
  color: #666;
  font-size: 0.95rem;
}

/* Demo Account Section */
.demo-account {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.demo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.demo-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.demo-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.demo-features {
  list-style: none;
  margin-bottom: 2rem;
}

.demo-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #ccc;
}

.demo-features li::before {
  content: "✓";
  color: #00ff00;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.demo-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.demo-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-form input,
.demo-form textarea {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.demo-form textarea {
  min-height: 100px;
  resize: vertical;
}

.submit-button {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-button:hover {
  background: #0056b3;
}

.demo-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
  opacity: 0.3;
}

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

/* Footer */
.footer {
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  margin-bottom: 2rem;
}

.footer-logo {
  color: #04141d;
  text-align: center;
  font-family: "DM Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%; /* 21.6px */
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  width: fit-content;
  margin: 0 auto 48px;
}

.footer ul {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer ul a {
  display: block;
  color: #04141d;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  text-transform: capitalize;
}

.footer-bottom {
  color: #04141d;
  text-align: center;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}

/* Mobile Styles */
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    transition: left 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 2rem;
  }

  .nav-list li {
    border-bottom: 1px solid #eee;
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .tools-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .demo-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .demo-image {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .services h2,
  .why-choose h2,
  .tools-text h2,
  .demo-text h2 {
    font-size: 2rem;
  }

  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .services,
  .tools,
  .why-choose,
  .demo-account {
    padding: 60px 0;
  }

  .demo-form {
    padding: 1.5rem;
  }
}
