@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  --red: #dc2626;
  --red-dark: #b91c1c;
  --red-soft: #fef2f2;
  --green: #16a34a;
  --ink: #111827;
  --ink-soft: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f9fafb;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(17, 24, 39, 0.12);
  --shadow-soft: 0 14px 40px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.loaded .navbar {
  animation: drop-in 0.55s ease both;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(220, 38, 38, 0.32);
  outline-offset: 3px;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
}

.brand-red,
.text-red {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: #4b5563;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 13px 11px;
  border-radius: 8px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  background: var(--red-soft);
}

.whatsapp {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white) !important;
  background: #25d366;
  font-weight: 800;
}

.nav-links .whatsapp:hover,
.nav-links .whatsapp.active {
  color: var(--white) !important;
  background: #16a34a;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transition: all 0.2s ease;
  cursor: pointer;
}

.theme-toggle:hover {
  background: var(--soft);
  transform: translateY(-1px);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(220, 38, 38, 0.32);
  outline-offset: 3px;
}


.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.24)),
    url("../img/hero.jpeg") center / cover;
}

.hero-content {
  width: min(650px, 100%);
  padding: 86px 0 120px;
  margin: 0px 10%;
  animation: hero-rise 0.8s ease both;
}

.hero h1,
.page-title,
.section-title {
  margin: 0;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 62px);
}

.page-title,
.section-title {
  font-size: clamp(32px, 4.4vw, 54px);
}

.hero p,
.page-intro,
.section-copy {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 18px);
}

.hero p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #d1d5db;
  font-size: 19px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  color: var(--white);
  background: var(--red);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  background: var(--red-dark);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.22);
  transform: translateY(-1px);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
}

.button.light {
  color: var(--red);
  background: var(--white);
}

.button.dark {
  background: var(--ink);
}

.section {
  padding: clamp(64px, 8vw, 92px) 0;
}

.section.soft,
.page-header {
  background: var(--soft);
}

.section.dark {
  color: var(--white);
  background: var(--ink);
}

.page-header {
  padding: clamp(68px, 8vw, 96px) 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.page-header.red-header {
  color: var(--white);
  background: var(--red);
}

.page-header.dark-header {
  color: var(--white);
  background: var(--ink);
}

.page-header .page-intro {
  max-width: 720px;
  margin: 18px auto 0;
  color: inherit;
  opacity: 0.84;
}

.page-header .container {
  animation: page-rise 0.7s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--red);
  background: var(--red-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 64px);
  align-items: center;
}

.card {
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.stat-row {
  position: relative;
  z-index: 2;
  margin-top: -70px;
}

.stat-card,
.service-card,
.value-card,
.product-card,
.contact-card {
  padding: clamp(22px, 3vw, 30px);
}

.service-card,
.value-card,
.contact-card,
.product-card,
.mfg-option,
.team-card {
  height: 100%;
}

.stat-card,
.value-card,
.contact-card {
  text-align: center;
}

.value-card,
.contact-card {
  text-align: center;
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(220, 38, 38, 0.02));
  border: 1px solid rgba(220, 38, 38, 0.12);
  transition: all 0.3s ease;
}

.service-icon svg {
  color: var(--red);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(220, 38, 38, 0.04));
  border-color: var(--red);
  transform: scale(1.05);
}

.service-card:hover .service-icon svg {
  color: var(--red-dark);
  transform: scale(1.1);
}

.icon-box {
  top: 12px;
  right: 12px;
  position: absolute;

    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}


.stat-card .icon-box,
.value-card .icon-box,
.contact-card .icon-box {
  margin-inline: auto;
}

.stat-value {
  font-size: 30px;
  font-weight: 800;
}

.stat-label,
.pill {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-image,
.about-photo,
.mfg-photo {
  position: relative;
}

.feature-image img,
.about-photo img,
.mfg-photo img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image img {
  aspect-ratio: 4 / 3;
}

.about-photo img,
.mfg-photo img {
  aspect-ratio: 4 / 5;
}

.badge {
  position: absolute;
  right: 24px;
  bottom: -28px;
  width: 156px;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 50px rgba(220, 38, 38, 0.34);
}

.badge strong {
  display: block;
  font-size: 32px;
}

.checks {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #374151;
  font-weight: 700;
}

.checks li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #16a34a;
  background: #dcfce7;
  font-size: 9px;
  font-weight: 800;
}

