/* ============================================
   NEOLIDO TECHNOLOGY - Website Styles
   Color Palette:
   - Branding Orange: #E85002
   - Primary Black: #000000
   - White: #F9F9F9
   - Gray: #646464
   - Light Gray: #A7A7A7
   - Dark Gray: #333333
   - Gradient: #000000 → #C10801 → #F16001 → #D9C3AB
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #E85002;
  --orange-hover: #F16001;
  --black: #000000;
  --white: #F9F9F9;
  --gray: #646464;
  --light-gray: #A7A7A7;
  --dark-gray: #333333;
  --gradient: linear-gradient(135deg, #000000, #C10801, #F16001, #D9C3AB);
  --gradient-subtle: linear-gradient(135deg, #1a1a1a, #2a1005);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--white);
  background-color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--light-gray);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 80, 2, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(249, 249, 249, 0.3);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* --- Navigation (Bepd-style floating bar) --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.4s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(40, 40, 40, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 1200px;
}

.navbar.scrolled .container {
  background: rgba(20, 20, 20, 0.88);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-logo img {
  height: 48px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(249, 249, 249, 0.7);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 500 !important;
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem !important;
}

.nav-lang a {
  font-size: 0.75rem !important;
  padding: 0.1rem 0.2rem;
  opacity: 0.6;
}

.nav-lang a[style*="color"] {
  opacity: 1;
}

.nav-lang a::after {
  display: none !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--orange-hover) !important;
  transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* --- Hero Section (Bepd-style photo overlay) --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}

.hero-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Photo background */
.hero-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-bg.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark gradient overlay for text readability */
.hero-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.15) 25%,
      rgba(0,0,0,0.3) 50%,
      rgba(0,0,0,0.7) 75%,
      rgba(0,0,0,0.9) 100%),
    linear-gradient(90deg,
      rgba(0,0,0,0.6) 0%,
      rgba(0,0,0,0.1) 50%,
      transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding: 3rem 3rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #F16001, #E85002, #D9C3AB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* FR/IT hero needs a smaller scale so the longer French/Italian
   phrasings fit on the intended 4 lines instead of wrapping to 5. */
html[lang="fr"] .hero h1,
html[lang="it"] .hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(249, 249, 249, 0.65);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-hero-white {
  background: var(--white);
  color: var(--black);
  padding: 0.7rem 1.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hero-white:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 249, 249, 0.15);
}

