/* Aquaplastik — Premium Water-Themed CSS */
/* ================================================ */

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; color: #1E293B; background: #fff; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; }
[hidden] { display: none !important; }
address { font-style: normal; }
select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
}

/* ---- CSS Variables ---- */
:root {
  --primary: #0891B2;
  --primary-dark: #0E7490;
  --primary-light: #67E8F9;
  --dark: #0C4A6E;
  --sec: #164E63;
  --accent: #0891B2;
  --accent-dark: #0E7490;
  --bg-white: #FFFFFF;
  --bg-alt: #F0FDFA;
  --text: #1E293B;
  --text-light: #64748B;
}

/* ---- Container ---- */
.container { max-width: 73rem; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }

/* ---- Sections ---- */
.section-white {
  padding: 5rem 0;
  background-color: var(--bg-white);
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M60 0H0V60' fill='none' stroke='%230C4A6E' stroke-opacity='0.18' stroke-width='1'/%3E%3C/svg%3E");
}
.section-alt { padding: 5rem 0; background: var(--bg-alt); }
.section-cyan { padding: 5rem 0; background: var(--bg-alt); }
.section-dark { padding: 5rem 0; background: var(--dark); }
.section-sec { padding: 5rem 0; background: var(--sec); }

/* ---- Typography ---- */
.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.section-title.text-white { color: #fff; }
.section-title.text-center { text-align: center; }
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.text-body { color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; }
.text-body:last-of-type { margin-bottom: 0; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-white-70 { color: rgba(255,255,255,0.7); }

/* ---- Grid ---- */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.items-start { align-items: start; }
.items-center { align-items: center; }
@media (max-width: 767px) {
  .grid-2col { grid-template-columns: 1fr; }
  .order-1-md, .order-2-md { order: unset; }
}
@media (min-width: 768px) {
  .order-1-md { order: 1; }
  .order-2-md { order: 2; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(8, 145, 178, 0.3);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.625rem 1.5rem; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Images ---- */
.section-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 1rem;
}
.product-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.5s ease;
}
.product-section:hover .product-image { transform: scale(1.02); }
@media (max-width: 767px) {
  .section-image { height: 300px; }
  .product-image { height: 260px; }
}

/* ================================================ */
/* NAVIGATION                                        */
/* ================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(12, 74, 110, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-container {
  max-width: 73rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}
.nav-logo img {
  height: 50px;
  transition: transform 0.3s ease;
}
.nav-logo:hover img { transform: scale(1.05); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: #fff;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.nav-links a:hover {
  color: var(--primary-light);
  border-bottom-color: var(--primary-light);
}
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0; right: 0;
  background: var(--sec);
  z-index: 99;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu a {
  display: block;
  padding: 0.875rem 1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background 0.2s ease;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.05); }
.mobile-menu .mobile-cta {
  background: var(--accent);
  color: #fff;
  text-align: center;
  margin-top: 0.5rem;
  border-radius: 9999px;
}
.mobile-menu .mobile-cta:hover { background: var(--accent-dark); }

/* ================================================ */
/* HERO                                              */
/* ================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 80px;
  z-index: 4;
  display: block;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(1.05);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(8, 47, 73, 0.82);
}
/* Hero decorative SVGs */
.hero-deco-1, .hero-deco-2, .hero-deco-3 {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}
.hero-deco-1 {
  top: 15%;
  right: 8%;
  animation: floatSlow 8s ease-in-out infinite;
}
.hero-deco-2 {
  bottom: 20%;
  left: 5%;
  animation: floatSlow 6s ease-in-out infinite reverse;
}
.hero-deco-3 {
  top: 10%;
  left: 12%;
  animation: floatSlow 10s ease-in-out infinite;
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  max-width: 56rem;
  margin: 0 auto;
}
.hero-content h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 3.25rem;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 640px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .hero { min-height: 80vh; }
}

/* Hero entrance animation */
.hero-animate > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.7s ease forwards;
}
.hero-animate > *:nth-child(1) { animation-delay: 0.15s; }
.hero-animate > *:nth-child(2) { animation-delay: 0.3s; }
.hero-animate > *:nth-child(3) { animation-delay: 0.5s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* ---- Floating Bubbles ---- */
.bubble {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}
.bubble-1 {
  width: 120px; height: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(103,232,249,0.15), rgba(8,145,178,0.05));
  top: 15%; left: 8%;
  animation: floatBubble1 7s ease-in-out infinite;
}
.bubble-2 {
  width: 80px; height: 80px;
  background: radial-gradient(circle at 30% 30%, rgba(103,232,249,0.12), rgba(8,145,178,0.04));
  top: 60%; right: 10%;
  animation: floatBubble2 9s ease-in-out infinite;
}
.bubble-3 {
  width: 50px; height: 50px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), rgba(8,145,178,0.06));
  top: 30%; right: 25%;
  animation: floatBubble3 6s ease-in-out infinite;
}
.bubble-4 {
  width: 160px; height: 160px;
  background: radial-gradient(circle at 40% 40%, rgba(103,232,249,0.08), transparent);
  bottom: 10%; left: 15%;
  animation: floatBubble2 11s ease-in-out infinite;
}
.bubble-5 {
  width: 40px; height: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), transparent);
  top: 45%; left: 30%;
  animation: floatBubble1 8s ease-in-out infinite 1s;
}
.bubble-6 {
  width: 70px; height: 70px;
  background: radial-gradient(circle at 30% 30%, rgba(103,232,249,0.1), transparent);
  bottom: 25%; right: 5%;
  animation: floatBubble3 10s ease-in-out infinite 2s;
}
@keyframes floatBubble1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -25px) scale(1.05); }
  66% { transform: translate(-10px, -15px) scale(0.97); }
}
@keyframes floatBubble2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -30px) scale(1.08); }
}
@keyframes floatBubble3 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, -20px); }
  50% { transform: translate(-5px, -35px); }
  75% { transform: translate(8px, -15px); }
}