.product-type img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0px;
}

.product-type {
  overflow: hidden;
}

.product-type h3,
.product-type p {
  padding-inline: 22px;
}
.product-type h4 {
  margin: 0;
  padding-bottom: 10px;
}

.product-type p {
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 18px;
  background: #f3f4f6;
}

.product-card h3,
.product-type h3 {
  margin: 0 0 6px;
  color: var(--ink-soft);
  line-height: 1.2;
}

.product-card p,
.product-type p,
.service-card p,
.value-card p,
.contact-card p {
  color: var(--muted);
}

.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.product-meta>div {
  min-width: 0;
}

.pill {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--soft);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(32px, 5vw, 54px);
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 620px;
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.06;
}

.cta-band p {
  margin: 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.center-actions {
  justify-content: center;
}

.spaced-grid {
  margin-top: 26px;
}

.values-title {
  margin-bottom: 34px;
  text-align: center;
}

.process-heading {
  margin-bottom: 48px;
  text-align: center;
}

.compliance-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.compliance-intro h3 {
  margin: 0 0 24px 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.3;
  text-align: center;
}

.compliance-intro p {
  margin: 0 0 16px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.compliance-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compliance-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.compliance-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--red-soft);
  color: var(--red);
  flex-shrink: 0;
}

.compliance-item h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.3;
}

.compliance-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.compliance-standards {
  background: var(--soft);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.compliance-standards h3 {
  margin: 0 0 24px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.3;
  text-align: center;
}

.standards-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.standard-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.standard-item:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.standard-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.standard-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.standard-text strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-soft);
}

.standard-text span {
  font-size: 14px;
  color: var(--muted);
}

.unified-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px 24px;
  background: var(--red-soft);
  text-align: center;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
  flex-shrink: 0;
}

.card-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.3;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  flex: 1;
}

.card-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  justify-content: center;
}

.products-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mini-item {
  padding: 8px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: left;
  transition: background 0.2s ease;
}

.mini-item:hover {
  background: var(--red-soft);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: background 0.2s ease;
}

.service-item:hover {
  background: var(--red-soft);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--white);
  color: var(--red);
  flex-shrink: 0;
}

.service-info h4 {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.3;
}

.service-info p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}

.certification-badges {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: background 0.2s ease;
}

.cert-item:hover {
  background: var(--red-soft);
}

.cert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 10px;
  flex-shrink: 0;
}

.cert-item strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: background 0.2s ease;
}

.benefit-item:hover {
  background: var(--red-soft);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}











.cta-actions {
  margin-top: 0;
}

.green-button {
  background: var(--green);
}

.green-button:hover {
  background: #15803d;
}

.portfolio-banner {
  margin-bottom: 34px;
  overflow: hidden;
}

.portfolio-banner img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.form-status {
  display: none;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

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

.process {
  display: grid;
  gap: 26px;
}

.process-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-items: start;
}

.step-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  font-weight: 800;
}

.section.dark p,
.section.dark .section-copy {
  color: #9ca3af;
}

.timeline {
  position: relative;
  display: grid;
  gap: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 28px;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: start;
}

.timeline-year {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.timeline-content h3,
.team-card h3,
.mfg-option h3 {
  margin: 0 0 8px;
}

.timeline-content p,
.team-card p,
.mfg-option p {
  margin: 0;
  color: var(--muted);
}

.team-card {
  padding: 28px;
  text-align: center;
}

.avatar {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #f97316);
  overflow: hidden;
  font-weight: 800;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.role {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: var(--red);
  background: #fef2f2;
  font-size: 12px;
  font-weight: 800;
}

.mfg-options {
  align-items: stretch;
}

.mfg-option {
  position: relative;
  overflow: hidden;
  padding: 32px;
}

.mfg-option::after {
  content: "";
  position: absolute;
  inset: auto -30px -44px auto;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.08);
}

.mfg-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-weight: 800;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

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

.card.reveal:hover,
.mfg-option:hover,
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

@keyframes drop-in {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes page-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #374151;
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 14px 16px;
  outline: 0;
  color: var(--ink);
}


.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.14);
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--soft);
  padding: 54px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(140px, 0.8fr)) minmax(180px, 1fr);
  gap: 34px;
}

