/* ==========================================================================
   FLORIA REINIGUNGSDIENST – Stylesheet
   CBA Facility Solutions inspired structure, Floria brand colors
   ========================================================================== */

:root {
  /* Brand colors (from logo) */
  --c-blue: #1976d2;
  --c-blue-dark: #0d47a1;
  --c-blue-darker: #08306b;
  --c-cyan: #4fc3f7;
  --c-green: #76d33b;
  --c-green-dark: #5fa82e;

  /* UI palette */s
  --c-bg: #ffffff;
  --c-bg-alt: #f7f9fc;
  --c-bg-dark: #0a1428;
  --c-bg-darker: #06101f;
  --c-text: #1a2332;
  --c-text-soft: #4a5568;
  --c-text-light: #718096;
  --c-border: #e4e9f0;
  --c-border-soft: #f0f3f8;
  --c-white: #ffffff;
  --c-success: #25d366;

  /* Gradients */
  --grad-blue: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
  --grad-green: linear-gradient(135deg, #76d33b 0%, #5fa82e 100%);
  --grad-mix: linear-gradient(135deg, #1976d2 0%, #76d33b 100%);
  --grad-dark: linear-gradient(180deg, #0a1428 0%, #06101f 100%);

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(10,20,40,0.06);
  --sh-md: 0 8px 24px rgba(10,20,40,0.10);
  --sh-lg: 0 20px 48px rgba(10,20,40,0.16);
  --sh-xl: 0 32px 64px rgba(10,20,40,0.20);

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-bg-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: 0 6px 20px rgba(25,118,210,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(25,118,210,0.45); color: #fff; }
.btn-green { background: var(--grad-green); color: #fff; box-shadow: 0 6px 20px rgba(118,211,59,0.35); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(118,211,59,0.45); color: #fff; }
.btn-white { background: #fff; color: var(--c-blue-dark); }
.btn-white:hover { background: var(--c-bg-alt); transform: translateY(-2px); color: var(--c-blue-dark); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: #fff; color: var(--c-blue-dark); border-color: #fff; }
.btn-outline { background: transparent; color: var(--c-blue); border-color: var(--c-blue); }
.btn-outline:hover { background: var(--c-blue); color: #fff; }
.btn-whatsapp { background: var(--c-success); color: #fff; }
.btn-whatsapp:hover { background: #1ebe5b; color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn svg { width: 16px; height: 16px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(10,20,40,0.08);
  border-bottom-color: var(--c-border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--c-bg-dark);
}
.logo-link img { height: 56px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { font-size: 18px; letter-spacing: 1px; color: var(--c-blue-dark); }
.logo-text span { font-size: 11px; color: var(--c-text-light); letter-spacing: 2px; text-transform: uppercase; margin-top: 3px; }

.nav-main {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-main a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0.3px;
  padding: 8px 0;
}
.nav-main a:hover, .nav-main a.active { color: var(--c-blue); }
.nav-main a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--grad-mix);
  border-radius: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-cta { display: none; }
@media (min-width: 1100px) { .header-cta { display: inline-flex; } }

/* Mobile nav toggle */
.nav-toggle {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-bg-dark);
  border-radius: 2px;
  transition: all .25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Lang switcher */
.lang-switcher { position: relative; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-pill);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  transition: all .2s ease;
}
.lang-current:hover { border-color: var(--c-blue); color: var(--c-blue); }
.lang-current .flag { font-size: 16px; }
.lang-current svg { width: 10px; height: 10px; opacity: 0.6; }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 6px;
  display: none;
  z-index: 110;
}
.lang-switcher.open .lang-menu { display: block; }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
  transition: background .15s ease;
}
.lang-menu button:hover { background: var(--c-bg-alt); }
.lang-menu button.active { background: var(--c-blue); color: #fff; }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 90vw);
  height: 100vh;
  background: #fff;
  box-shadow: var(--sh-xl);
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 99;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  display: block;
  padding: 16px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--c-bg-dark);
  border-bottom: 1px solid var(--c-border-soft);
}
.nav-drawer a:hover, .nav-drawer a.active { color: var(--c-blue); }
.nav-drawer .btn { width: 100%; margin-top: 24px; }
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,20,40,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 98;
}
.nav-backdrop.show { opacity: 1; pointer-events: auto; }

@media (min-width: 992px) {
  .nav-main { display: flex; }
  .nav-toggle { display: none; }
}

/* ==========================================================================
   Hero (CBA-style stacked dual hero)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,48,107,0.85) 0%, rgba(10,20,40,0.78) 50%, rgba(13,71,161,0.75) 100%);
}

.hero-1 .hero-bg {
  background-image: url('https://images.unsplash.com/photo-1629235505117-a0519f5213f1?w=1920&q=80&auto=format&fit=crop');
}
.hero-2 .hero-bg {
  background-image: url('https://images.unsplash.com/photo-1707680487860-f885a53e4402?w=1920&q=80&auto=format&fit=crop');
}
.hero-2 .hero-bg::after {
  background: linear-gradient(135deg, rgba(10,20,40,0.88) 0%, rgba(8,48,107,0.82) 50%, rgba(95,168,46,0.6) 100%);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-cyan);
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
}
.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  max-width: 14ch;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero h1 .accent {
  background: var(--grad-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero p.lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Decorative number/bubble bg accents */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.hero-deco-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118,211,59,0.25), transparent 70%);
  filter: blur(40px);
}
.hero-deco-circle.c1 { top: -100px; right: -50px; width: 400px; height: 400px; }
.hero-deco-circle.c2 { bottom: -120px; left: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(79,195,247,0.3), transparent 70%); }

/* ==========================================================================
   Service tiles (vertical text bars)
   ========================================================================== */
.tiles {
  background: var(--c-bg-darker);
  padding: 0;
  position: relative;
}
.tiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
@media (min-width: 640px) { .tiles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .tiles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .tiles-grid { grid-template-columns: repeat(6, 1fr); } }

.tile {
  position: relative;
  height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: all .4s ease;
}
.tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,20,40,0.3) 0%, rgba(10,20,40,0.92) 100%);
  z-index: -1;
  transition: all .4s ease;
}
.tile:hover::before { background: linear-gradient(180deg, rgba(25,118,210,0.4) 0%, rgba(8,48,107,0.95) 100%); }
.tile-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.tile:hover .tile-bg { transform: scale(1.08); }
.tile-label {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}
.tile-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--c-green);
  margin-top: 14px;
  transition: width .3s ease;
}
.tile:hover .tile-label::after { width: 80px; }

