/* ==============================
   ALTRIVA - Pharmaceutical Company
   style.css
   ============================== */

:root {
  --primary: #0A2342;
  --secondary: #00C9A7;
  --secondary-dark: #009E82;
  --accent: #E8F4FD;
  --accent-bg: #F8FAFB;
  --text-dark: #1A1A2E;
  --text-body: #4A5568;
  --text-light: #FFFFFF;
  --shadow-teal: rgba(0, 201, 167, 0.25);
  --shadow-dark: rgba(10, 35, 66, 0.15);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow: 0 4px 20px rgba(10, 35, 66, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--accent-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Loading Spinner ---------- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #E8F9F6;
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; color: var(--text-body); }

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--secondary-dark); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title .subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.section-title h2 {
  color: var(--primary);
  position: relative;
  padding-bottom: 16px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-title p {
  max-width: 600px;
  margin: 1rem auto 0;
  color: var(--text-body);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--secondary);
  color: var(--text-light);
}
.btn-primary:hover {
  background: var(--secondary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-teal);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}
.btn-secondary:hover {
  background: var(--text-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.btn-outline:hover {
  background: var(--secondary);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: var(--text-light);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  text-decoration: none;
  font-size: 1.8rem;
  letter-spacing: 3px;
  display: inline-flex;
}

.nav-logo .alt {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
}

.nav-logo .riva {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
}

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

.nav-links li a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

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

.nav-links li a.active {
  background: var(--secondary);
  color: var(--text-light);
  padding: 8px 18px;
  border-radius: 6px;
}

.nav-links .cta-nav {
  background: var(--secondary);
  color: var(--text-light);
  padding: 10px 24px;
  border-radius: 30px;
  margin-left: 8px;
}
.nav-links .cta-nav:hover {
  background: var(--primary);
  color: var(--text-light);
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--text-light);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--text-dark);
}
.dropdown-menu a:hover {
  background: #E8F9F6;
  color: var(--secondary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0A2342 0%, #0D3060 50%, #0A2342 100%);
  overflow: hidden;
}

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

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' opacity='0.06'%3E%3Cdefs%3E%3Cpattern id='hex' patternUnits='userSpaceOnUse' width='60' height='103.923'%3E%3Cpolygon points='30,0 60,17.32 60,51.96 30,69.28 0,51.96 0,17.32' fill='none' stroke='%2300C9A7' stroke-width='1.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23hex)'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  animation: drift 20s linear infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(transparent, var(--accent-bg));
}

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

.hero-content h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.15;
}

.hero-content .line-teal {
  display: block;
  color: var(--secondary);
  font-weight: 700;
}

.hero-content .line-white {
  display: block;
  color: var(--text-light);
  font-weight: 800;
}

.hero-content p {
  color: rgba(255,255,255,0.80);
  font-size: 18px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  background: var(--secondary);
  color: var(--text-light);
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 201, 167, 0.35);
}

.hero-buttons .btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.hero-buttons .btn-secondary {
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
}

.hero-buttons .btn-secondary:hover {
  background: var(--text-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 1.5s infinite;
  cursor: pointer;
}
.hero-scroll a {
  color: rgba(255,255,255,0.5);
  font-size: 1.8rem;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--secondary);
  padding: 20px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  color: var(--text-light);
  padding: 20px;
  position: relative;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,0.3);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  display: block;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* ---------- About Snippet ---------- */
.section:has(.about-snippet) {
  background: var(--text-light);
}

.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-snippet-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #0A2342, #00C9A7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-snippet-image .placeholder-icon {
  font-size: 4rem;
  opacity: 0.3;
  color: white;
}

.about-snippet-content .section-title {
  text-align: left;
}

.about-snippet-content .section-title h2::after {
  left: 0;
  transform: none;
}

.about-snippet-content h2 {
  text-align: left;
}

.about-snippet-content p {
  color: var(--text-body);
}

.about-snippet-content .btn {
  margin-top: 1rem;
}

/* ---------- Cards Grid ---------- */
.section:has(.cards-grid):not(.research-highlight) {
  background: var(--accent-bg);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: var(--text-light);
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  border-top: 3px solid transparent;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 201, 167, 0.15);
  border-top: 3px solid var(--secondary);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #E8F9F6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
  color: var(--secondary);
}

.card h3 { margin-bottom: 0.75rem; color: var(--primary); }
.card p { font-size: 0.95rem; color: var(--text-body); margin-bottom: 0; }