.footer h3 {
  margin: 0 0 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer p,
.footer a,
.footer li {
  color: var(--muted);
  font-size: 14px;
}

.footer ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #9ca3af;
  font-size: 12px;
}
.footer-bottom a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* WhatsApp Button Styles */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.whatsapp-btn:hover svg {
  transform: scale(1.1);
}

/* Product Card WhatsApp Position */
.product-card {
  position: relative;
}

.product-card .product-meta {
  position: relative;
  padding-bottom: 5px;
}

/* Product Description Position */
.product-card p {
  position: relative;
  z-index: 1;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  gap: 8px;
  border-radius: 999px;
  color: #4b5563;
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
}


@media (max-width: 900px) {

  .grid.four,
  .grid.three,
  .grid.two,
  .split,
  .contact-grid,
  .footer-grid,
  .about-grid,
  .compliance-grid,
  .standards-list {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card-header {
    padding: 24px 20px 20px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
  }

  .card-header h3 {
    font-size: 18px;
  }

  .card-content {
    padding: 20px;
    gap: 20px;
  }

  .products-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-list {
    gap: 12px;
  }

  .service-item {
    padding: 12px;
  }

  .benefits-list {
    gap: 8px;
  }


  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 42px 1fr;
  }

  .timeline-year {
    width: 42px;
    height: 42px;
    font-size: 10px;
  }

  .stat-row {
    margin-top: -44px;
  }

  .cta-band,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-band {
    padding: 32px;
  }
}

@media (max-width: 760px) {
  .navbar {
    position: sticky;
  }

  .nav-inner {
    min-height: 68px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px 0 6px;
    border-top: 1px solid var(--line);
  }

  .js .nav-links {
    display: none;
  }

  .js .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
  }

  .nav-links .whatsapp {
    justify-content: center;
    margin-top: 4px;
  }

  .dropdown {
    width: 100%;
    flex-direction: column;
  }

  .dropdown-main-link {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    border-radius: 6px;
  }

  .dropdown-toggle {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    border-radius: 6px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: none;
    padding: 0;
    margin: 6px 0 0;
    display: none;
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-menu li {
    margin: 0;
  }

  .dropdown-menu a {
    padding: 12px;
    background: var(--soft);
    border-radius: 6px;
    margin-bottom: 4px;
    font-weight: 600;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1120px, calc(100% - 24px));
  }

  .brand {
    font-size: 20px;
  }

  .hero {
    min-height: calc(100vh - 68px);
    min-height: calc(100svh - 68px);
    align-items: flex-end;
    background:
      linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.94)),
      url("../img/hero.jpeg") center / cover;
  }

  .hero-content {
    padding: 96px 0 64px;
  }

  .actions,
  .cta-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .stat-row {
    margin-top: 0;
    padding-top: 24px;
  }

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

  .badge {
    position: static;
    width: auto;
    margin-top: 16px;
  }

  .product-meta {
    display: grid;
  }

  .pill {
    width: fit-content;
  }

  .process-step {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
}

/* ========================================= */
/* HERO SECTION STYLES */
/* ========================================= */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(220, 38, 38, 0.08);
  color: var(--red);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(220, 38, 38, 0.16);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(220, 38, 38, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.trust-badge svg {
  flex-shrink: 0;
}

/* ========================================= */
/* MODERN DESIGN - ADVANTAGES FEATURES */
/* ========================================= */
.advantages-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.advantage-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.advantage-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #f97316);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.advantage-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.1);
  border-color: var(--red);
}

.advantage-feature:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  position: relative;
  flex-shrink: 0;
}

.icon-circle {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.02));
  border: 2px solid rgba(220, 38, 38, 0.15);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.icon-circle svg {
  color: var(--red);
  transition: all 0.4s ease;
}

.icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--red), #f97316);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.advantage-feature:hover .icon-circle {
  transform: scale(1.1);
  border-color: var(--red);
  background: var(--red);
}

.advantage-feature:hover .icon-circle svg {
  color: white;
  transform: scale(1.2);
}

.advantage-feature:hover .icon-bg {
  opacity: 0.1;
  transform: translate(-50%, -50%) scale(1.2);
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px 0;
  transition: color 0.3s ease;
}

.advantage-feature:hover .feature-content h4 {
  color: var(--red);
}

.feature-content p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px 0;
  font-size: 15px;
}

.feature-metric {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.metric-value {
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

/* ========================================= */
/* MODERN DESIGN - CERTIFICATIONS GRID */
/* ========================================= */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cert-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #f97316);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.cert-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.1);
  border-color: var(--red);
}

.cert-item:hover::before {
  transform: scaleX(1);
}

.cert-badge {
  position: relative;
  flex-shrink: 0;
}

.cert-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.02));
  border: 2px solid rgba(220, 38, 38, 0.15);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.cert-icon svg {
  color: var(--red);
  transition: all 0.4s ease;
}

.cert-status {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #10b981;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cert-item:hover .cert-icon {
  transform: scale(1.05);
  border-color: var(--red);
  background: var(--red);
}

.cert-item:hover .cert-icon svg {
  color: white;
  transform: scale(1.1);
}

.cert-info {
  flex: 1;
}

.cert-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.cert-item:hover .cert-info h4 {
  color: var(--red);
}

.cert-info p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 12px 0;
  font-size: 14px;
}

.cert-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.cert-code {
  background: rgba(220, 38, 38, 0.08);
  color: var(--red);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.cert-date {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

/* ========================================= */
/* ENHANCED ICONS & VISUAL APPEAL */
/* ========================================= */
.advantage-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.02));
  border: 2px solid rgba(220, 38, 38, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.advantage-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--red), #f97316);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.advantage-icon svg {
  color: var(--red);
  z-index: 1;
  transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--red);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.2);
}

.advantage-card:hover .advantage-icon::before {
  opacity: 1;
}

.advantage-card:hover .advantage-icon svg {
  color: white;
  transform: scale(1.2);
}

.cert-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.02));
  border: 2px solid rgba(220, 38, 38, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cert-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--red), #f97316);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cert-icon svg {
  color: var(--red);
  z-index: 1;
  transition: all 0.4s ease;
}

.cert-card:hover .cert-icon {
  transform: scale(1.1) rotate(-5deg);
  border-color: var(--red);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.2);
}

.cert-card:hover .cert-icon::before {
  opacity: 1;
}

.cert-card:hover .cert-icon svg {
  color: white;
  transform: scale(1.2);
}

/* Enhanced card hover effects */
.advantage-card,
.cert-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.advantage-card::before,
.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #f97316);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.advantage-card:hover::before,
.cert-card:hover::before {
  transform: scaleX(1);
}

.advantage-card:hover,
.cert-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.15);
  border-color: var(--red);
}

.advantage-card h3,
.cert-card h3 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.advantage-card:hover h3,
.cert-card:hover h3 {
  color: var(--red);
}

.cert-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.cert-details span {
  background: rgba(220, 38, 38, 0.08);
  color: var(--red);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(220, 38, 38, 0.15);
  transition: all 0.3s ease;
}

.cert-card:hover .cert-details span {
  background: var(--red);
  color: white;
  transform: scale(1.05);
}


/* Enhanced highlight items */
.highlight-item {
  background: white;
  border: 2px solid rgba(220, 38, 38, 0.1);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #f97316);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.highlight-item:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
}

.highlight-item:hover::before {
  transform: scaleX(1);
}

.highlight-number {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.highlight-item:hover .highlight-number {
  transform: scale(1.1);
}

/* ========================================= */
/* MODERN DESIGN - MANUFACTURING SHOWCASE */
/* ========================================= */
.manufacturing-showcase {
  margin-top: 48px;
}

.manufacturing-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.1);
  border-color: var(--red);
}

.stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.02));
  border: 2px solid rgba(220, 38, 38, 0.15);
  transition: all 0.4s ease;
}

