@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');

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

:root {
  --lab-gray: #2F2F2F;
  --motion-cyan: #00FFFF;
  --lab-orange: #FF6600;
  --neutral-white: #FFFFFF;
  --dark-bg: #1A1A1A;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
  background-color: var(--lab-gray);
  color: var(--neutral-white);
  line-height: 1.7;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 20px;
}

h2 {
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--motion-cyan);
  margin-bottom: 30px;
  line-height: 1.2;
}

h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

p, li {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
}

a {
  color: var(--motion-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--lab-orange);
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--lab-gray) 0%, rgba(47, 47, 47, 0.95) 100%);
  z-index: 1000;
  border-bottom: 2px solid var(--motion-cyan);
  padding: 15px 0;
}

.header-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--motion-cyan);
  cursor: pointer;
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--lab-orange);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav a:hover {
  background-color: var(--motion-cyan);
  color: var(--lab-gray);
  text-decoration: none;
}

main {
  margin-top: 80px;
}

.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--lab-gray) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1180px;
  text-align: center;
  padding: 0 20px;
  animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 140px 20px;
  animation: slideIn 0.8s ease forwards;
  opacity: 0;
}

.section:nth-child(odd) {
  background-color: var(--lab-gray);
}

.section:nth-child(even) {
  background-color: var(--dark-bg);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

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

.content-grid.two-col {
  grid-template-columns: 1fr 1fr;
}

.content-grid img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border: 2px solid var(--motion-cyan);
  transition: all 0.5s ease;
}

.content-grid img:hover {
  border-color: var(--lab-orange);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
}

.nutrient-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background-color: rgba(0, 255, 255, 0.05);
  border: 2px solid var(--motion-cyan);
}

.nutrient-table th,
.nutrient-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--motion-cyan);
}

.nutrient-table th {
  background-color: var(--motion-cyan);
  color: var(--lab-gray);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.nutrient-table tr:hover {
  background-color: rgba(0, 255, 255, 0.1);
}

.product-card {
  background-color: rgba(0, 255, 255, 0.05);
  border: 2px solid var(--motion-cyan);
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--lab-orange);
  background-color: rgba(255, 102, 0, 0.05);
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 255, 255, 0.15);
}

.product-card h3 {
  color: var(--motion-cyan);
  margin-bottom: 15px;
}

.product-card img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
  border: 1px solid var(--motion-cyan);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  border: 2px solid var(--motion-cyan);
  background-color: transparent;
  color: var(--motion-cyan);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 20px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: var(--motion-cyan);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  color: var(--lab-gray);
  background-color: var(--motion-cyan);
  text-decoration: none;
}

footer {
  background-color: var(--dark-bg);
  border-top: 2px solid var(--motion-cyan);
  padding: 60px 20px 30px;
  margin-top: 140px;
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--motion-cyan);
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-disclaimer {
  border-top: 1px solid var(--motion-cyan);
  border-bottom: 1px solid var(--motion-cyan);
  padding: 20px 0;
  margin: 30px 0;
  text-align: center;
  font-weight: 700;
  color: var(--lab-orange);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 20px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.disclaimer-box {
  background-color: rgba(0, 255, 255, 0.05);
  border: 2px solid var(--motion-cyan);
  padding: 30px;
  margin: 40px 0;
  border-radius: 3px;
}

.disclaimer-box h3 {
  color: var(--motion-cyan);
}

.disclaimer-box strong {
  color: var(--lab-orange);
}

.highlight {
  color: var(--motion-cyan);
  font-weight: 700;
}

.highlight-orange {
  color: var(--lab-orange);
  font-weight: 700;
}

form {
  max-width: 600px;
  margin: 40px auto;
}

.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(0, 255, 255, 0.05);
  border: 2px solid var(--motion-cyan);
  color: var(--neutral-white);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--lab-orange);
  background-color: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.form-disclaimer {
  background-color: rgba(255, 102, 0, 0.05);
  border: 1px solid var(--lab-orange);
  padding: 15px;
  margin-bottom: 20px;
  font-size: 14px;
  border-radius: 3px;
}

.faq-item {
  background-color: rgba(0, 255, 255, 0.05);
  border: 2px solid var(--motion-cyan);
  padding: 25px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--lab-orange);
  background-color: rgba(0, 255, 255, 0.1);
}

.faq-item h3 {
  color: var(--motion-cyan);
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

.faq-answer {
  display: none;
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-bg);
  border-top: 3px solid var(--motion-cyan);
  padding: 20px;
  z-index: 999;
  display: none;
  box-shadow: 0 -5px 30px rgba(0, 255, 255, 0.2);
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--motion-cyan);
  font-weight: 700;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: 2px solid var(--motion-cyan);
  background-color: transparent;
  color: var(--motion-cyan);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 3px;
  white-space: nowrap;
}

.cookie-btn:hover {
  background-color: var(--motion-cyan);
  color: var(--lab-gray);
}

.cookie-btn-accept {
  background-color: var(--motion-cyan);
  color: var(--lab-gray);
}

.cookie-btn-accept:hover {
  background-color: var(--lab-orange);
  border-color: var(--lab-orange);
  color: var(--lab-gray);
}

@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 18px;
  }

  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav {
    gap: 15px;
  }

  .nav a {
    font-size: 12px;
  }

  .content-grid.two-col {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }

  .section {
    padding: 80px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  p, li {
    font-size: 15px;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
  }

  .nutrient-table th,
  .nutrient-table td {
    padding: 12px;
    font-size: 14px;
  }
}
