/* ============================================================
   6SIGMA tech — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --st-navy:   #0a1e3c;
  --st-blue:   #0077cc;
  --st-gold:   #e8a020;
  --st-white:  #f8f8f8;
  --st-dark:   #0d0d0d;
  --st-light:  #eef2f7;
  --st-red:    #c0392b;
  --nav-h:     72px;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-weight: 400; color: #1a1a1a; background: #fff; padding-top: var(--nav-h); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
section { scroll-margin-top: var(--nav-h); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   TOP NAVBAR
   ============================================================ */
body > nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--st-navy);
  display: flex; flex-direction: row; align-items: center;
  flex-wrap: nowrap; justify-content: space-between;
  padding: 0 1.5rem; gap: 1rem;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
  border-bottom: 3px solid var(--st-gold);
}
.nav-brand { display: flex; align-items: center; flex-shrink: 0; }
.nav-brand img { height: 44px; width: auto; display: block; }

.nav-links {
  display: flex; flex-direction: row; list-style: none;
  align-items: center; flex-wrap: nowrap; gap: 0;
  flex: 1 1 auto; margin: 0; padding: 0;
  height: var(--nav-h); overflow: visible;
}
.nav-links > li { display: block; flex-shrink: 0; height: 100%; position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; height: 100%;
  padding: 0 11px; font-family: var(--font-head); font-size: 15px;
  letter-spacing: 1.2px; color: #fff; white-space: nowrap; transition: color .2s;
}
.nav-links > li > a:hover { color: var(--st-gold); }

.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--st-navy); border: 1px solid rgba(232,160,32,.3);
  border-radius: 8px; min-width: 230px; z-index: 3000;
  box-shadow: 0 8px 24px rgba(0,0,0,.4); overflow: hidden;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li { display: block; }
.dropdown li a { display: block; padding: 10px 16px; font-size: 14px; letter-spacing: 0.5px; color: #fff; white-space: nowrap; border-bottom: 1px solid rgba(255,255,255,.06); line-height: 1.4; }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: var(--st-gold); background: rgba(255,255,255,.05); }

.nav-right { display: flex; flex-direction: row; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-search { display: flex; align-items: center; position: relative; }
.nav-search input { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); border-radius: 20px; padding: 6px 14px; color: #fff; font-family: var(--font-body); font-size: 13px; width: 110px; outline: none; transition: width .3s, border-color .2s; }
.nav-search input::placeholder { color: rgba(255,255,255,.5); }
.nav-search input:focus { background: rgba(255,255,255,.18); border-color: var(--st-gold); width: 160px; }
.search-results { position: absolute; top: calc(100% + 8px); right: 0; background: var(--st-navy); border: 1px solid rgba(232,160,32,.3); border-radius: 8px; min-width: 240px; z-index: 4000; box-shadow: 0 8px 24px rgba(0,0,0,.4); display: none; }
.search-results.open { display: block; }
.search-result-item { padding: 10px 14px; color: #fff; font-size: 13px; cursor: pointer; border-bottom: 1px solid rgba(255,255,255,.06); transition: background .15s; }
.search-result-item:hover { background: rgba(232,160,32,.15); color: var(--st-gold); }
.search-result-item:last-child { border-bottom: none; }

.lang-flags { display: flex; flex-direction: row; align-items: center; gap: 5px; flex-shrink: 0; }
.lang-flags a { display: flex; align-items: center; border-radius: 3px; overflow: hidden; opacity: .75; transition: opacity .2s, transform .2s; }
.lang-flags a:hover { opacity: 1; transform: scale(1.1); }
.lang-flags a.active { opacity: 1; outline: 2px solid var(--st-gold); outline-offset: 2px; }
.lang-flags img { height: 26px; width: auto; display: block; }

.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; padding: 4px 6px; flex-shrink: 0; line-height: 1; }

/* ── TABLET ── */
@media (max-width: 960px) {
  .nav-links { display: none; flex: 0; }
  .hamburger { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--st-navy); padding: 1rem; gap: 2px; border-bottom: 2px solid var(--st-gold); z-index: 2000; height: auto; }
  .nav-links.open > li { height: auto; }
  .nav-links.open > li > a { height: auto; padding: 10px 12px; }
  .nav-links.open .dropdown { display: block; position: static; box-shadow: none; border: none; background: rgba(255,255,255,.05); border-radius: 0; margin-left: 12px; }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  .nav-right { display: none; }
  .hamburger { display: block; }
  .nav-brand img { height: 38px; }

  /* Search in menu */
  .mobile-search { display: flex; flex-direction: column; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .mobile-search input { width: 100%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 20px; padding: 8px 16px; color: #fff; font-family: var(--font-body); font-size: 14px; outline: none; }
  .mobile-search input::placeholder { color: rgba(255,255,255,.5); }
  .mobile-search input:focus { border-color: var(--st-gold); background: rgba(255,255,255,.18); }
  .mobile-search-results .search-result-item { background: rgba(255,255,255,.05); border-radius: 4px; margin-bottom: 4px; }

  /* Flags — 2×2 grid */
  .mobile-flags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 4px;
  }
  .mobile-flags a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    opacity: .85;
    transition: opacity .2s, background .2s;
  }
  .mobile-flags a:hover { opacity: 1; background: rgba(255,255,255,.15); }
  .mobile-flags a.active { opacity: 1; background: rgba(232,160,32,.15); outline: 2px solid var(--st-gold); outline-offset: 2px; border-radius: 8px; }
  .mobile-flags img { height: 38px; width: auto; display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--st-navy); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.45); z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,30,60,.8) 0%, rgba(10,30,60,.4) 60%, transparent 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 6rem 2rem 8rem; }