.stat-icon svg {
  color: var(--red);
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  background: var(--red);
  border-color: var(--red);
}

.stat-card:hover .stat-icon svg {
  color: white;
  transform: scale(1.1);
}

.stat-content strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-content span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.product-categories-modern {
  margin-bottom: 48px;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #f97316);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.1);
  border-color: var(--red);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.02));
  border: 2px solid rgba(220, 38, 38, 0.15);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.category-icon svg {
  color: var(--red);
  transition: all 0.4s ease;
}

.category-card:hover .category-icon {
  background: var(--red);
  border-color: var(--red);
}

.category-card:hover .category-icon svg {
  color: white;
  transform: scale(1.1);
}

.category-info {
  flex: 1;
}

.category-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}

.category-card:hover .category-info h4 {
  color: var(--red);
}

.category-info span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.category-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  background: rgba(220, 38, 38, 0.08);
  padding: 4px 8px;
  border-radius: 8px;
  display: inline-block;
}

.featured-products h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 24px 0;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.product-card-modern {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.12);
  border-color: var(--red);
}



.product-card-modern:hover {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.product-info {
  padding: 24px;
}

.product-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.product-card-modern:hover .product-info h4 {
  color: var(--red);
}

.product-info p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.product-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  background: rgba(220, 38, 38, 0.08);
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(220, 38, 38, 0.15);
  transition: all 0.3s ease;
}

.product-card-modern:hover .meta-tag {
  background: var(--red);
  color: white;
  transform: scale(1.05);
}

/* ========================================= */
/* B2B HERO DESIGN */
/* ========================================= */
.b2b-hero {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.03), rgba(220, 38, 38, 0.01));
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: all 0.3s ease;
}

.b2b-hero:hover {
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.1);
}

.b2b-content {
  text-align: center;
}

.b2b-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.b2b-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.b2b-feature:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 10px;
  color: var(--red);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.b2b-feature:hover .feature-icon {
  background: var(--red);
  color: white;
}

.b2b-feature span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 768px) {
  .b2b-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .b2b-feature {
    padding: 12px;
  }
  
  .feature-icon {
    width: 32px;
    height: 32px;
  }
  
  .b2b-feature span {
    font-size: 12px;
  }
}

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

