/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #0b0b0f;
  color: white;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

/* HERO SECTION */
.hero {
  background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.16), transparent 25%),
    radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.08), transparent 25%),
    linear-gradient(180deg, #0b0b0f 0%, #110b20 100%);
  padding: 40px 80px 80px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #d7d7d7;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #a855f7;
}

.hero-content {
  margin-top: 120px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #e9d7ff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 18px;
  color: #cfcfcf;
  margin-bottom: 40px;
  max-width: 680px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-primary,
.btn-secondary,
.cta-button,
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-primary,
.cta-button,
.contact-btn {
  background-color: #a855f7;
  color: white;
  padding: 14px 30px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary:hover,
.cta-button:hover,
.contact-btn:hover {
  background-color: #9333ea;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 14px 30px;
  border-radius: 14px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: #a855f7;
  color: #a855f7;
}

/* PRODUCTS SECTION */
.products {
  padding: 100px 80px;
  background-color: #0f0f14;
  text-align: center;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #cfcfcf;
  margin-bottom: 60px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  background-color: #16161d;
  padding: 40px;
  border-radius: 24px;
  text-align: left;
  border: 1px solid #222;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  border-color: #a855f7;
  transform: translateY(-4px);
  box-shadow: 0 24px 80px rgba(168, 85, 247, 0.12);
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  color: #e9d7ff;
  font-size: 24px;
  margin-bottom: 24px;
}

.product-card h3,
.dual-card h3,
.stat-box h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.product-card p,
.dual-card p,
.footer-brand p,
.contact-desc,
.info-item p,
.footer-contact p,
.section-subtitle,
.cta p {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.8;
}

/* DUAL PRODUCT SECTION */
.dual-products {
  padding: 100px 80px;
  background-color: #0b0b0f;
}

.dual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.dual-card {
  background-color: #16161d;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #222;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dual-card:hover {
  border-color: #a855f7;
  transform: translateY(-4px);
  box-shadow: 0 24px 80px rgba(168, 85, 247, 0.12);
}

.dual-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  color: #e9d7ff;
  font-size: 24px;
  margin-bottom: 24px;
}

.dual-card p {
  margin-bottom: 24px;
}

.dual-image {
  width: 100%;
  min-height: 260px;
  background-color: #1f1f27;
  border-radius: 18px;
  border: 1px solid #333;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mesh-image {
  background-image: url('assets/product-images/supamesh.svg');
}

.pine-image {
  background-image: url('assets/product-images/supapine.svg');
}

/* STATS SECTION */
.stats {
  background-color: #0f0f14;
  padding: 100px 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-box {
  padding: 40px;
  background: #16161d;
  border-radius: 24px;
  border: 1px solid #222;
}

.stat-box h3 {
  font-size: 40px;
  font-weight: 800;
  color: #a855f7;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 16px;
  color: #cfcfcf;
}

/* CTA SECTION */
.cta {
  background-color: #0b0b0f;
  text-align: center;
  padding: 120px 80px;
}

.cta h2 {
  font-size: clamp(3rem, 4vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  color: #cfcfcf;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #a855f7;
  padding: 16px 38px;
  border-radius: 14px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}

.cta-button:hover {
  background-color: #9333ea;
}

/* CONTACT SECTION */
.contact {
  padding: 120px 80px;
  background-color: #0f0f14;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-desc {
  color: #cfcfcf;
  margin-bottom: 40px;
  font-size: 16px;
}

.info-item {
  margin-bottom: 25px;
}

.info-item h4 {
  font-size: 16px;
  color: #a855f7;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-item p {
  color: #e0e0e0;
  font-size: 15px;
}

.contact-form {
  background-color: #16161d;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #222;
}

.contact-form h3 {
  font-size: 28px;
  margin-bottom: 24px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 6px;
  font-size: 14px;
  color: #cfcfcf;
}

.contact-form input,
.contact-form textarea {
  background-color: #1f1f27;
  border: 1px solid #333;
  padding: 16px;
  border-radius: 14px;
  color: white;
  margin-bottom: 20px;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 160px;
  resize: none;
}

.contact-btn {
  background-color: #a855f7;
  padding: 16px 28px;
  border-radius: 14px;
  color: white;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.contact-btn:hover {
  background-color: #9333ea;
}

/* FOOTER */
.footer {
  background-color: #0b0b0f;
  padding: 80px 80px 40px;
  color: #cfcfcf;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;
}

.footer-brand p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #a855f7;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: #8e8e8e;
}

/* PRODUCT PAGE SECTIONS */
.product-page {
  min-height: 100vh;
  padding: 100px 80px;
  background-color: #0b0b0f;
  border-top: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page-content {
  width: 100%;
}

.product-header {
  text-align: center;
  margin-bottom: 80px;
}

.product-header h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.product-header p {
  font-size: 20px;
  color: #cfcfcf;
  max-width: 600px;
  margin: 0 auto;
}

.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-info h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.features-list li {
  font-size: 18px;
  color: #cfcfcf;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  line-height: 1.6;
}

.product-image-box {
  width: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(168, 85, 247, 0.05));
  border-radius: 24px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #8e8e8e;
}

@media (max-width: 1080px) {
  .product-page {
    padding-left: 40px;
    padding-right: 40px;
  }

  .product-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .product-page {
    min-height: auto;
    padding: 60px 24px;
  }

  .product-main {
    grid-template-columns: 1fr;
  }

  .product-header h1 {
    font-size: 2rem;
  }

  .product-header p {
    font-size: 16px;
  }

  .features-list li {
    font-size: 16px;
  }

  .product-image-box {
    min-height: 300px;
  }
}

/* SCROLL BEHAVIOR */
html {
  scroll-behavior: smooth;
}


