/* CSS Variables */
:root {
  --primary-blue: #0a2463;
  --accent-teal: #1e6ba8;
  --neutral-dark: #0a0a0a;
  --warm-light: #f8f9fa;
  --text-dark: #333;
  --text-light: #666;
  --border-color: #eaeaea;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --error-color: #dc3545;
  --transition: all 0.3s ease;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white !important;
}

.btn-primary:hover {
  background-color: var(--accent-teal);
}

.btn-primary:active {
  color: var(--warm-light) !important;
}

.btn-primary a {
  color: var(--warm-light) !important;
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

/* Navigation */
.page-nav {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--warm-light) 0%, #fff 100%);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--warm-light) 0%, #fff 100%);
  padding: 20px 0 80px;
  position: relative;
  overflow: hidden;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.hero-content {
  max-width: 600px;
  margin-top: 60px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--primary-blue);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: var(--text-light);
}

.hero-cta {
  display: flex;
  gap: 20px;
}

.hero-visual {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 180px;
  text-align: center;
  transition: var(--transition);
}

.floating-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-1 {
  top: 0;
  left: 0;
}

.card-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.card-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background-color: var(--warm-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary-blue);
}

.floating-card h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

/* Featured Products */
.featured-products {
  padding: 80px 0;
}

.product-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-preview-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.product-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-preview-card.featured {
  border: 2px solid var(--accent-teal);
}

.product-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: var(--accent-teal);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-badge.large {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 20px;
  font-size: 1rem;
}

/* Products Section */
.products-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border-color);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-card.featured {
  border: 2px solid var(--accent-teal);
}

.product-icon {
  width: 70px;
  height: 70px;
  background-color: var(--warm-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-icon svg {
  width: 35px;
  height: 35px;
  color: var(--primary-blue);
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--primary-blue);
}

.product-subtitle {
  color: var(--accent-teal);
  font-weight: 500;
  margin-bottom: 15px;
}

.product-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.feature-tag {
  background-color: var(--warm-light);
  color: var(--text-dark);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.product-details {
  margin-bottom: 25px;
}

.product-details h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.product-details ul {
  list-style: none;
}

.product-details li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-light);
}

.product-details li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
}

.product-links {
  display: flex;
  gap: 15px;
}

/* Tendela Hero */
.tendela-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
  color: white;
  padding: 100px 0;
}

.tendela-hero .hero-content {
  color: white;
}

.tendela-hero h1 {
  color: white;
  font-size: 3rem;
}

.tendela-hero h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.tendela-hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: var(--warm-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--warm-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary-blue);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

.feature-card p {
  color: var(--text-light);
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
}

.process-tabs {
  max-width: 800px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 30px;
  border: 2px solid var(--primary-blue);
  background: transparent;
  color: var(--primary-blue);
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background-color: var(--primary-blue);
  color: white;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.step p {
  color: var(--text-light);
}

/* Open Source Section */
.opensource-section {
  padding: 80px 0;
}

.opensource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.opensource-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.opensource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.project-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.project-info h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.github-stats {
  display: flex;
  gap: 20px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-light);
}

.stat svg {
  width: 18px;
  height: 18px;
}

.project-description {
  margin-bottom: 20px;
}

.project-description p {
  color: var(--text-light);
}

.project-features {
  margin-bottom: 20px;
}

.project-features h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.project-features ul {
  list-style: none;
}

.project-features li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-light);
}

.project-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
}