/* ========================================= */
/* SIMPLE DESIGN - SERVICES SHOWCASE */
/* ========================================= */
.services-simple {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 1200px) {
  .services-simple {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-simple {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.service-item-simple {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.service-item-simple:hover {
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.service-item-simple h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px 0;
  transition: color 0.3s ease;
}

.service-item-simple:hover h3 {
  color: var(--red);
}

.service-item-simple p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.service-features-simple {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.service-features-simple li {
  color: var(--muted);
  font-size: 14px;
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
}

.service-features-simple li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.service-item-simple .button {
  background: var(--red);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.service-item-simple .button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

/* ========================================= */
/* PREMIUM DESIGN - SERVICES SHOWCASE */
/* ========================================= */
.services-premium {
  margin-top: 48px;
}

.services-hero {
  position: relative;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(220, 38, 38, 0.01));
  border-radius: 24px;
  margin-bottom: 48px;
  overflow: hidden;
  border: 2px solid rgba(220, 38, 38, 0.1);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
  opacity: 0.3;
}

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

.hero-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--red), #f97316);
  color: white;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
  transition: all 0.4s ease;
}

.hero-icon svg {
  transition: all 0.4s ease;
}

.services-hero:hover .hero-icon {
  transform: scale(1.05);
  box-shadow: 0 24px 48px rgba(220, 38, 38, 0.4);
}

.services-hero:hover .hero-icon svg {
  transform: scale(1.1);
}

.hero-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, var(--red), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 18px;
  color: var(--white);
  line-height: 1.6;
  margin: 0 0 40px 0;
}

.hero-content .hero-subtitle {
  width: fit-content;
  max-width: 100%;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(253, 251, 251, 0.16);
  transition: all 0.3s ease;
}

@media (max-width: 560px) {
  .hero-content .hero-subtitle {
    display: flex;
    width: 100%;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.35;
    border-radius: 14px;
    text-align: center;
    white-space: normal;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.service-card-premium {
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(220, 38, 38, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-card-premium.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  border: 2px solid rgba(220, 38, 38, 0.15);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

.service-card-premium:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(17, 24, 39, 0.15);
  border-color: var(--red);
}

.service-card-premium.featured:hover {
  box-shadow: 0 30px 60px rgba(17, 24, 39, 0.2);
}

.service-header-premium {
  position: relative;
  padding: 32px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.02), rgba(220, 38, 38, 0.01));
  border-bottom: 1px solid rgba(220, 38, 38, 0.08);
}

.service-card-premium.featured .service-header-premium {
  border-bottom: none;
  border-right: 1px solid rgba(220, 38, 38, 0.08);
}

.service-visual-premium {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

.service-card-premium:hover .service-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

.service-icon-premium {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.02));
  border: 2px solid rgba(220, 38, 38, 0.15);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.service-icon-premium svg {
  color: var(--red);
  transition: all 0.4s ease;
}

.service-card-premium:hover .service-icon-premium {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.05);
}

.service-card-premium:hover .service-icon-premium svg {
  color: white;
  transform: scale(1.1);
}

.service-badge-premium {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
  z-index: 3;
}

.service-info-premium {
  padding: 32px;
}

.service-card-premium.featured .service-info-premium {
  padding: 40px;
}

.service-category {
  font-size: 12px;
  font-weight: 800;
  color: var(--red);
  background: rgba(220, 38, 38, 0.08);
  padding: 6px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: inline-block;
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.service-info-premium h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 16px 0;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.service-card-premium.featured .service-info-premium h3 {
  font-size: 28px;
}

.service-card-premium:hover .service-info-premium h3 {
  color: var(--red);
}

.service-info-premium p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.benefit-item svg {
  color: var(--red);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-card-premium:hover .benefit-item svg {
  transform: scale(1.1);
}

.service-cta {
  margin-top: 8px;
}

.button-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.button-premium.primary {
  background: linear-gradient(135deg, var(--red), #f97316);
  color: white;
  box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
}

.button-premium.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.4);
}

.button-premium.secondary {
  background: white;
  color: var(--red);
  border: 2px solid var(--red);
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.1);
}

.button-premium.secondary:hover {
  background: var(--red);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.button-premium svg {
  transition: all 0.3s ease;
}

.button-premium:hover svg {
  transform: translateX(2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-hero {
    padding: 40px 20px;
  }
  
  .hero-content h3 {
    font-size: 24px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .services-grid-premium {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .service-card-premium.featured {
    grid-template-columns: 1fr;
  }
  
  .service-card-premium.featured .service-header-premium {
    border-right: none;
    border-bottom: 1px solid rgba(220, 38, 38, 0.08);
  }
  
  .service-info-premium {
    padding: 24px;
  }
  
  .service-card-premium.featured .service-info-premium {
    padding: 24px;
  }
}

/* ========================================= */
/* MODERN DESIGN - SERVICES SHOWCASE */
/* ========================================= */
.services-showcase {
  margin-top: 48px;
}

.services-intro {
  margin-bottom: 48px;
}

.intro-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.04), rgba(220, 38, 38, 0.01));
  border: 2px solid rgba(220, 38, 38, 0.1);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.08);
  border-color: var(--red);
}

.intro-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--red), #f97316);
  color: white;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.intro-icon svg {
  transition: all 0.4s ease;
}

.intro-card:hover .intro-icon {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.3);
}

.intro-card:hover .intro-icon svg {
  transform: scale(1.1);
}

.intro-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px 0;
}

.intro-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.services-modern {
  display: grid;
  gap: 32px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #f97316);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.12);
  border-color: var(--red);
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-visual {
  position: relative;
  flex-shrink: 0;
}

.service-number {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), #f97316);
  color: white;
  font-size: 18px;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
  z-index: 2;
}

.service-icon-large {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.02));
  border: 2px solid rgba(220, 38, 38, 0.15);
  transition: all 0.4s ease;
}

.service-icon-large svg {
  color: var(--red);
  transition: all 0.4s ease;
}