/* ================================================ */
/* USP BADGES — Glassmorphism                        */
/* ================================================ */
.usp-section {
  background: var(--bg-white);
  padding: 4rem 0 3.5rem;
  position: relative;
}
.usp-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}
.usp-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, var(--primary) 0 6px, transparent 6px 12px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s ease 0.1s;
}
.usp-reveal.visible::before {
  transform: scaleX(1);
  animation: uspFlow 1.2s linear infinite 1.1s;
}
@keyframes uspFlow {
  from { background-position: 0 0; }
  to { background-position: 12px 0; }
}
.usp-reveal .usp-badge {
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.usp-reveal.visible .usp-badge { opacity: 1; transform: translateY(0) scale(1); }
.usp-reveal.visible .usp-badge:nth-child(1) { transition-delay: 0.2s; }
.usp-reveal.visible .usp-badge:nth-child(2) { transition-delay: 0.45s; }
.usp-reveal.visible .usp-badge:nth-child(3) { transition-delay: 0.7s; }
.usp-reveal.visible .usp-badge:nth-child(4) { transition-delay: 0.95s; }
.usp-reveal.visible .usp-badge::before { animation: uspPulse 2.4s ease-in-out infinite 1.2s; }
.usp-reveal.visible .usp-badge:nth-child(2)::before { animation-delay: 1.5s; }
.usp-reveal.visible .usp-badge:nth-child(3)::before { animation-delay: 1.8s; }
.usp-reveal.visible .usp-badge:nth-child(4)::before { animation-delay: 2.1s; }
@keyframes uspPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(8,145,178,0.25), 0 0 0 0 rgba(8,145,178,0.45); }
  50% { box-shadow: 0 4px 14px rgba(8,145,178,0.25), 0 0 0 10px rgba(8,145,178,0); }
}
.usp-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  color: var(--dark);
  padding: 0 1rem;
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}
.usp-badge svg {
  width: 26px;
  height: 26px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.usp-badge::before {
  content: '';
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(8,145,178,0.25);
  border: 4px solid var(--bg-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.usp-badge > svg {
  position: absolute;
  top: 17px;
}
.usp-badge:hover::before {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(8,145,178,0.35);
}
.usp-badge span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--dark);
  margin-top: 0.75rem;
}
@media (max-width: 1023px) {
  .usp-grid { flex-wrap: wrap; gap: 2rem 0; }
  .usp-badge { flex: 0 0 50%; }
  .usp-grid::before { display: none; }
}
@media (max-width: 500px) {
  .usp-badge { flex: 0 0 100%; }
}

/* ================================================ */
/* WAVE DIVIDERS                                     */
/* ================================================ */
.wave-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  font-size: 0;
  margin-bottom: 0;
  margin-top: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 72px;
  margin: 0;
  padding: 0;
  border: 0;
}
.wave-white svg path { fill: var(--bg-white); }
.wave-cyan svg path { fill: var(--bg-alt); }
.wave-dark svg path { fill: var(--dark); }
.wave-sec svg path { fill: var(--sec); }
.wave-divider::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 6px;
  z-index: 1;
  pointer-events: none;
}
.wave-white::after { background-color: var(--bg-white); }
.wave-cyan::after { background-color: var(--bg-alt); }
.wave-dark::after { background-color: var(--dark); }
.wave-sec::after { background-color: var(--sec); }
.wave-from-dark { background-color: var(--dark); }
.wave-from-white { background-color: var(--bg-white); }
.wave-from-cyan { background-color: var(--bg-alt); }
.wave-divider.flip svg { transform: scaleX(-1); }