/* Tile bg fallback gradients per index */
.tile.t1 .tile-bg { background-image: linear-gradient(135deg, #1976d2, #0d47a1); }
.tile.t2 .tile-bg { background-image: linear-gradient(135deg, #0d47a1, #08306b); }
.tile.t3 .tile-bg { background-image: linear-gradient(135deg, #4fc3f7, #1976d2); }
.tile.t4 .tile-bg { background-image: linear-gradient(135deg, #5fa82e, #76d33b); }
.tile.t5 .tile-bg { background-image: linear-gradient(135deg, #08306b, #0a1428); }
.tile.t6 .tile-bg { background-image: linear-gradient(135deg, #76d33b, #1976d2); }

/* ==========================================================================
   Years counter section
   ========================================================================== */
.counter-section {
  background: var(--c-bg-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(25,118,210,0.18), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(118,211,59,0.15), transparent 50%);
}
.counter-wrap { position: relative; z-index: 2; }
.counter-number {
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900;
  line-height: 0.9;
  background: var(--grad-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.05em;
  display: inline-block;
}
.counter-plus {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--c-cyan);
  vertical-align: top;
  margin-left: 8px;
}
.counter-label {
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.85);
  margin-top: 12px;
}
.counter-sparkle {
  display: inline-block;
  margin-left: 12px;
  width: 32px; height: 32px;
  vertical-align: middle;
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   Mission/Vision section
   ========================================================================== */
.section { padding: 100px 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 16px;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--c-text-soft); font-size: 1.05rem; }

.mv-section { background: var(--c-bg-alt); position: relative; }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (min-width: 768px) { .mv-grid { grid-template-columns: 1fr 1fr; } }

.mv-card {
  background: #fff;
  padding: 48px 40px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border-soft);
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: var(--grad-mix);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s ease;
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.mv-card:hover::before { transform: scaleY(1); }
.mv-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: var(--grad-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.mv-card.green .mv-icon { background: var(--grad-green); }
.mv-icon svg { width: 32px; height: 32px; }
.mv-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.mv-card p { color: var(--c-text-soft); margin: 0; }

.mv-cta-wrap { text-align: center; margin-top: 56px; }

/* ==========================================================================
   Service grid (cards with stacked photo previews)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.svc-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1.5px solid var(--c-border);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--c-blue);
}
.svc-card-photos {
  position: relative;
  height: 140px;
  margin-bottom: 24px;
}
.svc-card-photos > div {
  position: absolute;
  border-radius: var(--r-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 3px solid #fff;
  box-shadow: var(--sh-sm);
}
.svc-card-photos > div:nth-child(1) {
  width: 70%; height: 75%;
  top: 0; left: 0;
  z-index: 3;
}
.svc-card-photos > div:nth-child(2) {
  width: 55%; height: 70%;
  top: 30%; right: 0;
  z-index: 2;
}
.svc-card-photos > div:nth-child(3) {
  width: 45%; height: 60%;
  bottom: 0; left: 25%;
  z-index: 1;
}
.svc-card-photos > div::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25,118,210,0.4), rgba(118,211,59,0.3));
}
.svc-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.svc-card h3 svg {
  width: 18px; height: 18px;
  color: var(--c-blue);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.svc-card:hover h3 svg { transform: translateX(4px); }
.svc-card p {
  color: var(--c-text-soft);
  font-size: 14px;
  margin: 0;
  flex-grow: 1;
}

/* ==========================================================================
   Why Choose Us (4 numbered cards)
   ========================================================================== */
.why-section { background: var(--c-bg-dark); color: #fff; position: relative; overflow: hidden; }
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(25,118,210,0.15), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(118,211,59,0.12), transparent 50%);
}
.why-section .container { position: relative; z-index: 2; }
.why-section .section-head h2,
.why-section .section-head p { color: #fff; }
.why-section .section-head p { color: rgba(255,255,255,0.75); }
.why-section .section-eyebrow { color: var(--c-cyan); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  transition: all .3s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--c-cyan);
  transform: translateY(-6px);
}
.why-num {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.why-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 16px;
  line-height: 1.3;
}
.why-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.why-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ==========================================================================
   Discount banner
   ========================================================================== */
.discount-banner {
  position: relative;
  padding: 100px 0;
  background: var(--grad-blue);
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.discount-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920&q=70&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}
.discount-banner h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 32px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.discount-banner h2 .pct {
  color: var(--c-green);
  text-shadow: 0 4px 16px rgba(118,211,59,0.4);
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-section { background: var(--c-bg-alt); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }

.price-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 40px 32px;
  border: 2px solid var(--c-border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .3s ease;
}
.price-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--c-blue);
  box-shadow: var(--sh-lg);
  transform: scale(1.03);
}
@media (max-width: 767px) { .price-card.featured { transform: none; } }
.price-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-mix);
  color: #fff;
  padding: 7px 22px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.price-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.price-card .price-from {
  font-size: 12px;
  color: var(--c-text-light);
  font-weight: 600;
  }
.price-card .price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 12px 0 8px;
}
.price-card .price-amount strong {
  font-size: 3rem;
  color: var(--c-bg-dark);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.price-card .price-amount span {
  color: var(--c-text-light);
  font-weight: 600;
  font-size: 14px;
}
.price-card .price-sub {
  color: var(--c-text-soft);
  font-size: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border-soft);
}
.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.5;
}
.price-card ul li svg {
  width: 18px; height: 18px;
  color: var(--c-green-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card .btn { width: 100%; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section { background: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: var(--c-bg-alt);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  border: 1px solid var(--c-border-soft);
  transition: all .3s ease;
}
.testimonial:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.testimonial-quote {
  position: absolute;
  top: 24px; right: 28px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--c-blue);
  opacity: 0.15;
}
.testimonial p {
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-mix);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--c-bg-dark); font-size: 14px; }
.testimonial-author span { display: block; color: var(--c-text-light); font-size: 13px; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 14px; color: #f59e0b; }
.testimonial-stars svg { width: 16px; height: 16px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { background: var(--c-bg-alt); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .25s ease;
}
.faq-item.open { border-color: var(--c-blue); box-shadow: var(--sh-md); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 28px;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-bg-dark);
  background: transparent;
}
.faq-q:hover { color: var(--c-blue); }
.faq-q-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-bg-alt);
  color: var(--c-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s ease;
}
.faq-q-icon svg { width: 14px; height: 14px; transition: transform .3s ease; }
.faq-item.open .faq-q-icon { background: var(--c-blue); color: #fff; }
.faq-item.open .faq-q-icon svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 28px 24px;
  color: var(--c-text-soft);
  line-height: 1.7;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  background: var(--c-bg-dark);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(25,118,210,0.3), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(118,211,59,0.2), transparent 50%);
}
.final-cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.final-cta .section-eyebrow { color: var(--c-cyan); }
.final-cta h2 { color: #fff; margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; }
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--c-bg-darker);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand img {
  height: 80px;
  margin-bottom: 20px;
  filter: brightness(1.1);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
  color: rgba(255,255,255,0.65);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: all .25s ease;
}
.footer-social a:hover {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 800;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: all .2s ease;
}
.footer-col ul a:hover { color: var(--c-cyan); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.footer-contact svg {
  width: 16px; height: 16px;
  color: var(--c-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--c-cyan); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--c-cyan); }

/* ==========================================================================
   WhatsApp float
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-success);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  z-index: 90;
  transition: transform .25s ease;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
.whatsapp-float svg { width: 30px; height: 30px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.6); }
  50%      { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
}

/* ==========================================================================
   Cookie banner
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 100px;
  max-width: 480px;
  background: #fff;
  padding: 22px 26px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--c-border);
  display: none;
  z-index: 95;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 13px; line-height: 1.6; color: var(--c-text-soft); margin: 0 0 14px; }
.cookie-banner p a { color: var(--c-blue); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 8px; }
.cookie-banner .btn { flex: 1; padding: 10px 16px; font-size: 12px; }

/* ==========================================================================
   Page hero (sub-pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  text-align: center;
  color: #fff;
  background: var(--c-bg-dark);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1629235505117-a0519f5213f1?w=1920&q=70&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: -1;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,20,40,0.8), rgba(8,48,107,0.85));
  z-index: -1;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--c-cyan); }

/* ==========================================================================
   Calculator (pricing page)
   ========================================================================== */
.calculator {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 48px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border);
  max-width: 820px;
  margin: 0 auto;
}
.calc-row { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 24px; }
@media (min-width: 640px) { .calc-row.two { grid-template-columns: 1fr 1fr; } }
.calc-field { display: flex; flex-direction: column; }
.calc-field > label {
  font-weight: 700;
  font-size: 13px;
  color: var(--c-bg-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.calc-field input,
.calc-field select {
  padding: 14px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--c-text);
  transition: all .2s ease;
}
.calc-field input:focus,
.calc-field select:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(25,118,210,0.12);
}
.calc-freq-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 640px) { .calc-freq-options { grid-template-columns: repeat(4, 1fr); } }
.calc-freq-options button {
  padding: 14px 12px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  background: #fff;
  font-weight: 700;
  font-size: 13px;
  color: var(--c-text);
  text-align: center;
  transition: all .2s ease;
}
.calc-freq-options button:hover { border-color: var(--c-blue); color: var(--c-blue); }
.calc-freq-options button.selected {
  background: var(--grad-blue);
  color: #fff;
  border-color: transparent;
}
.calc-result {
  background: var(--grad-blue);
  color: #fff;
  padding: 32px;
  border-radius: var(--r-md);
  text-align: center;
  margin-top: 8px;
}
.calc-result-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}
.calc-result-value {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  margin: 8px 0 6px;
  letter-spacing: -0.02em;
}
.calc-result-value::after { content: ' €'; font-weight: 700; opacity: 0.85; }
.calc-result-unit { font-size: 13px; opacity: 0.85; margin-bottom: 18px; }
.calc-result-note { font-size: 12px; opacity: 0.75; max-width: 460px; margin: 0 auto 22px; line-height: 1.5; }
.calc-result .btn { background: #fff; color: var(--c-blue-dark); }
.calc-result .btn:hover { background: var(--c-bg-alt); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 992px) { .contact-grid { grid-template-columns: 1fr 1.4fr; } }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  display: flex;
  gap: 18px;
  padding: 24px 26px;
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  transition: all .25s ease;
}
.info-card:hover { border-color: var(--c-blue); box-shadow: var(--sh-md); }
.info-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--grad-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card-icon svg { width: 22px; height: 22px; }
.info-card h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-text-light);
  margin: 0 0 6px;
  font-weight: 700;
}
.info-card a, .info-card span, .info-card p {
  font-size: 15px;
  color: var(--c-bg-dark);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  word-break: break-word;
}
.info-card a:hover { color: var(--c-blue); }

.contact-form-wrap {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 48px;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-md);
}
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--c-text-soft); margin-bottom: 28px; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-weight: 600; font-size: 13px; color: var(--c-bg-dark); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--c-text);
  transition: all .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(25,118,210,0.12);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.checkbox-label {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--c-text-soft);
  font-weight: 500;
}
.checkbox-label input { width: auto; margin-top: 3px; }
.checkbox-label a { color: var(--c-blue); text-decoration: underline; }
.form-status {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  display: none;
}
.form-status.success { background: rgba(118,211,59,0.15); color: var(--c-green-dark); display: block; }
.form-status.error { background: rgba(220,53,69,0.10); color: #b02a37; display: block; }

.map-wrap {
  margin-top: 56px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-page { padding: 80px 0 100px; }
.legal-page .container { max-width: 880px; }
.legal-page h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-border);
}
.legal-page h2:first-of-type { margin-top: 0; }
.legal-page h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.legal-page p, .legal-page li {
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.75;
}
.legal-page ul { padding-left: 22px; list-style: disc; margin-bottom: 1em; }
.legal-page strong { color: var(--c-bg-dark); }
.legal-page a { color: var(--c-blue); text-decoration: underline; }

/* ==========================================================================
   About page extras
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 992px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: relative;
  aspect-ratio: 1/1;
  background-image: linear-gradient(135deg, rgba(8,48,107,0.5), rgba(95,168,46,0.5)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1200&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.about-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.6;
}
.about-list li svg {
  width: 22px; height: 22px;
  color: var(--c-green-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: all .7s cubic-bezier(.4,0,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }
s