.hero-super { display: inline-block; font-family: var(--font-head); font-size: 13px; letter-spacing: 4px; color: var(--st-gold); margin-bottom: 1.2rem; text-transform: uppercase; }
.hero h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 7vw, 5.5rem); color: #fff; line-height: 1.05; letter-spacing: 2px; margin-bottom: 1.4rem; }
.hero-sub { font-size: clamp(.95rem, 2vw, 1.25rem); color: rgba(255,255,255,.85); font-weight: 300; max-width: 600px; line-height: 1.6; margin-bottom: 2.4rem; }
.scroll-arrow { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 4px; color: rgba(255,255,255,.6); font-size: 12px; letter-spacing: 2px; animation: bounce 2s infinite; cursor: pointer; }
.scroll-arrow span { font-size: 1.6rem; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.hero-sm { min-height: 45vh; }
.hero-sm .hero-content { padding: 4rem 2rem 4rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-block; padding: 12px 28px; font-family: var(--font-head); font-size: 17px; letter-spacing: 2px; border-radius: 4px; cursor: pointer; transition: all .25s ease; text-decoration: none; border: 2px solid transparent; }
.btn-gold { background: var(--st-gold); color: var(--st-dark); border-color: var(--st-gold); }
.btn-gold:hover { background: transparent; color: var(--st-gold); }
.btn-outline-gold { background: transparent; color: var(--st-gold); border-color: var(--st-gold); }
.btn-outline-gold:hover { background: var(--st-gold); color: var(--st-dark); }
.btn-outline-navy { background: transparent; color: var(--st-navy); border-color: var(--st-navy); }
.btn-outline-navy:hover { background: var(--st-navy); color: #fff; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section-light { background: var(--st-light); }
.section-white { background: #fff; }
.section-navy { background: var(--st-navy); color: #fff; }
.section-dark { background: var(--st-dark); color: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-eyebrow { display: inline-block; font-family: var(--font-head); font-size: 12px; letter-spacing: 4px; color: var(--st-blue); text-transform: uppercase; margin-bottom: 0.8rem; }
.section-heading { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 3rem); color: var(--st-navy); letter-spacing: 1.5px; line-height: 1.15; margin-bottom: 1rem; }
.section-heading em { font-style: italic; color: var(--st-blue); }
.section-navy .section-heading, .section-dark .section-heading { color: #fff; }
.section-sub { font-size: 1.05rem; color: #444; line-height: 1.75; max-width: 700px; margin-bottom: 2.4rem; }
.section-navy .section-sub, .section-dark .section-sub { color: rgba(255,255,255,.75); }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   VALUE PROPS
   ============================================================ */
.icon-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 3rem; }
.icon-cards::before { content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, transparent, var(--st-blue) 20%, var(--st-gold) 80%, transparent); z-index: 0; }
.icon-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.icon-circle { width: 64px; height: 64px; background: var(--st-navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; border: 3px solid var(--st-gold); font-family: var(--font-head); font-size: 1.2rem; color: var(--st-gold); flex-shrink: 0; }
.icon-card h4 { font-family: var(--font-head); font-size: 1rem; letter-spacing: 1.5px; color: var(--st-navy); margin-bottom: 0.6rem; text-transform: uppercase; }
.icon-card p { font-size: 0.88rem; color: #555; line-height: 1.6; }
@media (max-width: 768px) { .icon-cards { grid-template-columns: repeat(2, 1fr); gap: 2rem; } .icon-cards::before { display: none; } }
@media (max-width: 480px) { .icon-cards { grid-template-columns: 1fr; } }

/* ============================================================
   SPLIT SECTION
   ============================================================ */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-image img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.15); }
.checklist { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: #333; line-height: 1.5; }
.checklist li::before { content: '✓'; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--st-blue); color: #fff; border-radius: 50%; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
@media (max-width: 768px) { .split-grid { grid-template-columns: 1fr; gap: 2rem; } .split-image { order: -1; } .split-image img { aspect-ratio: 16/9; } }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.8rem; margin-top: 2.5rem; }
.product-card { background: #fff; border-radius: 10px; box-shadow: 0 4px 24px rgba(0,0,0,.08); overflow: hidden; border-top: 4px solid var(--st-gold); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.14); }
.product-card-img { height: 180px; overflow: hidden; background: var(--st-light); display: flex; align-items: center; justify-content: center; padding: 1rem; }
.product-card-img img { width: 100%; height: 100%; object-fit: contain; }
.product-card-body { padding: 1.2rem 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 1px; color: var(--st-navy); margin-bottom: 0.5rem; text-transform: uppercase; }
.product-card p { font-size: 0.88rem; color: #555; line-height: 1.55; flex: 1; margin-bottom: 1rem; }

/* ============================================================
   PARTNER STRIP
   ============================================================ */
.partner-strip { background: var(--st-navy); padding: 2.5rem 0; overflow: hidden; }
.partner-logos { display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.partner-logos img { height: 56px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .55; transition: opacity .2s; }
.partner-logos img:hover { opacity: 1; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; margin-top: 2.5rem; }
.service-card { background: #fff; border-left: 4px solid var(--st-blue); border-radius: 0 8px 8px 0; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,.07); transition: border-color .2s, transform .2s; }
.service-card:hover { border-color: var(--st-gold); transform: translateX(4px); }
.service-card .svc-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.service-card h3 { font-family: var(--font-head); font-size: 1.15rem; letter-spacing: 1px; color: var(--st-navy); margin-bottom: 0.6rem; text-transform: uppercase; }
.service-card p { font-size: 0.9rem; color: #555; line-height: 1.65; }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.feature-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0.9rem; margin-top: 1.5rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: #333; line-height: 1.5; }
.feature-list li::before { content: '▸'; color: var(--st-gold); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.img-tabs { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.img-tab-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.img-tab-btn { padding: 6px 14px; font-family: var(--font-head); font-size: 13px; letter-spacing: 1px; background: var(--st-light); color: var(--st-navy); border: 1px solid rgba(10,30,60,.15); border-radius: 4px; cursor: pointer; transition: all .2s; }
.img-tab-btn.active, .img-tab-btn:hover { background: var(--st-navy); color: var(--st-gold); border-color: var(--st-navy); }
.img-tab-panels { position: relative; }
.img-tab-panel { display: none; }
.img-tab-panel.active { display: block; }
.img-tab-panel img { width: 100%; max-height: 480px; object-fit: contain; background: var(--st-light); border-radius: 8px; padding: 1rem; }
.img-grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.img-grid-6 img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.img-grid-6 img:hover { transform: scale(1.03); box-shadow: 0 8px 28px rgba(0,0,0,.18); }
@media (max-width: 600px) { .img-grid-6 { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: var(--st-navy); padding: 60px 0; text-align: center; }
.cta-section h3 { font-family: var(--font-head); font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: #fff; letter-spacing: 2px; margin-bottom: 1rem; }
.cta-section p { font-size: 1rem; color: rgba(255,255,255,.75); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info-logo { margin-bottom: 1.5rem; }
.contact-info-logo img { height: 56px; width: auto; }
.contact-tagline { font-size: 1rem; color: #555; font-weight: 300; margin-bottom: 2rem; line-height: 1.6; }
.contact-detail-card { display: flex; align-items: flex-start; gap: 12px; background: var(--st-light); border-left: 3px solid var(--st-blue); border-radius: 0 6px 6px 0; padding: 1rem 1.2rem; margin-bottom: 1rem; font-size: 0.92rem; color: #333; line-height: 1.6; }
.contact-detail-card .icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-vat { font-size: 0.82rem; color: #888; margin-top: 1rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form h3 { font-family: var(--font-head); font-size: 1.6rem; letter-spacing: 1.5px; color: var(--st-navy); margin-bottom: 0.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; color: #333; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { padding: 10px 14px; border: 1.5px solid #ddd; border-radius: 6px; font-family: var(--font-body); font-size: 0.95rem; color: #1a1a1a; background: #fff; transition: border-color .2s, box-shadow .2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--st-blue); box-shadow: 0 0 0 3px rgba(0,119,204,.1); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-msg { display: none; padding: 12px 16px; border-radius: 6px; font-size: 0.9rem; font-weight: 500; }
.form-msg.success { background: #d4edda; color: #155724; display: block; }
.form-msg.error   { background: #f8d7da; color: #721c24; display: block; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-content { max-width: 820px; margin: 0 auto; padding: 60px 2rem; }
.privacy-content h1 { font-family: var(--font-head); font-size: 2.8rem; color: var(--st-navy); letter-spacing: 2px; margin-bottom: 0.4rem; }
.privacy-date { font-size: 0.88rem; color: #888; margin-bottom: 2.5rem; }
.privacy-content h2 { font-family: var(--font-head); font-size: 1.4rem; letter-spacing: 1px; color: var(--st-navy); margin: 2.2rem 0 0.8rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--st-gold); }
.privacy-content h3 { font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 0.8px; color: var(--st-blue); margin: 1.5rem 0 0.6rem; }
.privacy-content p { font-size: 0.95rem; color: #333; line-height: 1.8; margin-bottom: 1rem; }
.privacy-content ul { list-style: disc; padding-left: 1.6rem; margin-bottom: 1rem; }
.privacy-content ul li { font-size: 0.93rem; color: #333; line-height: 1.7; margin-bottom: 0.4rem; }
.privacy-content a { color: var(--st-blue); text-decoration: underline; }

/* ============================================================
   QUALITY PAGE
   ============================================================ */
.quality-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.quality-card { background: #fff; border-radius: 10px; padding: 2rem 2.2rem; box-shadow: 0 4px 20px rgba(0,0,0,.07); border-top: 4px solid var(--st-gold); transition: transform .2s, box-shadow .2s; }
.quality-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.12); }
.quality-card .q-num { font-family: var(--font-head); font-size: 2.5rem; color: rgba(10,30,60,.12); line-height: 1; margin-bottom: 0.6rem; }
.quality-card h3 { font-family: var(--font-head); font-size: 1.15rem; letter-spacing: 1px; color: var(--st-navy); margin-bottom: 0.7rem; text-transform: uppercase; }
.quality-card p { font-size: 0.9rem; color: #555; line-height: 1.65; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--st-navy); color: rgba(255,255,255,.8); padding: 3rem 0 1.5rem; border-top: 2px solid var(--st-gold); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 1.5rem; }
.footer-logo img { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-logo p { font-size: 0.88rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.footer-nav h4, .footer-contact h4 { font-family: var(--font-head); font-size: 1rem; letter-spacing: 2px; color: var(--st-gold); margin-bottom: 1rem; text-transform: uppercase; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; list-style: none; padding: 0; margin: 0; height: auto; }
.footer-nav ul li { display: block; height: auto; }
.footer-nav ul li a { display: block; height: auto; padding: 0; font-size: 0.88rem; color: rgba(255,255,255,.7); transition: color .2s; font-family: var(--font-body); letter-spacing: normal; white-space: normal; }
.footer-nav ul li a:hover { color: var(--st-gold); }
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,.7); line-height: 1.8; }
.footer-vat { font-size: 0.8rem; color: rgba(255,255,255,.4); margin-top: 0.6rem; }
.footer-copy { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,.4); }
.footer-copy a { color: rgba(255,255,255,.5); }
.footer-copy a:hover { color: var(--st-gold); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  body > nav, .scroll-arrow, .btn, .cta-section, .hamburger, .lang-flags, .nav-search { display: none !important; }
  body { padding-top: 0; font-size: 12pt; color: #000; }
  .hero { min-height: auto; page-break-after: always; }
  .split-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .product-grid, .services-grid, .quality-grid { grid-template-columns: 1fr 1fr; }
  footer { border-top: 1px solid #ccc; background: #fff; color: #000; }
}