.service-item:hover .service-icon-large {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.05);
}

.service-item:hover .service-icon-large svg {
  color: white;
  transform: scale(1.1);
}

.service-content {
  flex: 1;
}

.service-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  background: rgba(220, 38, 38, 0.08);
  padding: 4px 8px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.service-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px 0;
  transition: color 0.3s ease;
}

.service-item:hover .service-content h3 {
  color: var(--red);
}

.service-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.service-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.feature-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  background: rgba(220, 38, 38, 0.08);
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(220, 38, 38, 0.15);
  transition: all 0.3s ease;
}

.service-item:hover .feature-tag {
  background: var(--red);
  color: white;
  transform: scale(1.05);
}

.service-action {
  margin-top: 8px;
}

/* ========================================= */
/* MANUFACTURING CATEGORIES */
/* ========================================= */
.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.04), rgba(220, 38, 38, 0.01));
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.08);
}

.section-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--red);
  color: white;
  flex-shrink: 0;
}

.section-text h3 {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}

.section-text p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.category-item.enhanced {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.category-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.category-progress {
  width: 100%;
  height: 4px;
  background: var(--soft);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #f97316);
  border-radius: 2px;
  transition: width 1s ease-out;
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

.category-item.enhanced:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.12);
}

.category-item.enhanced:hover .category-icon {
  background: linear-gradient(135deg, var(--red), #f97316);
  transform: scale(1.1);
}

.category-item.enhanced:hover .category-icon svg {
  color: white;
}

.category-item.enhanced:hover .progress-bar {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
}
.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  text-align: center;
}

.category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.06), rgba(220, 38, 38, 0.01));
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
}

.category-icon svg {
  color: var(--red);
  transition: all 0.3s ease;
}

.category-item:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.category-item:hover .category-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.02));
  border-color: var(--red);
  transform: scale(1.05);
}

.category-item:hover .category-icon svg {
  color: var(--red-dark);
  transform: scale(1.1);
}

/* ========================================= */
/* CERTIFICATION SECTION STYLES */
/* ========================================= */
.section-icon-large {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red), #f97316);
  color: white;
  flex-shrink: 0;
}

.section-text-large {
  flex: 1;
}
.section-text-large h2 {
  margin: 0 0 16px 0;
  font-size: 48px;
  font-weight: 800;
  color: var(--ink);
}

.certification-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: rgba(220, 38, 38, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, 0.08);
  min-width: 120px;
  transition: all 0.3s ease;
}

.stat-item strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

.stat-item:hover {
  background: rgba(220, 38, 38, 0.08);
  border-color: var(--red);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .certification-stats {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-top: 28px;
  }

  .certification-stats .stat-item {
    width: 100%;
    min-width: 0;
    padding: 24px 18px;
    border-radius: 14px;
  }

  .certification-stats .stat-item strong {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 8px;
  }

  .certification-stats .stat-item span {
    font-size: 16px;
    line-height: 1.35;
  }
}

.advantage-highlights {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 2px solid var(--line);
  min-width: 140px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #f97316);
  transition: height 0.3s ease;
}

.highlight-item:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.15);
}

.highlight-item:hover::before {
  height: 8px;
}

.highlight-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 8px;
  line-height: 1;
}

.highlight-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}

