/* Noveko Products — site stylesheet */

:root {
  --navy: #0F172A;
  --navy-2: #1E293B;
  --teal: #0F766E;
  --teal-2: #14B8A6;
  --cyan: #06B6D4;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;
  --gray-700: #334155;
  --gray-900: #0F172A;
  --white: #FFFFFF;
  --accent: #FF7A00;
}

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

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-2); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Navigation */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
.logo {
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo-dot {
  width: 12px; height: 12px;
  background: var(--teal-2);
  border-radius: 3px;
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 15px;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--teal); }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  padding: 80px 0 100px;
  text-align: center;
}
.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -1.5px;
  max-width: 900px;
  margin: 0 auto 24px;
}
.hero h1 .accent { color: var(--teal); }
.hero p.lead {
  font-size: 20px;
  color: var(--gray-500);
  max-width: 720px;
  margin: 0 auto 36px;
}
.hero .cta-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white) !important;
}
.btn-primary:hover { background: var(--teal); }
.btn-secondary {
  background: var(--white);
  color: var(--navy) !important;
  border: 1px solid var(--gray-300);
}
.btn-secondary:hover { border-color: var(--navy); }

/* Sections */
.section { padding: 80px 0; }
.section-light { background: var(--gray-50); }
.section-dark { background: var(--navy); color: var(--gray-200); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-title p {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 720px;
  margin: 0 auto;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--teal-2);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}
.product-icon.docu { background: linear-gradient(135deg, #0EA5E9, #0F766E); }
.product-icon.vend { background: linear-gradient(135deg, #8B5CF6, #6366F1); }
.product-icon.sign { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.product-icon.priv { background: linear-gradient(135deg, #10B981, #0EA5E9); }
.product-icon.echo { background: linear-gradient(135deg, #EC4899, #8B5CF6); }
.product-icon.field { background: linear-gradient(135deg, #F97316, #EAB308); }
.product-icon.pulse { background: linear-gradient(135deg, #06B6D4, #14B8A6); }
.product-icon.tenancy { background: linear-gradient(135deg, #6366F1, #0F172A); }
.product-icon.suite { background: linear-gradient(135deg, #0F766E, #1E293B); }

.product-card h3 {
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}
.product-card .tagline {
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.product-card p { font-size: 15px; color: var(--gray-500); flex-grow: 1; }
.product-card .product-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  color: var(--navy);
}
.product-card .product-link:hover { color: var(--teal); }
.product-card .product-link::after { content: ' →'; transition: transform 0.15s ease; }

/* Bundles */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 800px) { .bundle-grid { grid-template-columns: 1fr; } }
.bundle-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  gap: 24px;
}
.bundle-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
}
.bundle-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}
.bundle-card .modules {
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.bundle-card p { color: var(--gray-500); font-size: 15px; }

/* About */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 50px;
}
@media (max-width: 700px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  text-align: center;
  padding: 28px 20px;
  background: var(--gray-50);
  border-radius: 14px;
}
.stat .number {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat .label {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}

/* Contact */
.contact {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: var(--white);
}
.contact h2 { color: var(--white); font-size: 38px; margin-bottom: 16px; }
.contact p { color: rgba(255, 255, 255, 0.85); font-size: 18px; margin-bottom: 32px; }
.contact .btn-primary { background: var(--white); color: var(--navy) !important; }
.contact .btn-primary:hover { background: var(--gray-100); }

/* Footer */
.footer {
  background: var(--navy);
  color: var(--gray-300);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: var(--gray-300); font-size: 14px; }
.footer ul a:hover { color: var(--teal-2); }
.footer .brand-blurb { color: var(--gray-300); font-size: 14px; }
.footer-bottom {
  border-top: 1px solid var(--navy-2);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
}

/* Product page specific */
.product-hero {
  background: var(--gray-50);
  padding: 80px 0 60px;
}
.product-hero .badge {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 24px;
}
.product-hero h1 {
  font-size: 64px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.product-hero .tagline-big {
  font-size: 22px;
  color: var(--gray-500);
  max-width: 720px;
  margin-bottom: 32px;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
@media (max-width: 800px) { .feature-list { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
}
.feature-card .icon {
  width: 36px; height: 36px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
}
.feature-card h4 { color: var(--navy); margin-bottom: 8px; }
.feature-card p { color: var(--gray-500); font-size: 15px; }

.pricing-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 480px;
  margin: 40px auto 0;
}
.pricing-card .price {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
}
.pricing-card .price small { font-size: 18px; color: var(--gray-500); font-weight: 500; }
.pricing-card .price-label {
  font-size: 13px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
