/* ============================================
   CO.RA. Germany — Clean B2B Industrial Design
   Inspired by Festo, SMC, Bürkert
   ============================================ */

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

html, body { overflow-x: hidden; max-width: 100%; }
img, svg { max-width: 100%; }

:root {
  /* === CO.RA. Corporate Identity ===
     Logo:   Pantone Red 32C  + Pantone Black C
     Mondrian Mark: Pantone Red 32C + Pantone Blue 072C
     Type:   Helvetica family
  */
  --red: #E2231A;          /* Pantone Red 32C - Primary brand */
  --red-dark: #B81B14;     /* hover / pressed */
  --red-light: #fdebe9;    /* tint backgrounds */
  --blue: #10069F;         /* Pantone Blue 072C - Mondrian accent */
  --blue-dark: #0a046b;
  --blue-light: #e7e5f7;
  --ink: #0A0A0A;          /* Pantone Black C - Headlines */
  --ink-soft: #2D2D33;
  --navy: #0A0A0A;         /* legacy alias kept for footer/CTA blocks */
  --navy-light: #2D2D33;
  --steel: #5a5a62;
  --steel-light: #8a8a92;
  --border: #e2e2e6;
  --bg-light: #f6f6f8;
  --bg-white: #ffffff;
  --text: #0A0A0A;
  --text-secondary: #46464d;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red-dark); }

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo span {
  color: var(--red);
  font-weight: 400;
}

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

.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--steel);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--bg-light);
}

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  color: #fff !important;
}

.nav-meeting {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: transparent !important;
  color: var(--red) !important;
  padding: 7px 14px !important;
  border-radius: 6px !important;
  border: 1.5px solid var(--red);
  font-weight: 700 !important;
  margin-left: 4px;
}

.nav-meeting::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") center/contain no-repeat;
}

.nav-meeting:hover {
  background: var(--red-light) !important;
}

/* ---- Dropdown ---- */
.nav-links .has-dropdown {
  position: relative;
}

.nav-links .has-dropdown > a .caret {
  font-size: 0.65em;
  margin-left: 4px;
  opacity: 0.6;
  vertical-align: middle;
}

.nav-links .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  padding: 6px;
  list-style: none;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s, transform 0.18s, visibility 0s linear 0.18s;
}

.nav-links .has-dropdown:hover > .dropdown,
.nav-links .has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s, transform 0.18s;
}

.nav-links .dropdown li { margin: 0; }

.nav-links .dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 0.88rem;
  color: var(--text);
}

.nav-links .dropdown a:hover,
.nav-links .dropdown a.active {
  background: var(--bg-light);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================
   HERO — Clean, no gradient
   ============================================ */
.hero {
  background: var(--bg-white);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-images img {
  border-radius: 8px;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 1px solid var(--border);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--bg-light);
  color: var(--navy);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-download {
  background: var(--bg-light);
  color: var(--navy);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  padding: 7px 14px;
}

.btn-download:hover {
  background: var(--red-light);
  border-color: var(--red);
  color: var(--red);
}

.btn-download svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 72px 0;
}

.bg-light {
  background: var(--bg-light);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  padding: 20px 0;
}

.trust-item h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--steel);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
}

/* ============================================
   CATEGORY CARDS (homepage)
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-color: #c0cee0;
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 16px;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
}

.card-link:hover { color: var(--red-dark); }

.card-link svg {
  stroke: currentColor;
  transition: transform 0.2s;
}

.card-link:hover svg { transform: translateX(3px); }

/* ============================================
   USP GRID
   ============================================ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.usp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.usp-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--red-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
}

.usp-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.usp-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   PRODUCT CARDS (category pages)
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.product-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.product-card-img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #f8f9fb;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.product-card-body {
  padding: 24px;
}

.product-tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}

.product-specs {
  list-style: none;
  margin-bottom: 18px;
}

.product-specs li {
  font-size: 0.82rem;
  color: var(--steel);
  padding: 3px 0 3px 18px;
  position: relative;
  line-height: 1.5;
}

.product-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.product-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================
   PAGE HERO (subpages) — visually matches index hero
   ============================================ */
.page-hero {
  background: var(--bg-white);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 64px;
  height: 3px;
  background: var(--red);
}

.breadcrumb {
  font-size: 0.78rem;
  color: var(--steel);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.breadcrumb a {
  color: var(--steel);
}

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

.breadcrumb strong {
  color: var(--ink);
}

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 760px;
}

.page-hero p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
}

/* ============================================
   SERVICE SECTION
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border-color: var(--red);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   INNOVATION / PATENTS
   ============================================ */
.innovation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.innovation-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  transition: box-shadow 0.25s;
}

.innovation-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.innovation-tag {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.innovation-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.innovation-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.innovation-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.innovation-note a {
  font-weight: 600;
  color: var(--red);
}

/* ============================================
   TUSCANY STORY
   ============================================ */
.tuscany-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.tuscany-content h2 {
  margin-bottom: 16px;
}

.tuscany-content p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.7;
}

.tuscany-cities {
  list-style: none;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.tuscany-cities li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--ink);
}

.city-distance {
  display: inline-block;
  min-width: 56px;
  font-weight: 700;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

.tuscany-map svg {
  width: 100%;
  height: auto;
  max-width: 420px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-white);
}