.btn-hero-glass {
  background: rgba(249, 249, 249, 0.1);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.7rem 1.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(249, 249, 249, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hero-glass:hover {
  background: rgba(249, 249, 249, 0.18);
  border-color: rgba(249, 249, 249, 0.3);
  transform: translateY(-2px);
}

/* Hero decorative elements (hidden — real photo is the backdrop) */
.hero-decor {
  display: none;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--light-gray);
  font-size: 0.75rem;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll .line {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- About Section --- */
.about {
  padding: 2.5rem 0;
  background: var(--black);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-visual {
  position: relative;
}

.about-card {
  background: linear-gradient(145deg, rgba(51,51,51,0.5), rgba(0,0,0,0.8));
  border: 1px solid rgba(232, 80, 2, 0.15);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.about-card .molecule-icon {
  width: 80px;
  height: 80px;
  background: rgba(232, 80, 2, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.about-card .molecule-icon svg {
  width: 40px;
  height: 40px;
  color: var(--orange);
}

.about-text h2 {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--light-gray);
  font-size: 0.95rem;
}

.about-feature .check {
  width: 24px;
  height: 24px;
  background: rgba(232, 80, 2, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature .check svg {
  width: 12px;
  height: 12px;
  color: var(--orange);
}

/* --- ANAXA Section --- */
.anaxa {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, var(--black) 0%, #0a0a0a 100%);
}

.anaxa-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.25rem;
}

.anaxa-header h2 {
  margin-bottom: 1rem;
}

.anaxa-header h2 .brand {
  color: var(--orange);
}

.anaxa-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.anaxa-card {
  background: rgba(51, 51, 51, 0.2);
  border: 1px solid rgba(249, 249, 249, 0.06);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.anaxa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--gradient);
  transition: height 0.4s ease;
  opacity: 0.1;
}

.anaxa-card:hover {
  border-color: rgba(232, 80, 2, 0.3);
  transform: translateY(-4px);
}

.anaxa-card:hover::before {
  height: 100%;
}

.anaxa-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 80, 2, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.anaxa-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.anaxa-card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.anaxa-card p {
  font-size: 0.95rem;
  color: var(--light-gray);
}

/* --- Statistics Section (Template 2 Style) --- */
.stats {
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stats-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1;
}

.stats-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(193, 8, 1, 0.15) 50%, rgba(0,0,0,0.9) 100%);
}

.stats .container {
  position: relative;
  z-index: 2;
}

.stats-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.stats-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.stats-text p {
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  background: rgba(249, 249, 249, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249, 249, 249, 0.08);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  transition: all 0.4s ease;
}

.stat-card:hover {
  background: rgba(249, 249, 249, 0.1);
  border-color: rgba(232, 80, 2, 0.3);
  transform: translateY(-3px);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number .accent {
  color: var(--orange);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.4;
}

/* --- Fields of Application --- */
.fields {
  padding: 2.5rem 0;
  background: var(--black);
}

.fields-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.25rem;
}

.fields-header h2 {
  margin-bottom: 1rem;
}

.fields-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.field-card {
  background: rgba(51, 51, 51, 0.15);
  border: 1px solid rgba(249, 249, 249, 0.06);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  cursor: default;
}

.field-card:hover {
  border-color: rgba(232, 80, 2, 0.4);
  background: rgba(232, 80, 2, 0.05);
  transform: translateY(-4px);
}

.field-icon {
  width: 64px;
  height: 64px;
  background: rgba(232, 80, 2, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background 0.3s ease;
}

.field-card:hover .field-icon {
  background: rgba(232, 80, 2, 0.15);
}

.field-icon svg {
  width: 30px;
  height: 30px;
  color: var(--orange);
}

.field-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.field-card p {
  font-size: 0.9rem;
  color: var(--light-gray);
}

/* --- Business Model --- */
.business {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, var(--black) 0%, #080808 100%);
}

.business-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.25rem;
}

.business-header h2 {
  margin-bottom: 1rem;
}

.business-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.business-step {
  position: relative;
  background: rgba(51, 51, 51, 0.15);
  border: 1px solid rgba(249, 249, 249, 0.06);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.business-step .step-num {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.business-step h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.business-step p {
  font-size: 0.9rem;
}

.business-cta {
  text-align: center;
}

/* --- Mission Section --- */
.mission {
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.mission-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
  z-index: 0;
}

.mission .container {
  position: relative;
  z-index: 1;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-content h2 {
  margin-bottom: 1.5rem;
}

.mission-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.mission-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(249, 249, 249, 0.85);
  border-left: 3px solid var(--orange);
  padding-left: 1.5rem;
  text-align: left;
  margin: 3rem 0;
  line-height: 1.8;
}

/* --- Product Evolution --- */
.evolution {
  padding: 2.5rem 0;
  background: var(--black);
}

.evolution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.evolution-visual {
  position: relative;
}

.evolution-text .section-label {
  display: flex;
  width: fit-content;
  margin-bottom: 0.85rem;
}

.evolution-badge {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  background: rgba(232, 80, 2, 0.1);
  border: 1px solid rgba(232, 80, 2, 0.25);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--orange);
}

.evolution-badge svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.evolution-text h2 {
  margin-bottom: 1.5rem;
}

.evolution-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.evolution-benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.evolution-benefit .num {
  width: 32px;
  height: 32px;
  background: rgba(232, 80, 2, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--orange);
}

.evolution-benefit p {
  font-size: 0.95rem;
}

/* Coating visual */
.coating-visual {
  background: linear-gradient(145deg, rgba(51,51,51,0.3), rgba(0,0,0,0.8));
  border: 1px solid rgba(232, 80, 2, 0.1);
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

.coating-layers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 80%;
}

.coating-layer {
  height: 16px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.coating-layer:nth-child(1) {
  background: var(--gray);
}

.coating-layer:nth-child(2) {
  background: var(--orange);
  height: 6px;
}

.coating-layer:nth-child(3) {
  background: var(--gray);
}

.coating-label {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--light-gray);
  text-align: center;
}

.coating-label strong {
  color: var(--orange);
}

/* --- ESG Section --- */
.esg {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, #080808 0%, var(--black) 100%);
}

.esg-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.25rem;
}

.esg-header h2 {
  margin-bottom: 1rem;
}

.esg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.esg-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .esg-stats { grid-template-columns: repeat(2, 1fr); }
}

.esg-card {
  background: rgba(51, 51, 51, 0.15);
  border: 1px solid rgba(249, 249, 249, 0.06);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
}

.esg-card:hover {
  border-color: rgba(232, 80, 2, 0.2);
}

.esg-card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.esg-card h3 svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
  flex-shrink: 0;
}

/* --- Investors Section --- */
.investors {
  padding: 2.5rem 0 1.5rem;
  background: linear-gradient(180deg, #080808 0%, var(--black) 100%);
}

.investors-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.25rem;
}

.investors-header h2 {
  margin-bottom: 1rem;
}

.investors-charts {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.chart-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.chart-block-header h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.chart-block-header p {
  font-size: 0.95rem;
}

.chart-row {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.chart-svg {
  flex: 1;
}

.chart-svg svg {
  width: 100%;
  height: auto;
}

.chart-side-cards {
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.chart-side-card {
  background: rgba(249, 249, 249, 0.06);
  border: 1px solid rgba(249, 249, 249, 0.08);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.chart-side-card .big {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.chart-side-card .desc {
  font-size: 0.8rem;
  color: var(--light-gray);
  line-height: 1.4;
  text-align: center;
}

.perf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.perf-card {
  background: rgba(51, 51, 51, 0.15);
  border: 1px solid rgba(249, 249, 249, 0.06);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.perf-card h4 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.perf-card svg {
  width: 100%;
  max-width: 200px;
}

.comp-bars {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.comp-bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.comp-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.comp-bar-label .name {
  color: var(--light-gray);
}

.comp-bar-label .grade {
  color: var(--gray);
  font-size: 0.8rem;
}

.comp-bar-label.active .name {
  color: var(--white);
  font-weight: 600;
}

.comp-bar-label.active .grade {
  color: var(--orange);
  font-weight: 700;
}

.comp-bar-track {
  height: 28px;
  background: rgba(249, 249, 249, 0.04);
  border-radius: 6px;
  overflow: hidden;
}

.comp-bar-fill {
  height: 100%;
  border-radius: 6px;
}

.comp-bar-fill.active {
  background: linear-gradient(90deg, #E85002, #F16001);
  display: flex;
  align-items: center;
  padding-left: 0.75rem;
}

.comp-bar-fill.active span {
  font-size: 0.75rem;
  color: white;
  font-weight: 600;
}

.comp-bar-fill.inactive {
  background: rgba(249, 249, 249, 0.1);
}

.disclaimer {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(249, 249, 249, 0.05);
  border-radius: 0;
}

.disclaimer p {
  font-size: 0.7rem;
  color: var(--gray);
  line-height: 1.55;
  opacity: 0.7;
}

.disclaimer-title {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .chart-row {
    flex-direction: column;
    align-items: stretch;
  }
  .chart-side-cards {
    width: 100%;
    flex-direction: row;
  }
  .chart-side-card {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .perf-grid {
    grid-template-columns: 1fr;
  }
  .chart-side-cards {
    flex-direction: column;
  }
}

/* --- Footer --- */
.footer {
  padding: 2.5rem 0 1.5rem;
  background: #050505;
  border-top: 1px solid rgba(249, 249, 249, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: var(--gray);
}

.footer h4 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(249, 249, 249, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--gray);
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Counter animation --- */
.stat-number[data-count] {
  font-variant-numeric: tabular-nums;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-grid,
  .stats-layout,
  .evolution-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .anaxa-cards,
  .fields-grid,
  .business-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .navbar {
    padding: 0.75rem 1rem;
  }

  .navbar .container {
    padding: 0.5rem 1rem;
    border-radius: 10px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.4s ease;
    border-radius: 0;
    border: none;
  }

  .nav-links.active {
    right: 0;
  }

  .anaxa-cards,
  .fields-grid,
  .business-steps,
  .esg-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding: 0;
  }

  .hero-frame {
    border-radius: 0;
  }

  .hero-content {
    padding: 2.5rem 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-decor {
    display: none;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .container {
    padding: 0 1.25rem;
  }
}

/* --- Article pages --- */
.article {
  padding: 4rem 0 2.5rem;
  background: var(--black);
}
.article-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}
.article-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.article-meta .cat { color: var(--orange); font-weight: 600; }
.article-meta .date { color: var(--gray); }
.article h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.article-lede {
  font-size: 1.25rem;
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(249, 249, 249, 0.08);
}
.article-body h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin: 3rem 0 1rem;
}
.article-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin: 2rem 0 0.75rem;
}
.article-body p {
  font-size: 1.05rem;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.article-body ul, .article-body ol {
  color: var(--light-gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1.5rem 1.5rem;
}
.article-body li { margin-bottom: 0.5rem; }
.article-body strong { color: var(--white); }
.article-body blockquote {
  border-left: 3px solid var(--orange);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: rgba(249, 249, 249, 0.85);
  font-size: 1.1rem;
}
.article-body a { color: var(--orange); }
.article-body a:hover { text-decoration: underline; }
.article-callout {
  background: rgba(232, 80, 2, 0.06);
  border: 1px solid rgba(232, 80, 2, 0.2);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.article-callout strong { color: var(--orange); }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--light-gray);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  text-decoration: none;
}
.article-back:hover { color: var(--orange); }
.article-cta {
  margin-top: 4rem;
  padding: 2.5rem;
  background: rgba(51, 51, 51, 0.2);
  border: 1px solid rgba(232, 80, 2, 0.15);
  border-radius: 14px;
  text-align: center;
}
.article-cta h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.3rem; }
.article-cta p { color: var(--light-gray); margin-bottom: 1.5rem; }

/* --- Resources page --- */
.resources-section {
  padding: 2.5rem 0 3.5rem;
  background: var(--black);
}
.resource-category {
  margin-bottom: 2.5rem;
}
.resource-category h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.resource-category .cat-desc {
  color: var(--light-gray);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.resource-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.resource-item {
  background: rgba(51, 51, 51, 0.15);
  border: 1px solid rgba(249, 249, 249, 0.06);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.resource-item:hover {
  border-color: rgba(232, 80, 2, 0.3);
  background: rgba(232, 80, 2, 0.04);
}
.resource-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 80, 2, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.resource-icon svg { width: 22px; height: 22px; color: var(--orange); }
.resource-info { flex: 1; }
.resource-info h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.resource-info p {
  color: var(--light-gray);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.resource-meta {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.resource-locked {
  opacity: 0.6;
}
.resource-locked .resource-icon { background: rgba(249, 249, 249, 0.05); }
.resource-locked .resource-icon svg { color: var(--gray); }

/* --- Contact form section --- */
.contact-section {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, var(--black) 0%, #050505 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,80,2,0.08), transparent);
  top: -30%; left: -10%;
  filter: blur(100px);
  z-index: 0;
}
.contact-section .container { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-info h2 {
  margin-bottom: 1.25rem;
}
.contact-info p {
  margin-bottom: 2rem;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(51, 51, 51, 0.2);
  border: 1px solid rgba(249, 249, 249, 0.06);
  border-radius: 10px;
}
.contact-channel-icon {
  width: 36px; height: 36px;
  background: rgba(232, 80, 2, 0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-channel-icon svg { width: 18px; height: 18px; color: var(--orange); }
.contact-channel-text { flex: 1; }
.contact-channel-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.contact-channel-text p {
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.5;
  margin: 0;
}

.contact-form {
  background: rgba(51, 51, 51, 0.15);
  border: 1px solid rgba(249, 249, 249, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  margin-bottom: 1.25rem;
}
.form-field label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light-gray);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(249, 249, 249, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(0, 0, 0, 0.6);
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}
.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E85002' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.form-field option {
  background: var(--black);
  color: var(--white);
}
.form-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 80, 2, 0.3);
}
.form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* --- Partnership program page --- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.tier-card {
  background: rgba(51, 51, 51, 0.15);
  border: 1px solid rgba(249, 249, 249, 0.06);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}
.tier-card.featured {
  border-color: rgba(232, 80, 2, 0.4);
  background: rgba(232, 80, 2, 0.05);
}
.tier-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.tier-name {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 1rem;
  font-weight: 600;
}
.tier-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.tier-pitch {
  color: var(--light-gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  min-height: 3em;
}
.tier-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  color: var(--light-gray);
  font-size: 0.9rem;
  line-height: 1.5;
}
.tier-features li svg {
  width: 16px; height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.tier-cta {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.tier-cta-primary {
  background: var(--orange);
  color: var(--white);
}
.tier-cta-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}
.tier-cta-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(249, 249, 249, 0.2);
}
.tier-cta-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.process-step {
  position: relative;
  padding: 2rem 1.5rem;
  background: rgba(51, 51, 51, 0.1);
  border: 1px solid rgba(249, 249, 249, 0.06);
  border-radius: 12px;
}
.process-step-num {
  width: 36px; height: 36px;
  background: rgba(232, 80, 2, 0.15);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.process-step h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.process-step p {
  color: var(--light-gray);
  font-size: 0.85rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .tier-grid, .process-steps { grid-template-columns: 1fr; }
}

/* --- Sustainability impact section --- */
.impact-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, #050505 0%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232,80,2,0.06), transparent);
  bottom: -40%; right: -15%;
  filter: blur(120px);
  z-index: 0;
}
.impact-section .container { position: relative; z-index: 1; }
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.impact-text h2 { margin-bottom: 1.25rem; color: var(--white); }
.impact-text p { color: var(--light-gray); margin-bottom: 1rem; }
.impact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.impact-stat {
  background: rgba(51, 51, 51, 0.2);
  border: 1px solid rgba(232, 80, 2, 0.15);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.impact-stat .impact-num {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #F16001, #E85002, #D9C3AB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.impact-stat .impact-label {
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .impact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