.project-tech {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.tech-tag {
  background-color: var(--warm-light);
  color: var(--text-dark);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-links {
  display: flex;
  gap: 15px;
}

/* Make project videos uniform height */
.project-video-container video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .project-video-container video {
    height: 180px;
  }
}

/* Contribution Section */
.contribution-section {
  padding: 80px 0;
  background-color: var(--warm-light);
}

.contribution-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-icon {
  width: 70px;
  height: 70px;
  background-color: var(--warm-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon svg {
  width: 35px;
  height: 35px;
  color: var(--primary-blue);
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.step p {
  color: var(--text-light);
}

/* Company Story */
.company-story {
  padding: 80px 0;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.story-text {
  flex: 1;
}

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.story-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.story-visual {
  flex: 1;
}

.story-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision */
.mission-vision {
  padding: 80px 0;
  background-color: var(--warm-light);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mv-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.mv-icon {
  width: 70px;
  height: 70px;
  background-color: var(--warm-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mv-icon svg {
  width: 35px;
  height: 35px;
  color: var(--primary-blue);
}

.mv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

.mv-card p {
  color: var(--text-light);
}

/* Values Section */
.values-section {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
  width: 60px;
  height: 60px;
  background-color: var(--warm-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary-blue);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

.value-card p {
  color: var(--text-light);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background-color: var(--warm-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--text-light);
  font-weight: 500;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--primary-blue);
}

.member-title {
  color: var(--accent-teal);
  font-weight: 500;
  margin-bottom: 15px;
}

.member-bio {
  color: var(--text-light);
  margin-bottom: 20px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: var(--warm-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.member-social a:hover {
  background-color: var(--primary-blue);
}

.member-social a:hover svg {
  color: white;
}

.member-social svg {
  width: 20px;
  height: 20px;
  color: var(--primary-blue);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-blue);
}

.contact-form {
  max-width: 600px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.info-icon {
  width: 60px;
  height: 60px;
  background-color: var(--warm-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.info-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary-blue);
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.info-card p {
  color: var(--text-light);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--warm-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-blue);
}

.social-links a:hover svg {
  color: white;
}

.social-links svg {
  width: 20px;
  height: 20px;
  color: var(--primary-blue);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: var(--warm-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-blue);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-buttons .btn-secondary {
  border-color: white;
  color: white;
}

.cta-buttons .btn-secondary:hover {
  background-color: white;
  color: var(--primary-blue);
}

/* Integration Section */
.integration-section {
  padding: 80px 0;
  background-color: var(--warm-light);
}

.integration-diagram {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.integration-item {
  display: inline-block;
  margin: 20px;
}

.integration-icon {
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.integration-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.integration-item h4 {
  color: var(--primary-blue);
}

.integration-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

/* Footer */
.footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 70px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-brand {
  flex: 1;
  max-width: 350px;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 50px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: white;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

/* Consolidated theme-specific helpers (moved from root style.css) */

/* Accessibility helper: visually hidden but available to screen readers */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Footer layout tweaks added during theme cleanup */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.footer-brand .social-links {
  justify-content: flex-start;
  margin-top: 12px;
}

/* Mobile menu helpers */
.mobile-menu-toggle { display: none; }
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    font-size: 26px;
    color: var(--primary-blue);
    cursor: pointer;
  }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 85%;
    max-width: 360px;
    background: #fff;
    padding: 60px 24px;
    box-shadow: -8px 0 30px rgba(0,0,0,0.12);
    z-index: 99999;
    transform: translateX(0);
    overflow-y: auto;
  }
  .nav-links.active li { margin: 16px 0; }
}

/* Parsley validation styles */
.parsley-errors-list { list-style: none; margin: 6px 0 0 0; padding: 0; color: #dc3545; font-size: 13px; line-height: 1.2; }
.parsley-errors-list li { margin: 0; }
.parsley-error { border-color: #dc3545 !important; box-shadow: 0 0 0 3px rgba(220,53,69,0.06); }
.parsley-success { border-color: #28a745 !important; box-shadow: 0 0 0 3px rgba(40,167,69,0.05); }
input.parsley-error, textarea.parsley-error, select.parsley-error { background-image: none; }
.field-error { color: #dc3545; font-size: 13px; }
.field-success { color: #28a745; font-size: 13px; }
.contact-form .form-group { position: relative; }
.contact-form .parsley-errors-list { position: relative; }

/* Toast notifications */
.tutajua-toast-container { position: fixed; right: 12px; bottom: 12px; display: flex; flex-direction: column; gap: 8px; z-index: 9999999; }
.tutajua-toast { min-width: 220px; max-width: 360px; background: #222; color: #fff; padding: 10px 14px; border-radius: 6px; box-shadow: 0 6px 18px rgba(0,0,0,0.2); transform: translateY(8px); opacity: 0; transition: all 0.28s ease; }
.tutajua-toast.visible { opacity: 1; transform: translateY(0); }
.tutajua-toast.success { background: #28a745; }
.tutajua-toast.error { background: #dc3545; }
.tutajua-toast.info { background: var(--primary-blue); }

/* Modal for submission status */
.tutajua-modal-overlay { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.35); z-index: 10000000; opacity: 0; transition: opacity 0.25s ease; pointer-events: none; }
.tutajua-modal-overlay.visible { opacity: 1; pointer-events: auto; }
.tutajua-modal { background: #fff; border-radius: 10px; padding: 22px; max-width: 420px; width: 92%; box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.tutajua-modal-body { display:flex; gap:14px; align-items:center; }
.tutajua-modal-spinner { width:36px; height:36px; border-radius:50%; border:4px solid rgba(0,0,0,0.08); border-top-color: var(--primary-blue); animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.tutajua-modal-message { font-size: 15px; color: #222; flex:1; }
.tutajua-modal-overlay.success .tutajua-modal { border: 4px solid rgba(40,167,69,0.12); }
.tutajua-modal-overlay.error .tutajua-modal { border: 4px solid rgba(220,53,69,0.12); }


.legal-links a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-visual {
    display: none;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .page-header h1,
  .section-header h2 {
    font-size: 2rem;
  }

  .product-grid,
  .opensource-grid,
  .features-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    justify-content: space-around;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  .hero-cta,
  .cta-buttons {
    flex-direction: column;
  }
}

.products-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.product-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid #eef2f6;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-logo-container {
  margin-bottom: 15px;
  height: 50px;
  display: flex;
  align-items: center;
}

.product-logo-img {
  max-height: 100%;
  max-width: 150px;
  object-fit: contain;
}

.product-inline-image {
  width: 100%;
  border-radius: 8px;
  margin: 15px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-height: 250px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #1a202c;
}

.product-subtitle {
  color: #4a5568;
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.product-card p {
  color: #718096;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.feature-tag {
  background-color: #f7fafc;
  color: #4a5568;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.product-details {
  margin-bottom: 20px;
  background: #f8fafc;
  padding: 15px;
  border-radius: 8px;
}

.product-details h4 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #2d3748;
}

.product-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-details li {
  padding-left: 18px;
  position: relative;
  font-size: 0.85rem;
  color: #4a5568;
  margin-bottom: 4px;
}

.product-details li:before {
  content: "•";
  color: #4299e1;
  position: absolute;
  left: 5px;
  font-weight: bold;
}

.product-links {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.integration-section {
  padding: 80px 0;
  background-color: white;
  text-align: center;
}

.integration-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.integration-row {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.integration-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  overflow: hidden;
}

.integration-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.integration-icon img[src*="logo"] {
  object-fit: contain;
  padding: 15px;
}

.integration-connections {
  display: flex;
  gap: 40px;
  width: 100%;
  justify-content: center;
}

.connection-line {
  width: 2px;
  height: 40px;
  background: #e2e8f0;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Template: Database Page specific styles */
.content-story .page-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 0 60px;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
}

.content-story .page-content h1,
.content-story .page-content h2,
.content-story .page-content h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-blue);
  margin: 0 0 14px;
  line-height: 1.15;
}

.content-story .page-content p {
  margin-bottom: 16px;
  color: var(--text-dark);
}

.db-list h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--primary-blue);
}

.db-list table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
}
.db-list th,
.db-list td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
}
.db-list thead th {
  background: #fafafa;
  font-weight: 600;
  color: var(--text-dark);
}
.db-list tbody tr:hover {
  background: rgba(10,36,99,0.02);
}

.db-list a { color: var(--primary-blue); text-decoration: none; }
.db-list a:hover { text-decoration: underline; }

.db-pagination { margin-top: 18px; }
.db-pagination .page-link { display:inline-block; padding:8px 12px; border-radius:6px; border:1px solid var(--border-color); margin-right:8px; color:var(--text-dark); text-decoration:none; }
.db-pagination .page-link.current { background:var(--primary-blue); color:#fff; border-color:var(--primary-blue); }

.db-entry { max-width:920px; margin:0 auto; padding:28px 0; }
.db-entry .message { background:#fafafa; border:1px solid var(--border-color); padding:14px; border-radius:6px; white-space:pre-wrap; font-family:inherit; }
.db-entry p { margin-bottom:12px; }

@media (max-width:768px) {
  .content-story .page-content { padding:18px 12px 40px; }
  .db-list th, .db-list td { padding:10px; }
}
