* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8f5ef;
  color: #2b2b2b;
  line-height: 1.6;
}
html {
  scroll-behavior: smooth;
}

/* NAVBAR */

.navbar {
  width: 100%;
  padding: 18px 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;

  background-color: rgba(255, 250, 243, 0.9);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(199, 169, 127, 0.2);
}

.nav-logo img {
  width: 30px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #5f4b36;
  font-weight: 600;
  font-size: 15px;
}

.nav-links a:hover {
  color: #c7a97f;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-link {
  text-decoration: none;
  color: #8b7355;
  font-weight: 600;
  transition: 0.3s;
}

.lang-link:hover {
  color: #d4a85a;
}

/* HERO */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 40px;

  background: linear-gradient(to bottom, #fffaf3, #f4ede2);
}

.hero-content {
  max-width: 700px;
}
.hero-text {
  font-size: 18px;
  color: #5f5f5f;
  margin-bottom: 36px;
  line-height: 1.8;
}

.logo {
  width: 300px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 24px;
  color: #8b7355;
  margin-bottom: 32px;
}
.hero-note {
  font-size: 15px;
  color: #a88a57;
  font-style: italic;
  margin-bottom: 20px;
  opacity: 0.85;
}

button {
  border: none;
  padding: 16px 32px;
  border-radius: 999px;

  font-size: 16px;
  font-weight: bold;

  background-color: #c7a97f;
  color: white;

  cursor: pointer;

  transition: 0.3s;
}

button:hover {
  background-color: #b89567;
  transform: translateY(-2px);
}

/* MOCKUP */
.mockup-section {
  padding: 40px 24px 100px 24px;

  background: linear-gradient(to bottom, #f4ede2, #fffaf3);
}

.mockup-wrapper {
  max-width: 1100px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 32px;
}

.mockup-phone {
  background-color: #1f1f1f;
  border-radius: 48px;
  padding: 14px;

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.mockup-main {
  width: 320px;
  height: 650px;
}

.mockup-small {
  width: 240px;
  height: 500px;

  opacity: 0.9;
}

.mockup-screen {
  width: 100%;
  height: 100%;

  border-radius: 36px;
  overflow: hidden;

  background-color: white;
}

.mockup-screen img,
.mockup-screen video {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}

/* ABOUT */

.about {
  max-width: 900px;
  margin: auto;

  padding: 100px 24px;
}

.about h2 {
  font-size: 40px;
  margin-bottom: 24px;
}

.about p {
  font-size: 18px;
  color: #555;
}

/* FEATURES */

.features {
  padding: 100px 24px;

  background-color: #fffaf3;

  text-align: center;
}

.features h2 {
  font-size: 42px;
  margin-bottom: 60px;
}

.feature-grid {
  max-width: 1200px;

  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  gap: 24px;
}

.feature-card {
  background-color: white;

  padding: 36px 28px;

  border-radius: 28px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-icon {
  font-size: 42px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
}

/* TESTING */
.testing {
  padding: 110px 24px;

  text-align: center;

  background-color: #f8f5ef;
}

.testing h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.testing-subtitle {
  max-width: 700px;

  margin: 0 auto 60px auto;

  color: #666;
  font-size: 18px;
  line-height: 1.8;
}

.testing-grid {
  max-width: 1100px;

  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 24px;
}

.testing-card {
  background-color: white;

  padding: 42px 30px;

  border-radius: 28px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  transition: 0.3s;
}

.testing-card:hover {
  transform: translateY(-6px);
}

.testing-number {
  width: 54px;
  height: 54px;

  margin: 0 auto 22px auto;

  border-radius: 50%;

  background-color: #c7a97f;

  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  font-size: 22px;
}

.testing-card h3 {
  margin-bottom: 16px;
  font-size: 24px;
}

.testing-card p {
  color: #666;
  line-height: 1.7;
}

/*SUPPORT*/
.info-section {
  padding: 100px 24px;
  background-color: #fffaf3;
  text-align: center;
}

.info-section h2 {
  font-size: 42px;
  margin-bottom: 50px;
}

.info-grid {
  max-width: 1000px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 24px;
}

.info-card {
  background-color: white;
  padding: 40px 32px;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.info-card.privacy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  min-height: 360px;
}

.info-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.info-card.privacy p {
  max-width: 420px;
  margin: 16px auto 0;
}
.privacy-icon {
  font-size: 34px;
  margin-bottom: 14px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card a {
  text-decoration: none;
  color: #b8860b;
  font-weight: 700;
}

.info-card a:hover {
  opacity: 0.8;
}

.contact-mail {
  margin-top: 22px;
}

.contact-mail a {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(212, 168, 90, 0.14);
  border: 1px solid rgba(212, 168, 90, 0.35);
  color: #8b7355;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.contact-mail a:hover {
  background: rgba(212, 168, 90, 0.24);
  color: #5f4b36;
}


/*Footer*/
.footer {
  padding: 40px 24px;
  background-color: #efe7da;
  border-top: 1px solid rgba(199, 169, 127, 0.2);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-left {
  text-align: left;
}

.footer-left p {
  margin: 4px 0;
  color: #8b7355;
  font-size: 14px;
}

.footer-center {
  text-align: center;
}

.footer-center h3 {
  font-size: 22px;
  color: #5f4b36;
  margin-bottom: 6px;
}

.footer-center p {
  color: #a88a57;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-right a {
  text-decoration: none;
  color: #8b7355;
  font-weight: 600;
  transition: 0.3s;
}
.footer-left a {
  color: #8b7355;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.footer-left a:hover {
  color: #d4a85a;
}

.footer-right a:hover {
  color: #d4a85a;
}
.footer-link-button {
  border: none;
  background: transparent;
  color: #8b7355;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  padding: 0;
  transition: 0.3s;
}

.footer-link-button:hover {
  color: #d4a85a;
  transform: none;
}

/* LEGAL PAGES */

.legal-page {
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 80px 24px;

  background: linear-gradient(
    to bottom,
    #fffaf3,
    #f4ede2
  );
}

.legal-container {
  max-width: 900px;
  width: 100%;

  background: white;

  padding: 50px;

  border-radius: 28px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.legal-container h1 {
  font-size: 42px;
  margin-bottom: 24px;
  color: #5f4b36;
}

.legal-container p {
  color: #666;
  line-height: 1.9;
}

.back-link {
  display: inline-block;
  margin-top: 40px;

  text-decoration: none;

  color: #d4a85a;
  font-weight: 700;
}

.back-link:hover {
  color: #b8860b;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
    justify-content: center;
  }

  .footer-right {
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .mockup-wrapper {
    flex-direction: column;
  }

  .mockup-small {
    width: 280px;
    height: 560px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 10px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .lang-link,
  .nav-right span {
    font-size: 12px;
  }

  .nav-logo img {
    width: 20px;
  }
}