/* ========================================= */
/* FAQ SECTION STYLES */
/* ========================================= */
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--red);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  background: white;
  border: none;
  text-align: left;
  position: relative;
  padding-right: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item summary svg {
  color: var(--red);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item[open] summary svg {
  color: var(--red-dark);
  transform: scale(1.1);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--red);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  padding: 0 24px 20px 24px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* ========================================= */
/* LOADING ANIMATIONS & MICRO-INTERACTIONS */
/* ========================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-scale {
  animation: fadeInScale 0.5s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.5s ease-out;
}

.service-card,
.cert-card,
.advantage-card,
.product-type,
.category-item {
  animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.cert-card:nth-child(1) { animation-delay: 0.1s; }
.cert-card:nth-child(2) { animation-delay: 0.2s; }
.cert-card:nth-child(3) { animation-delay: 0.3s; }
.cert-card:nth-child(4) { animation-delay: 0.4s; }
.cert-card:nth-child(5) { animation-delay: 0.5s; }
.cert-card:nth-child(6) { animation-delay: 0.6s; }

.advantage-card:nth-child(1) { animation-delay: 0.1s; }
.advantage-card:nth-child(2) { animation-delay: 0.2s; }
.advantage-card:nth-child(3) { animation-delay: 0.3s; }
.advantage-card:nth-child(4) { animation-delay: 0.4s; }
.advantage-card:nth-child(5) { animation-delay: 0.5s; }
.advantage-card:nth-child(6) { animation-delay: 0.6s; }

.hero-trust-badges .trust-badge {
  animation: fadeInScale 0.4s ease-out backwards;
}

.hero-trust-badges .trust-badge:nth-child(1) { animation-delay: 0.1s; }
.hero-trust-badges .trust-badge:nth-child(2) { animation-delay: 0.2s; }
.hero-trust-badges .trust-badge:nth-child(3) { animation-delay: 0.3s; }
.hero-trust-badges .trust-badge:nth-child(4) { animation-delay: 0.4s; }
.hero-trust-badges .trust-badge:nth-child(5) { animation-delay: 0.5s; }

/* Enhanced hover effects */
.button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.button:hover::before {
  width: 300px;
  height: 300px;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Loading skeleton animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Terms of Service Styles */
.terms-page {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
}

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

.terms-page header {
  background-color: #2c3e50;
  color: white;
  padding: 1rem 0;
  text-align: center;
}

.terms-page header h1 {
  margin: 0;
  font-size: 2rem;
}

.terms-page main {
  padding: 2rem 0;
  min-height: calc(100vh - 200px);
}

.terms-page h2 {
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
}

.terms-page h3 {
  color: #34495e;
  margin-top: 1.5rem;
}

.terms-page p {
  margin-bottom: 1rem;
}

.terms-page footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.terms-page .contact-info {
  margin-top: 1rem;
}

.terms-page .contact-info p {
  margin: 0.5rem 0;
}

.terms-page ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.terms-page li {
  margin-bottom: 0.5rem;
}

/* Privacy Policy Styles */
.privacy-page {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.privacy-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.privacy-page header {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: white;
  padding: 2rem 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
}

.privacy-page header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.privacy-page main {
  padding: 3rem 0;
  min-height: calc(100vh - 200px);
}

.privacy-page h2 {
  color: var(--ink-soft);
  border-left: 4px solid var(--red);
  padding: 1rem 0 1rem 1.5rem;
  margin: 3rem 0 2rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.privacy-page h3 {
  color: var(--ink-soft);
  margin: 2rem 0 1rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.privacy-page p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #4b5563;
}

.privacy-page footer {
  background: var(--ink);
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
}

.privacy-page .contact-info {
  background: var(--soft);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-top: 1.5rem;
}

.privacy-page .contact-info p {
  margin: 0.75rem 0;
  font-weight: 600;
}

.privacy-page .contact-info strong {
  color: var(--red);
}

.privacy-page ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.privacy-page li {
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.privacy-page li::before {
  content: "•";
  position: absolute;
  left: 1rem;
  color: var(--red);
  font-weight: 700;
  font-size: 1.2rem;
}

.privacy-page li:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(4px);
}

/* Enhanced Section Styling */
.privacy-page .section-heading {
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  border: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-page .container {
    padding: 0 16px;
  }

  .privacy-page header h1 {
    font-size: 2rem;
  }

  .privacy-page h2 {
    font-size: 1.3rem;
    padding: 0.75rem 0 0.75rem 1rem;
  }

  .privacy-page h3 {
    font-size: 1.1rem;
  }

  .privacy-page .section-heading {
    padding: 1.5rem;
  }

  .privacy-page li {
    padding: 0.6rem 0.75rem 0.6rem 2rem;
  }

  .privacy-page li::before {
    left: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

main {
  padding: 0 0;
  min-height: calc(100vh - 200px);
  
}

h2 {
  color: #2c3e50;
  border-bottom: 2px solid #b91c1c;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1rem;
}
