:root {
  --color-yellow: #EDD011;
  --color-gray: #525252;
  --color-gray-soft: #7a7a7a;
  --color-bg: #ffffff;
  --nav-height: 68px;
}

* { box-sizing: border-box; }

[v-cloak] { display: none; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  color: var(--color-gray);
  background: var(--color-bg);
}

h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-brand img {
  height: 32px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-gray);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  padding: 8px 0;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-links a {
  padding: 14px 24px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-gray);
}

.nav-links a:hover { color: #000; }

.lang-switch {
  align-self: flex-start;
  margin: 4px 24px 8px;
  border: 1px solid var(--color-gray);
  background: none;
  color: var(--color-gray);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-switch:hover { background: var(--color-gray); color: #fff; }

@media (min-width: 768px) {
  .navbar-brand img { height: 38px; }

  .nav-toggle { display: none; }

  .nav-links {
    position: static;
    flex-direction: row;
    align-items: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    gap: 4px;
  }

  .nav-links a { padding: 8px 14px; }

  .lang-switch { margin: 0 0 0 12px; }
}

/* Hero / CTA banner */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 95px) 24px 109px;
}

.hero-content { max-width: 640px; }

.hero h1 {
  font-size: 1.9rem;
  line-height: 1.25;
  color: var(--color-gray);
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--color-gray-soft);
  margin-bottom: 32px;
}

@media (min-width: 600px) {
  .hero h1 { font-size: 2.4rem; }
  .hero p { font-size: 1.15rem; }
}

@media (min-width: 992px) {
  .hero h1 { font-size: 2.9rem; }
}

.cta-button {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-gray);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(237, 208, 17, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(237, 208, 17, 0.45);
}

/* Products */
.products {
  background: #f7f7f7;
  padding: 64px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.section-heading h2 {
  font-size: 1.8rem;
  color: var(--color-gray);
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--color-gray-soft);
  font-size: 1rem;
}

.products-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-logo {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.product-card p {
  color: var(--color-gray-soft);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-link {
  display: inline-block;
  border: 2px solid var(--color-gray);
  color: var(--color-gray);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.product-link:hover {
  background: var(--color-gray);
  color: #fff;
}

@media (min-width: 768px) {
  .products-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .product-card {
    flex: 1;
  }
}

/* How & why */
.why {
  background: #ffffff;
  padding: 64px 24px;
}

.why-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
}

.why-icon svg {
  width: 26px;
  height: 26px;
}

.why-item h3 {
  font-size: 1.15rem;
  color: var(--color-gray);
  margin-bottom: 8px;
}

.why-item p {
  color: var(--color-gray-soft);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .why-grid {
    flex-direction: row;
  }

  .why-item {
    flex: 1;
  }
}

/* Team */
.team {
  background: #f7f7f7;
  padding: 64px 24px;
}

.team-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 180px;
}

.team-photo {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.team-initials {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-gray);
}

.team-card h3 {
  font-size: 1.1rem;
  color: var(--color-gray);
  margin-bottom: 4px;
}

.team-role {
  color: var(--color-gray-soft);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .team-grid {
    flex-direction: row;
    justify-content: center;
  }
}

/* Contact */
.contact {
  background: var(--color-gray);
  padding: 64px 24px;
  text-align: center;
}

.contact .section-heading h2 {
  color: #ffffff;
}

.contact .section-heading p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-email {
  color: #ffffff;
  font-size: 1rem;
  text-decoration: underline;
}

.contact-email:hover {
  color: var(--color-yellow);
}

/* Footer */
.site-footer {
  background: #ffffff;
  padding: 24px 24px 32px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--color-gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: #000;
}

.footer-copyright {
  color: var(--color-gray-soft);
  font-size: 0.8rem;
}

/* 404 page */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.error-page img {
  height: 40px;
  margin-bottom: 40px;
}

.error-page h1 {
  font-size: 4rem;
  color: var(--color-yellow);
  margin-bottom: 12px;
}

.error-page p {
  color: var(--color-gray-soft);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.error-page .error-page-link {
  margin-top: 28px;
}