/* ================================================ */
/* FEATURES / VYHODY                                 */
/* ================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(8, 145, 178, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(8, 145, 178, 0.12);
  border-color: rgba(8, 145, 178, 0.2);
}
.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, rgba(8,145,178,0.12), rgba(103,232,249,0.08));
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  transform: scale(1.1);
}
.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ================================================ */
/* PRODUCTS                                          */
/* ================================================ */
.product-section { padding: 4rem 0; }
.product-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.product-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.product-text { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.product-text .text-body { margin-bottom: 1.5rem; }
.product-text .btn { margin-top: auto; }

/* ================================================ */
/* MONTAZ / PROCESS STEPS                            */
/* ================================================ */
.process-steps {
  position: relative;
  padding-left: 0;
  margin: 2rem 0 2rem;
}
.process-line {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 4px;
  height: calc(100% - 48px);
}
.process-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.process-step:last-child { margin-bottom: 0; }
.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
  transition: all 0.3s ease;
}
.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(8, 145, 178, 0.4);
}
.process-step h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}
.montaz-benefit {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* ================================================ */
/* GALLERY                                           */
/* ================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid figure {
  overflow: hidden;
  border-radius: 0.75rem;
  position: relative;
}
.gallery-grid figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,74,110,0.4), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-grid figure:hover::after { opacity: 1; }
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid figure:hover img { transform: scale(1.08); }
@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ================================================ */
/* CERTIFICATES                                      */
/* ================================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
.cert-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.cert-image:hover { transform: translateY(-4px); }
@media (max-width: 767px) {
  .cert-grid { grid-template-columns: 1fr; }
}

/* ================================================ */
/* CONTACT                                           */
/* ================================================ */
.contact-info { color: #fff; }
.contact-accent-line {
  width: 4rem;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  margin-bottom: 2rem;
  border-radius: 2px;
}
.contact-block { margin-bottom: 1.75rem; }
.contact-company {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.contact-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.contact-value {
  color: var(--primary-light);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s ease;
}
.contact-value:hover { color: #fff; }

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.form-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 0.625rem;
  font-size: 0.9rem;
  color: var(--text);
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.gdpr-check {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.gdpr-check input {
  margin-top: 2px;
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}
.gdpr-check a {
  color: var(--primary);
  text-decoration: underline;
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* ================================================ */
/* MAP                                               */
/* ================================================ */
.map-wrap { width: 100%; height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ================================================ */
/* FOOTER                                            */
/* ================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 40px; margin-bottom: 1rem; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-heading {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-links li + li { margin-top: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--primary-light); }
.footer-address {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.footer-contact-details { margin-top: 0.75rem; font-size: 0.875rem; }
.footer-contact-label { color: rgba(255,255,255,0.45); margin-top: 0.75rem; margin-bottom: 0.15rem; }
.footer-contact-details a { transition: color 0.2s; }
.footer-contact-details a:hover { color: var(--primary-light); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: var(--primary-light); }
.footer-credit {
  color: var(--primary-light);
  font-weight: 600;
}
.footer-credit:hover { text-decoration: underline; }
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ================================================ */
/* SCROLL TOP                                        */
/* ================================================ */
.scroll-top {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 40;
  width: 44px;
  height: 44px;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.scroll-top:hover {
  background: var(--primary);
  transform: translateY(-2px);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================================================ */
/* COOKIE BANNER                                     */
/* ================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 999;
  background: #f1f5f9;
  color: #334155;
  padding: 8px 12px 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  white-space: nowrap;
}
.cookie-banner a { color: var(--dark); text-decoration: underline; }
.cookie-accept {
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--primary); }

/* ================================================ */
/* SCROLL ANIMATIONS                                 */
/* ================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================ */
/* RESPONSIVE                                        */
/* ================================================ */
@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}
@media (max-width: 767px) {
  .section-white,
  .section-alt,
  .section-cyan,
  .section-dark,
  .section-sec { padding: 3rem 0; }
  .product-section { padding: 2.5rem 0; }
  .hero-content { padding-top: 5rem; }
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}
@media (max-width: 640px) {
  .wa-float { width: 52px; height: 52px; right: 1rem; bottom: 1rem; }
}