/* ---------- Research Highlight ---------- */
.research-highlight {
  background: linear-gradient(135deg, #0A2342 0%, #0D3060 100%);
  color: var(--text-light);
}

.research-highlight .section-title h2 {
  color: var(--text-light);
}

.research-highlight .section-title h2::after {
  background: var(--secondary);
}

.research-highlight .section-title .subtitle {
  color: var(--secondary);
}

.research-highlight .section-title p {
  color: rgba(255,255,255,0.7);
}

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

.research-text h3 {
  color: var(--text-light);
}

.research-text p {
  color: rgba(255,255,255,0.7);
}

.research-text ul {
  list-style: none;
  margin: 1.5rem 0;
}

.research-text ul li {
  padding: 8px 0;
  color: rgba(255,255,255,0.8);
  padding-left: 28px;
  position: relative;
}

.research-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.research-image {
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.2), rgba(10, 35, 66, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.research-image .placeholder-icon {
  font-size: 5rem;
  opacity: 0.3;
  color: white;
}

.research-highlight .btn-primary {
  background: var(--secondary);
  color: var(--text-light);
}

.research-highlight .btn-primary:hover {
  background: var(--secondary-dark);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--text-light);
  border-radius: 16px;
  padding: 35px;
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial-card .quote {
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--primary);
}

.testimonial-card .role {
  font-size: 0.85rem;
  color: #888;
}

/* Partner logos */
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 3rem;
  padding: 30px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.partner-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #aaa;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  transition: var(--transition);
}

.partner-logo:hover { opacity: 1; color: var(--primary); }

/* ---------- News Cards ---------- */
.section:has(.news-card) {
  background: var(--text-light);
}

.news-card {
  background: var(--text-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-dark);
}

.news-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.3);
}

.news-card-body {
  padding: 25px;
}

.news-card-body .category-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: #E8F9F6;
  color: var(--secondary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.news-card-body .date {
  font-size: 0.8rem;
  color: #9CA3AF;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

.news-card-body h3 {
  font-size: 1.15rem;
  margin: 0.5rem 0;
  color: var(--primary);
  transition: var(--transition);
}

.news-card:hover .news-card-body h3 {
  color: var(--secondary);
}

.news-card-body p {
  font-size: 0.9rem;
  color: var(--text-body);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--primary);
  color: var(--text-light);
  padding: 60px 0 30px;
}

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

.footer-brand .nav-logo {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.footer-brand .nav-logo .alt {
  color: var(--text-light);
}

.footer-brand .nav-logo .riva {
  color: var(--secondary);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer h4 {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer ul { list-style: none; }

.footer ul li { margin-bottom: 10px; }

.footer ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact .contact-icon {
  color: var(--secondary);
  min-width: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ---------- Page Header ---------- */
.page-header {
  padding: 150px 0 60px;
  background: var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}

.page-header .breadcrumb {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 1rem;
}

.page-header .breadcrumb a {
  color: var(--secondary);
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--text-light);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(0, 201, 167, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group .error-msg {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: #e74c3c;
}

.form-group.invalid .error-msg {
  display: block;
}

/* Honeypot field - hidden from users */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ---------- Contact Page Layout ---------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.contact-info-item .icon {
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #E8F9F6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.2rem;
}

.contact-info-item .text h4 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.contact-info-item .text p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
}

.map-placeholder {
  width: 100%;
  height: 250px;
  border-radius: 16px;
  background: #E8F9F6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
  margin-top: 2rem;
}

/* ---------- Careers ---------- */
.job-card {
  background: var(--text-light);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.job-card:hover {
  transform: translateX(6px);
  border-color: var(--secondary);
}

.job-card .job-info h3 {
  margin-bottom: 4px;
}

.job-card .job-info .meta {
  font-size: 0.85rem;
  color: #888;
}

.job-card .job-info .meta span {
  margin-right: 20px;
}

.job-card .tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: #E8F9F6;
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Sitemap Page ---------- */
.sitemap-list {
  max-width: 800px;
  margin: 0 auto;
}

.sitemap-list ul {
  list-style: none;
}

.sitemap-list > ul > li {
  margin-bottom: 1.5rem;
}

.sitemap-list > ul > li > a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  padding: 10px 16px;
  border-radius: 8px;
  display: inline-block;
  transition: var(--transition);
}

.sitemap-list > ul > li > a:hover {
  background: #E8F9F6;
  color: var(--primary);
}

.sitemap-list ul ul {
  padding-left: 30px;
  margin-top: 8px;
}

.sitemap-list ul ul li {
  margin-bottom: 6px;
}

.sitemap-list ul ul li a {
  color: var(--text-body);
  font-size: 0.95rem;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  transition: var(--transition);
}

.sitemap-list ul ul li a:hover {
  background: #E8F9F6;
  color: var(--secondary);
}

/* ---------- Recaptcha badge ---------- */
.grecaptcha-badge { visibility: hidden; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ---------- Inner Pages ---------- */
.page-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  margin-top: 2.5rem;
}

.page-content h3 {
  margin-top: 1.5rem;
}

.page-content ul, .page-content ol {
  margin: 1rem 0 1rem 1.5rem;
  color: var(--text-body);
}

.page-content ul li, .page-content ol li {
  margin-bottom: 0.5rem;
}

/* ---------- Products Pipeline ---------- */
.pipeline-timeline {
  position: relative;
  padding-left: 40px;
}

.pipeline-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--secondary), var(--primary));
  border-radius: 3px;
}

.pipeline-item {
  position: relative;
  margin-bottom: 40px;
  background: var(--text-light);
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: var(--shadow);
}

.pipeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 30px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--secondary);
  border: 3px solid var(--primary);
}

.pipeline-item .phase {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  background: #E8F9F6;
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--accent-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 3px;
}