/* ============================================
   CERTIFICATES & MEMBERSHIPS
   ============================================ */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.credential-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  margin: 0 auto 16px;
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  flex-direction: column;
  font-family: var(--font);
}

.credential-iso {
  background: linear-gradient(135deg, var(--ink) 0%, #333 100%);
}
.credential-iso .credential-badge-label {
  font-size: 0.78rem;
  letter-spacing: 2px;
}
.credential-iso .credential-badge-number {
  font-size: 1.1rem;
  margin-top: 2px;
}

.credential-eco {
  background: linear-gradient(135deg, #2c7a4d 0%, #1f5736 100%);
  flex-direction: column;
}
.credential-eco .credential-badge-eco-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.credential-eco .credential-badge-label {
  font-size: 0.6rem;
  letter-spacing: 1px;
  margin-top: 2px;
}

.credential-afi {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  font-size: 1.5rem;
}

.credential-ispe {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  font-size: 1.25rem;
}

.credential-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.credential-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.credentials-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--steel);
  font-style: italic;
}

/* ============================================
   PARTNER SECTION
   ============================================ */
.partner-section {
  padding: 72px 0;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.partner-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.partner-info p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.partner-details {
  list-style: none;
}

.partner-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
}

.partner-details li svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.partner-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
}

.partner-box-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.partner-box-sub {
  color: var(--steel);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.partner-box-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--steel-light);
  font-size: 0.82rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--navy);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

.cta-section .btn:hover {
  background: var(--red-light);
  color: var(--red);
}

.cta-section .btn svg {
  stroke: currentColor;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-info-item span,
.contact-info-item a {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: 18px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-white);
  color: var(--text);
  font-family: var(--font);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(226,35,26,0.12);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 0;
}

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

.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: 12px;
}

.mondrian-mark {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.footer-brand .nav-logo span { color: rgba(255,255,255,0.5); }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

.footer h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
}

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

.footer ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer ul a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
}

.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ============================================
   DETAIL PAGES (Innovation / Service)
   ============================================ */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.detail-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}

.detail-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.detail-card-head {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}

.detail-card-head .innovation-tag {
  margin-bottom: 12px;
}

.detail-card-head h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}

.detail-short {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 !important;
}

.detail-card-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.detail-card-body p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

.detail-apps {
  font-size: 0.85rem;
  color: var(--steel);
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}

.detail-apps strong {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.7rem;
  margin-right: 8px;
}

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

/* ============================================
   IMPRESSUM
   ============================================ */
.legal-content {
  max-width: 780px;
  padding: 48px 0;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}

.legal-content strong {
  color: var(--text);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
  display: inline-flex;
  align-items: stretch;
  margin-left: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-white);
}

.lang-switcher a {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--steel);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid var(--border);
  background: var(--bg-white);
}

.lang-switcher a:last-child { border-right: none; }

.lang-switcher a:hover {
  background: var(--bg-light);
  color: var(--navy);
}

.lang-switcher a.active {
  background: var(--ink);
  color: #fff;
}

/* ============================================
   FLOATING ACTION BUTTON (Calendly)
   ============================================ */
.cora-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 14px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(226, 35, 26, 0.28);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  font-family: var(--font);
  line-height: 1;
}

.cora-fab:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(226, 35, 26, 0.36);
  color: #fff;
}

.cora-fab svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.cora-fab-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: var(--red);
  opacity: 0.35;
  transform: translate(-50%, -50%);
  animation: cora-fab-pulse 2.4s ease-out infinite;
  z-index: -1;
}

@keyframes cora-fab-pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

@media (max-width: 480px) {
  .cora-fab {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 0.85rem;
  }
  .cora-fab-label { display: none; }
  .cora-fab svg { width: 22px; height: 22px; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .innovation-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .tuscany-grid { grid-template-columns: 1fr; gap: 32px; }
  .tuscany-map svg { max-width: 100%; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-images { grid-template-columns: repeat(4, 1fr); }
  .hero-images img { height: 120px; }
  .partner-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { margin-left: 0 !important; margin-top: 8px; text-align: center; }

  /* Dropdown stays expanded in mobile drawer */
  .nav-links .has-dropdown { width: 100%; }
  .nav-links .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 4px 0 8px 16px;
    min-width: auto;
  }
  .nav-links .has-dropdown > a .caret { display: none; }

  /* Language switcher into mobile drawer */
  .lang-switcher {
    margin-left: 0 !important;
    margin-top: 8px;
    align-self: flex-start;
  }

  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-images { grid-template-columns: repeat(2, 1fr); }
  .hero-images img { height: 100px; }

  section { padding: 48px 0; }
  .section-title { font-size: 1.5rem; }

  .trust-bar { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .innovation-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .page-hero h1 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.4rem; line-height: 1.2; }
  .hero h1 em { word-break: normal; }
  .hero p { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-btns .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-images { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-images img { height: 90px; }
  .hero-badge { font-size: 0.7rem; padding: 4px 10px; }
  .trust-bar { grid-template-columns: 1fr 1fr; gap: 16px; }
  .product-card-img { height: 200px; }
  .page-hero h1 { font-size: 1.4rem; word-break: break-word; }
  .partner-box { padding: 28px 20px; }
  .partner-box-title { font-size: 1.6rem; }
  .cta-section h2 { font-size: 1.3rem; }
}
