/* ═══════════════════════════════════════════════════════════════
   F4T - STYLE2.CSS
   Styles spécifiques aux pages (catalogue, légal, industries,
   contact, about, services)
   Aucune modification — extraction exacte de chaque page.
   ═══════════════════════════════════════════════════════════════ */


/* ╔══════════════════════════════════════════════════════════════╗
   ║  CATALOGUE — catalogue.html                                  ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ─── HERO (catalogue) ──────────────────────────────────────── */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 40px;
}

.hero-title {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 50px;
}

.hero-container {
  max-width: 1400px;
  width: 100%;
}

.hero-catalog {
  position: relative;
  background: url('/assets/images/hero-catalog-bg.jpg') center/cover no-repeat;
  padding: 120px 20px 60px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
}

.hero-catalog::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

/* ─── CATALOG GRID (category cards) ────────────────────────── */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  justify-items: center;
}

.catalog-card {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: #fff;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s, box-shadow 0.3s, opacity 0.6s;
  opacity: 0;
  transform: translateY(20px);
}

.catalog-card.show {
  opacity: 1;
  transform: translateY(0);
}

.catalog-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s;
}

.catalog-card.active::after {
  background: rgba(0, 120, 102, 0.65);
}

.catalog-card-text {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.catalog-card-text span {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.catalog-card-text p {
  font-size: 15px;
  line-height: 1.4;
}

.catalog-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* ─── PRODUCTS SECTION ──────────────────────────────────────── */
.products-section {
  padding: 60px 20px;
  display: none;
}

.products-container {
  max-width: 1200px;
  margin: auto;
}

.products-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* ─── PRODUCT CARD ──────────────────────────────────────────── */
.product-card {
  background: #fff;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.5s;
  width: 250px;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.product-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.03) rotateZ(-0.5deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.product-content {
  padding: 15px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.product-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #222;
  line-height: 1.2em;
  height: 2.4em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-content p {
  font-size: 13px;
  color: #555;
  line-height: 1.4em;
  height: 2.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  white-space: normal;
  word-wrap: break-word;
}

.product-logo {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 35px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── PRODUCT WINDOW (modal) ────────────────────────────────── */
.product-window {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.product-window-content {
  background: #fff;
  width: 1000px;
  max-width: 95%;
  height: 90vh;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

#product-frame {
  width: 100%;
  height: 100%;
  border: none;
}

#product-window-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

/* ─── ANIMATIONS (catalogue) ────────────────────────────────── */
@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE (catalogue) ────────────────────────────────── */
@media (max-width: 768px) {

  .hero-content {
    padding-top: 20px;
  }

  .hero-title {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .hero-subtitle {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin-top: 16px;
  }

  .catalog-card {
    height: 90px;
    border-radius: 10px;
  }

  .catalog-card-text {
    padding: 6px;
  }

  .catalog-card-text span {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.2;
  }

  .catalog-card-text p {
    font-size: 10px;
    line-height: 1.25;
  }

  .products-section {
    padding: 18px 10px;
  }

  .products-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-items: stretch;
  }

  .product-card {
    width: 100%;
    height: auto;
    min-height: 0;
    border-radius: 8px;
  }

  .product-card img {
    height: 180px;
  }

  .product-content {
    padding: 6px 6px 8px;
  }

  .product-content h3 {
    font-size: 11px;
    font-weight: 600;
    height: auto;
    margin-bottom: 2px;
    line-height: 1.2em;
  }

  .product-content p {
    font-size: 10px;
    height: auto;
    line-height: 1.3em;
    color: #777;
  }

  .product-logo {
    width: 18px;
    height: 18px;
    bottom: 5px;
    left: 5px;
  }
}

@media (max-width: 480px) {

  .hero-title {
    font-size: 18px;
  }

  .hero-subtitle {
    font-size: 11px;
    margin-bottom: 14px;
  }

  .catalog-card {
    height: 72px;
    border-radius: 8px;
  }

  .catalog-card-text span {
    font-size: 10px;
  }

  .catalog-card-text p {
    display: none;
  }

  .products-grid {
    gap: 8px;
  }

  .product-card img {
    height: 120px;
  }

  .product-content {
    padding: 6px 6px 8px;
  }

  .product-content h3 {
    font-size: 11px;
  }

  .product-content p {
    font-size: 10px;
  }

  .product-logo {
    width: 18px;
    height: 18px;
  }

  .products-title {
    font-size: 17px;
  }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  MENTIONS LÉGALES — legal.html                               ║
   ╚══════════════════════════════════════════════════════════════╝ */

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.legal-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  transition: all 0.25s ease;
}

.legal-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.legal-card h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #2E7D5D;
}

.legal-card h3 {
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 6px;
  color: #222;
}

.legal-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.legal-card ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.legal-card li {
  margin-bottom: 5px;
  color: #444;
}

.legal-card strong {
  color: #000;
}

.legal-card a {
  color: #2E7D5D;
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

.legal-update {
  font-size: 0.85rem;
  color: #888;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .legal-card {
    padding: 20px;
  }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  INDUSTRIES — industries.html                                ║
   ╚══════════════════════════════════════════════════════════════╝ */

.product-note {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.industry-products ul {
  list-style: none;
  padding-left: 0;
}

.industry-products ul li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.industry-products ul li a {
  text-decoration: none;
  color: #007866;
  transition: color 0.3s, transform 0.2s;
  display: inline-block;
}

.industry-products ul li a:hover {
  color: #00b894;
  transform: translateX(5px);
}

.industry-icon-large i {
  font-size: 55px;
  color: #007866;
  transition: transform 0.3s, color 0.3s;
}

.industry-icon-large i:hover {
  transform: scale(1.2);
  color: #00b894;
}

.industries-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.industry-detail {
  margin-bottom: 60px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

.industry-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: #f0f0f0;
}

.industry-header .industry-icon-large {
  font-size: 50px;
}

.industry-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.industry-header p {
  margin: 4px 0 0;
  font-size: 16px;
  color: #555;
}

.industry-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 30px;
}

.industry-text {
  flex: 1 1 400px;
  min-width: 300px;
}

.industry-text h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.industry-text ul {
  margin: 0 0 20px 0;
  padding-left: 20px;
  color: #333;
}

.industry-text p {
  margin-bottom: 20px;
  color: #444;
}

.industry-text a.btn {
  padding: 10px 20px;
  border-radius: 6px;
  background: #007866;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.industry-products {
  flex: 1 1 250px;
  min-width: 200px;
  background: #f0f0f0;
  border-radius: 8px;
  padding: 20px;
}

.industry-products h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.industry-products ul {
  margin: 0;
  padding-left: 20px;
  color: #333;
}

@media (max-width: 768px) {
  .industry-content {
    flex-direction: column;
  }

  .industry-products {
    margin-top: 20px;
  }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  CONTACT — contact.html                                      ║
   ╚══════════════════════════════════════════════════════════════╝ */

.contact-section {
  padding: var(--spacing-xxl) 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  margin-top: var(--spacing-xl);
}

.contact-info {
  background-color: var(--color-light);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
}

.contact-info h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.contact-detail {
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm) 0;
}

.contact-detail strong {
  display: block;
  color: var(--color-dark);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 6px;
}

.contact-detail p,
.contact-detail a {
  color: var(--color-gray);
  line-height: 1.6;
}

.contact-detail a {
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-detail a:hover {
  color: var(--color-primary);
}

.contact-form {
  background-color: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-weight: var(--font-weight-medium);
  color: var(--color-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-fast);
  background-color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 93, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: auto;
  cursor: pointer;
}

.form-checkbox label {
  margin-bottom: 0;
  font-size: 0.875rem;
  cursor: pointer;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-message {
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  display: none;
  animation: slideDown 0.3s ease;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-message.show {
  display: block;
}

.contact-map {
  margin-top: var(--spacing-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--color-light);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  À PROPOS — about.html                                       ║
   ╚══════════════════════════════════════════════════════════════╝ */

.hero-title-about {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.section-divider {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #1f8f3a, #4cd46b);
  margin: 70px 0;
  border-radius: 3px;
}

.company-text {
  max-width: 1200px;
  line-height: 1.9;
  font-size: 17px;
  color: #444;
}

.company-text p {
  margin-bottom: 22px;
  padding-left: 22px;
  position: relative;
  text-align: justify;
}

.company-text p::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #007866;
  font-size: 20px;
  font-weight: 700;
}

.timeline {
  max-width: 1200px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.timeline-text {
  flex: 1;
  background: #f0f0f0;
  padding: 12px 16px;
  border-radius: 8px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.timeline-year {
  flex-shrink: 0;
  width: 100px;
  font-weight: 700;
  font-size: 18px;
  color: #007866;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  height: 2px;
  background: #007866;
  top: 50%;
  left: 100px;
  width: calc(100% - 100px);
  transform: translateY(-50%);
  z-index: 0;
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  SERVICES — services.html                                    ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* HERO (services) */
.hero.hero-small {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

/* SERVICE CARD */
.service-card {
  background: white;
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.service-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.service-features {
  padding-left: 18px;
}

.service-features li {
  position: relative;
  padding-left: 20px;
  list-style: none;
}

.service-features li::before {
  content: "•";
  color: #007866;
  position: absolute;
  left: 0;
  font-size: 18px;
  line-height: 1.2;
}

/* PROCESS SECTION */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 250px);
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.process-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  text-align: center;
  transition: .3s;
  width: 100%;
  max-width: 250px;
}

.process-card p {
  text-align: center;
  padding-left: 0;
  margin: 0;
}

.process-card:hover {
  transform: translateY(-5px);
}

.process-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #007866;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: auto;
  margin-bottom: 15px;
  font-size: 18px;
}

/* CTA (services) */
.cta-modern {
  background: linear-gradient(120deg, #007866, #005f52);
  color: white;
  padding: 90px 0;
  text-align: center;
}

.cta-modern h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-modern p {
  font-size: 18px;
  opacity: .9;
  margin-bottom: 30px;
}

.btn-modern {
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin: 5px;
}

.btn-primary-modern {
  background: white;
  color: #007866;
}

.btn-secondary-modern {
  border: 2px solid white;
  color: white;
}

/* RESPONSIVE (services) */
@media (max-width: 768px) {

  .hero.hero-small {
    height: auto;
    min-height: 220px;
    padding: 40px 20px;
  }

  .hero.hero-small h1 {
    font-size: 34px;
    margin-bottom: 12px;
  }

  .hero.hero-small p {
    font-size: 17px;
    line-height: 1.4;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
  }

  .service-card {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .service-icon {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .service-title {
    font-size: 19px;
  }

  .service-description {
    font-size: 14px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: unset;
    gap: 16px;
    margin-top: 32px;
  }

  .process-card {
    max-width: 100%;
    padding: 18px 14px;
  }

  .process-number {
    width: 42px;
    height: 42px;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .process-card h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .process-card p {
    font-size: 13px;
  }

  .cta-modern {
    padding: 60px 20px;
  }

  .cta-modern h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .cta-modern p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .btn-modern {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 8px auto;
    text-align: center;
    padding: 14px 20px;
    box-sizing: border-box;
  }
}

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

  .process-card {
    max-width: 100%;
  }

  .hero.hero-small h1 {
    font-size: 28px;
  }

  .hero.hero-small p {
    font-size: 15px;
  }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  TRUST + VALUES — index.html                                 ║
   ╚══════════════════════════════════════════════════════════════╝ */

.trust-values {
  padding: 60px 20px;
  background: #fff;
}

.tv-block {
  margin-bottom: 40px;
}

.tv-main-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 15px;
}

.tv-subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 40px;
}

.tv-grid {
  display: grid;
  grid-template-columns: repeat(3, 220px);
  justify-content: center;
  gap: 20px 40px;
  position: relative;
}

.tv-grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
  justify-content: center;
  gap: 20px;
  grid-auto-flow: row;
  align-items: start;
}

.tv-card {
  background: linear-gradient(145deg, #ffffff, #f3f3f3);
  border-radius: 14px;
  padding: 20px 15px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  word-break: break-word;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.tv-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.tv-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.tv-title i {
  font-size: 22px;
  color: #007866;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 120, 102, 0.1);
}

.tv-card p {
  font-size: 13px;
  color: #555;
  margin-top: 6px;
  line-height: 1.3;
}

/* CATEGORIES GRID (index) */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* RESPONSIVE (index trust/values + categories) */
@media (max-width: 768px) {

  .trust-values {
    padding: 36px 14px;
  }

  .tv-block {
    margin-bottom: 28px;
  }

  .tv-main-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .tv-subtitle {
    font-size: 13px;
    margin-bottom: 22px;
  }

  .tv-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: unset;
    gap: 12px;
  }

  .tv-grid1 {
    grid-template-columns: repeat(2, 1fr);
    justify-content: unset;
    gap: 12px;
  }

  .tv-card {
    padding: 12px 8px;
    min-height: 80px;
    border-radius: 10px;
  }

  .tv-title {
    font-size: 13px;
    gap: 5px;
  }

  .tv-title i {
    font-size: 16px;
    width: 30px;
    height: 30px;
  }

  .tv-card p {
    font-size: 11px;
    margin-top: 4px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .categories-grid .product-image img {
    height: 100px;
  }

  .categories-grid .product-content {
    padding: 10px 10px 12px;
  }

  .categories-grid .product-title {
    font-size: 0.85rem;
    margin-bottom: 5px;
  }

  .categories-grid .product-features {
    font-size: 0.72rem;
    padding-left: 15px;
  }

  .categories-grid .product-features li {
    margin-bottom: 2px;
  }

  /* Products preview (index) */
  .products-preview .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .products-preview .product-card .product-image {
    height: 90px;
  }

  .products-preview .product-card .product-image img {
    height: 90px;
    object-fit: cover;
  }

  .products-preview .product-card .product-badge {
    font-size: 0.6rem;
    padding: 3px 7px;
  }

  .products-preview .product-card .product-content {
    padding: 8px 9px 10px;
  }

  .products-preview .product-card .product-title {
    font-size: 0.75rem;
    margin-bottom: 4px;
    font-weight: 600;
  }

  .products-preview .product-card .product-description {
    font-size: 0.65rem;
    line-height: 1.4;
    margin-bottom: 6px;
    color: #777;
  }

  .products-preview .product-card .product-features {
    font-size: 0.62rem;
    margin-bottom: 8px;
  }

  .products-preview .product-card .product-features li {
    margin-bottom: 2px;
    padding-left: 14px;
  }

  .products-preview .product-card .btn {
    font-size: 0.65rem;
    padding: 5px 10px;
  }

  .video-block {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 24px 0;
  }

  .video-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-top: 16px;
    margin-top: 16px;
  }

  .video-stat-number {
    font-size: 1.5rem;
  }

  .video-stat-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {

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

  .tv-card {
    min-height: 70px;
    padding: 10px 6px;
  }

  .tv-title {
    font-size: 12px;
  }

  .tv-title i {
    font-size: 14px;
    width: 26px;
    height: 26px;
  }

  .categories-grid .product-image img {
    height: 85px;
  }

  .categories-grid .product-content {
    padding: 8px;
  }

  .categories-grid .product-title {
    font-size: 0.8rem;
  }

  .categories-grid .product-features {
    font-size: 0.68rem;
  }

  .products-preview .product-card .product-image {
    height: 75px;
  }

  .products-preview .product-card .product-image img {
    height: 75px;
  }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  CTA SECTION — industries.html                               ║
   ╚══════════════════════════════════════════════════════════════╝ */

.cta-section {
  padding: 60px 0;
  background: #007866;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  margin: 40px auto;
}

.cta-section .cta-title {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-section .cta-subtitle {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-section a.btn-large {
  padding: 15px 30px;
  font-size: 16px;
  background: white;
  color: #007866;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-section a.btn-large:hover {
  background: #e6e6e6;
}