/* block 8607b1db */
.gv-element-hover { outline: 1px dashed rgba(99, 102, 241, 0.5) !important; cursor: pointer; }
        .gv-element-selected { outline: 2px solid #6366f1 !important; }
        .gv-editing { outline: 2px solid #6366f1 !important; background: rgba(99, 102, 241, 0.05) !important; min-height: 1em; }
        /* Prevent text selection while not editing */
        body:not(.gv-editing-mode) { user-select: none; -webkit-user-select: none; }
        body.gv-editing-mode [] { user-select: text; -webkit-user-select: text; }

/* block 523158f5 */
.gv-element-hover { outline: 1px dashed rgba(99, 102, 241, 0.5) !important; cursor: pointer; }
        .gv-element-selected { outline: 2px solid #6366f1 !important; }
        .gv-editing { outline: 2px solid #6366f1 !important; background: rgba(99, 102, 241, 0.05) !important; min-height: 1em; }
        /* Brief blink when parent breadcrumb hovers an ancestor — quick preview
           of which DOM node would become selected on click. */
        .gv-element-flash { outline: 3px solid #f59e0b !important; outline-offset: 2px; transition: outline 0.15s ease; }
        /* Prevent text selection while not editing */
        body:not(.gv-editing-mode) { user-select: none; -webkit-user-select: none; }
        body.gv-editing-mode [] { user-select: text; -webkit-user-select: text; }

/* block 7237c909 */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

/* block 5c89d59f */
/* ============================================
   MARTIGER.SK - MODERN WEBSITE 2026
   Grovtic / Syki Group
   ============================================ */

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

:root {
  --red: #C41E3A;
  --red-dark: #9B1830;
  --red-light: #E8344F;
  --navy: #1A365D;
  --navy-dark: #0F2440;
  --navy-light: #2A4A7F;
  --orange: #F7941D;
  --orange-dark: #D97B0A;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --bg-dark: #111827;
  --text-dark: #1F2937;
  --text-body: #4B5563;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--bg-white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-dark p {
  color: #D1D5DB;
}

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-header .label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--text-light);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

.btn-secondary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
}

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

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(247, 148, 29, 0.3);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}

/* --- TOP BAR --- */
.topbar {
  background: var(--navy);
  color: #fff;
  padding: 8px 0;
  font-size: 0.8125rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-left a {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-left a:hover {
  color: #fff;
}

.topbar-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.topbar-right a {
  color: rgba(255,255,255,0.7);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.topbar-right a:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* --- HEADER / NAV --- */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 52px;
  width: auto;
}

.logo-text {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--red);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--red);
  background: rgba(196, 30, 58, 0.05);
}

.nav-menu > li > a .arrow {
  font-size: 0.625rem;
  transition: var(--transition);
}

.nav-menu > li:hover > a .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}

.nav-menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text-body);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.dropdown a:hover {
  background: var(--bg-light);
  color: var(--red);
}

.dropdown a i {
  width: 20px;
  color: var(--red);
  font-size: 0.875rem;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9375rem;
}

.header-phone i {
  color: var(--red);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dark);
  font-size: 1.5rem;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: var(--transition);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  padding: 8px;
}

.mobile-nav-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}

.mobile-nav-menu a:hover {
  color: var(--red);
}

.mobile-nav-menu .sub-link {
  padding-left: 20px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-body);
}

.mobile-nav-contact {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--border);
}

.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(15, 36, 64, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: #fff;
  padding: 60px 0;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
}

.hero-stat-text strong {
  display: block;
  font-size: 1rem;
  color: #fff;
}

.hero-stat-text span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}

/* --- TRUST BAR --- */
.trust-bar {
  padding: 32px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo {
  height: 36px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition);
}

.trust-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- SERVICE CARDS --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-card-img .price-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--red);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
}

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(196, 30, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  flex: 1;
}

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

.service-card-link:hover {
  gap: 10px;
}

/* --- WHY US --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

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

.why-feature {
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-feature:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.why-feature-icon.red {
  background: rgba(196, 30, 58, 0.08);
  color: var(--red);
}

.why-feature-icon.navy {
  background: rgba(26, 54, 93, 0.08);
  color: var(--navy);
}

.why-feature-icon.orange {
  background: rgba(247, 148, 29, 0.08);
  color: var(--orange);
}

.why-feature h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.why-feature p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.why-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-light);
}

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

.why-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--red);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-image-badge strong {
  font-size: 2rem;
  line-height: 1;
}

.why-image-badge span {
  font-size: 0.8125rem;
  line-height: 1.3;
  opacity: 0.9;
}

/* --- PORTFOLIO / GALLERY --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}

.portfolio-item-overlay strong {
  color: #fff;
  font-size: 0.9375rem;
}

.portfolio-item-overlay span {
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
}

/* --- REVIEWS --- */
.reviews-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: #FBBF24;
  font-size: 0.875rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.875rem;
}

.review-author-info strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.review-author-info span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  position: relative;
  z-index: 2;
}

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

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-info-card strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-info-card span,
.contact-info-card a {
  font-size: 0.9375rem;
  color: var(--text-body);
}

.contact-info-card a:hover {
  color: var(--red);
}

.form-card {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-card h3 {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text-dark);
  background: #fff;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

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

/* --- BLOG CARDS --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.blog-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

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

.blog-card-meta {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.blog-card h3 {
  margin-bottom: 10px;
  font-size: 1.125rem;
}

.blog-card h3 a:hover {
  color: var(--red);
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- PRICING / CENNIK --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card > .btn,
.pricing-card > a.btn {
  margin-top: auto;
}

.pricing-card.featured {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured .pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.pricing-icon.red {
  background: rgba(196, 30, 58, 0.08);
  color: var(--red);
}

.pricing-icon.navy {
  background: rgba(26, 54, 93, 0.08);
  color: var(--navy);
}

.pricing-card h3 {
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pricing-card .price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card .price-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-body);
}

.pricing-features li i {
  color: #10B981;
  margin-top: 4px;
  font-size: 0.8rem;
}

/* --- STATS BAR --- */
.stats-bar {
  padding: 48px 0;
  background: var(--navy);
}

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

.stat-item strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- FOOTER --- */
.footer {
  background: var(--bg-dark);
  padding: 64px 0 0;
  color: #D1D5DB;
}

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

.footer h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  color: #fff;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: #9CA3AF;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--red);
  margin-top: 4px;
  width: 16px;
}

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

.footer-bottom a {
  color: #9CA3AF;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

/* --- PAGE HEADER (subpages) --- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.page-header h1 {
  color: #fff;
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  max-width: 540px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
  color: var(--orange);
}

/* --- SERVICE DETAIL PAGE --- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.service-detail-content h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.service-detail-content p {
  margin-bottom: 16px;
}

.service-features-list {
  margin: 24px 0;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}

.service-features-list li i {
  color: #10B981;
  margin-top: 4px;
}

.service-sidebar-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.service-sidebar-card h4 {
  margin-bottom: 16px;
}

.service-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--text-body);
  margin-bottom: 4px;
  transition: var(--transition);
}

.service-nav a:hover,
.service-nav a.active {
  background: var(--red);
  color: #fff;
}

/* --- ABOUT PAGE --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--bg-light);
}

.timeline-item h4 {
  margin-bottom: 4px;
}

.timeline-item .year {
  font-size: 0.8125rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- MAP --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  margin-top: 48px;
  background: var(--bg-light);
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- SPLÁTKY BADGE --- */
.splatky-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* --- FAQ --- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

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

.faq-question i {
  color: var(--red);
  transition: var(--transition);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--text-body);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.featured {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
  .topbar-left span:not(:first-child) {
    display: none;
  }
  .nav-menu, .header-cta .btn, .header-phone {
    display: none;
  }
  .topbar {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .mobile-nav {
    display: block;
  }
  .header-inner {
    height: 64px;
  }
  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: 40px 0;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .reviews-container {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .why-features {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .trust-bar-inner {
    gap: 24px;
  }
  .trust-logo {
    height: 28px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== SERVICE SLIDER ===== */
.service-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16/9;
  background: var(--navy);
}
.service-slider .slide-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.service-slider .slide-img.active {
  opacity: 1;
}
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.slider-dot.active {
  background: #fff;
  transform: scale(1.25);
}
.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
  z-index: 3;
}
.slider-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  pointer-events: all;
  transition: background 0.2s;
}
.slider-arrow:hover { background: rgba(0,0,0,0.6); }

/* ============================================
   MARTIGER - WOW EFFECTS & ANIMATIONS
   ============================================ */

/* --- LOADING SCREEN --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s, visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 4px;
  animation: loadBar 1.5s ease-out forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1,
.stagger-2,
.stagger-3,
.stagger-4,
.stagger-5,
.stagger-6 { transition-delay: 0s; }

/* --- ANIMATED HERO --- */
.hero-wow {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
  padding: 80px 0 60px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(247, 148, 29, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(26, 54, 93, 0.3) 0%, transparent 50%);
  animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.hero-wow .hero-content {
  max-width: 700px;
}

.hero-wow h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-wow h1 .hero-line-small {
  display: block;
  font-size: 0.5em;
  font-weight: 600;
  letter-spacing: 0;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.hero-type-text {
  display: inline-block;
  color: var(--orange);
  border-right: 3px solid var(--orange);
  animation: blink-caret 0.75s step-end infinite;
  min-width: 10px;
}

@keyframes blink-caret {
  50% { border-color: transparent; }
}

.hero-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 24px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.hero-video-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.hero-play-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  position: relative;
}

.hero-play-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% { transform: scale(1.8); opacity: 0; }
}

/* --- GLASSMORPHISM CARDS --- */
.glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

/* --- 3D SERVICE CARDS --- */
.service-card-3d {
  perspective: 1000px;
}

.service-card-3d-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s;
  transform-style: preserve-3d;
}

.service-card-3d:hover .service-card-3d-inner {
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.service-card-3d-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-card-3d-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}

.service-card-3d-img .service-card-title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 2;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.service-card-3d-img .service-card-icon-float {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.service-card-3d-body {
  padding: 24px;
}

.service-card-3d-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196, 30, 58, 0.08);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* --- BEFORE/AFTER SLIDER --- */
.ba-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  aspect-ratio: 16/9;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

/* Portrait variant for boiler-room photos (pred/po) */
.ba-slider-portrait {
  aspect-ratio: 4/5;
  max-width: 560px;
}

.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider .ba-after {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.ba-slider .ba-before {
  z-index: 1;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.75rem;
}

.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 4;
}

.ba-label-before {
  right: 16px;
  background: rgba(0,0,0,0.6);
  color: #fff;
}

.ba-label-after {
  left: 16px;
  background: var(--red);
  color: #fff;
}

/* --- SAVINGS CALCULATOR --- */
.calculator {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  max-width: 560px;
  margin: 0 auto;
}

.calculator h3 {
  text-align: center;
  margin-bottom: 8px;
}

.calculator-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.calc-slider-group {
  margin-bottom: 28px;
}

.calc-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.calc-slider-label span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.calc-slider-label strong {
  font-size: 1.125rem;
  color: var(--red);
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--red) 0%, var(--red) var(--val, 50%), var(--border) var(--val, 50%), var(--border) 100%);
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(196,30,58,0.3);
  cursor: pointer;
  transition: transform 0.2s;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-result {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  color: #fff;
  margin-top: 24px;
}

.calc-result-amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--orange);
}

.calc-result-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.calc-result-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* --- FLOATING CTA BUTTON --- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.floating-btn-phone {
  background: var(--red);
  animation: pulse-shadow 2s infinite;
}

.floating-btn-whatsapp {
  background: #25D366;
}

@keyframes pulse-shadow {
  0% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(196, 30, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0); }
}

.floating-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-dark);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.floating-btn:hover + .floating-tooltip,
.floating-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
}

/* --- MARQUEE REVIEWS --- */
.marquee-container {
  overflow: hidden;
  padding: 24px 0;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-review {
  flex: 0 0 380px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

/* --- INTERACTIVE PROCESS STEPS --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  cursor: default;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  border: 3px solid var(--border);
}

.process-step:hover .process-step-number,
.process-step.active .process-step-number {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: scale(1.15);
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.3);
}

.process-step::after {
  content: '';
  position: absolute;
  top: 58px;
  right: -50%;
  width: 100%;
  height: 3px;
  background: var(--border);
  z-index: 1;
}

.process-step:last-child::after {
  display: none;
}

.process-step h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.process-step p {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* --- NOTIFICATION POPUP --- */
.notification-popup {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 998;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.notification-popup.show {
  transform: translateX(0);
}

.notification-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-text strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-dark);
}

.notification-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.notification-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 4px;
}

/* --- DARK MODE TOGGLE --- */
.dark-toggle {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 997;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.dark-toggle:hover {
  padding-right: 16px;
}

/* --- SCROLL PROGRESS --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* --- SMOOTH NUMBER TICKER --- */
.ticker {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero-wow {
    padding: 48px 0 40px;
  }
  .hero-wow h1 {
    font-size: 2.25rem;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .process-step::after {
    display: none;
  }
  .ba-slider {
    aspect-ratio: 4/3;
  }
  .floating-cta {
    bottom: 16px;
    right: 16px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
  }
  .notification-popup {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

/* --- CURSOR GLOW (desktop only) --- */
@media (hover: hover) {
  .cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,30,58,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.1s linear;
  }
}

/* --- GRADIENT TEXT --- */
.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 50%, var(--orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }

/* block 0b40be01 */
body{margin:0;}

/* block 4310041b */
.blog-article { max-width: 780px; margin: 0 auto; }
    .blog-article h2 { margin-top: 32px; margin-bottom: 12px; }
    .blog-article h3 { margin-top: 24px; margin-bottom: 10px; }
    .blog-article p { margin-bottom: 16px; line-height: 1.7; }
    .blog-article ul { margin-bottom: 16px; }
    .blog-article li { margin-bottom: 8px; line-height: 1.6; }
    .blog-hero-img { aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; }
    .blog-hero-img img { width: 100%; height: 100%; object-fit: cover; }
    .blog-meta { color: var(--text-light); font-size: 0.9rem; margin-bottom: 8px; }

/* block 77a3a2c7 */
a.blog-card { display:block; color:inherit; text-decoration:none; }
    a.blog-card:hover h3 { color: var(--red); }

/* block 9ad2b805 */
.gv-element-hover { outline: 1px dashed rgba(99, 102, 241, 0.5) !important; outline-offset: 1px; cursor: pointer; }
        /* Two-layer ring: 2px white inner + 4px indigo halo + 1px black edge.
           Always visible regardless of element bg (white-on-white, indigo
           button, dark text). box-shadow stacks where outline can't. */
        .gv-element-selected { outline: 2px solid #ffffff !important; outline-offset: 0 !important; box-shadow: 0 0 0 4px #6366f1, 0 0 0 5px rgba(0,0,0,0.4) !important; }
        .gv-editing { outline: 2px solid #ffffff !important; outline-offset: 0 !important; box-shadow: 0 0 0 4px #6366f1 !important; background: rgba(99, 102, 241, 0.05) !important; min-height: 1em; }
        /* Brief blink when parent breadcrumb hovers an ancestor — quick preview
           of which DOM node would become selected on click. */
        .gv-element-flash { outline: 3px solid #f59e0b !important; outline-offset: 2px; transition: outline 0.15s ease; }
        /* Prevent text selection while not editing */
        body:not(.gv-editing-mode) { user-select: none; -webkit-user-select: none; }
        body.gv-editing-mode [] { user-select: text; -webkit-user-select: text; }
        /* Iframe shield — transparent overlay that captures clicks so YouTube
           / Calendly / Vimeo embeds don't swallow the editor's selection.
           Hover shows a subtle hint chip so the user knows the click selects
           the iframe (not starts the video). Alt+Click on the shield falls
           through to the iframe for actually testing playback. */
        [data-gv-iframe-host] { position: relative; display: inline-block; line-height: 0; }
        [data-gv-iframe-host].gv-iframe-host-block { display: block; }
        .gv-iframe-shield {
            position: absolute; inset: 0; z-index: 5;
            background: transparent; cursor: pointer;
            transition: background-color 0.15s ease;
        }
        .gv-iframe-shield:hover { background-color: rgba(99, 102, 241, 0.08); }
        .gv-iframe-shield::after {
            content: 'Klikni pre výber · Alt+Click pre prehratie';
            position: absolute; top: 8px; left: 8px;
            background: rgba(15, 23, 42, 0.85); color: #fff;
            font: 500 11px/1 system-ui, sans-serif; padding: 5px 8px;
            border-radius: 6px; opacity: 0; transition: opacity 0.15s ease;
            pointer-events: none; white-space: nowrap;
        }
        .gv-iframe-shield:hover::after { opacity: 1; }

/* block 90c0252d */
/* ============================================
   MARTIGER - WOW EFFECTS & ANIMATIONS
   ============================================ */

/* --- LOADING SCREEN --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s, visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 4px;
  animation: loadBar 1.5s ease-out forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1,
.stagger-2,
.stagger-3,
.stagger-4,
.stagger-5,
.stagger-6 { transition-delay: 0s; }

/* --- ANIMATED HERO --- */
.hero-wow {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
  padding: 80px 0 60px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(247, 148, 29, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(26, 54, 93, 0.3) 0%, transparent 50%);
  animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.hero-wow .hero-content {
  max-width: 700px;
}

.hero-wow h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-wow h1 .hero-line-small {
  display: block;
  font-size: 0.5em;
  font-weight: 600;
  letter-spacing: 0;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.hero-type-text {
  display: inline-block;
  color: var(--orange);
  border-right: 3px solid var(--orange);
  animation: blink-caret 0.75s step-end infinite;
  min-width: 10px;
}

@keyframes blink-caret {
  50% { border-color: transparent; }
}

.hero-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 24px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.hero-video-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.hero-play-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  position: relative;
}

.hero-play-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% { transform: scale(1.8); opacity: 0; }
}

/* --- GLASSMORPHISM CARDS --- */
.glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

/* --- 3D SERVICE CARDS --- */
.service-card-3d {
  perspective: 1000px;
}

.service-card-3d-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s;
  transform-style: preserve-3d;
}

.service-card-3d:hover .service-card-3d-inner {
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.service-card-3d-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-card-3d-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}

.service-card-3d-img .service-card-title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 2;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.service-card-3d-img .service-card-icon-float {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.service-card-3d-body {
  padding: 24px;
}

.service-card-3d-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196, 30, 58, 0.08);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* --- BEFORE/AFTER SLIDER --- */
.ba-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  aspect-ratio: 16/9;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

/* Portrait variant for boiler-room photos (pred/po) */
.ba-slider-portrait {
  aspect-ratio: 4/5;
  max-width: 560px;
}

.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider .ba-after {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.ba-slider .ba-before {
  z-index: 1;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.75rem;
}

.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 4;
}

.ba-label-before {
  right: 16px;
  background: rgba(0,0,0,0.6);
  color: #fff;
}

.ba-label-after {
  left: 16px;
  background: var(--red);
  color: #fff;
}

/* --- SAVINGS CALCULATOR --- */
.calculator {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  max-width: 560px;
  margin: 0 auto;
}

.calculator h3 {
  text-align: center;
  margin-bottom: 8px;
}

.calculator-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.calc-slider-group {
  margin-bottom: 28px;
}

.calc-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.calc-slider-label span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.calc-slider-label strong {
  font-size: 1.125rem;
  color: var(--red);
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--red) 0%, var(--red) var(--val, 50%), var(--border) var(--val, 50%), var(--border) 100%);
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(196,30,58,0.3);
  cursor: pointer;
  transition: transform 0.2s;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-result {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  color: #fff;
  margin-top: 24px;
}

.calc-result-amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--orange);
}

.calc-result-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.calc-result-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* --- FLOATING CTA BUTTON --- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.floating-btn-phone {
  background: var(--red);
  animation: pulse-shadow 2s infinite;
}

.floating-btn-whatsapp {
  background: #25D366;
}

@keyframes pulse-shadow {
  0% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(196, 30, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0); }
}

.floating-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-dark);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.floating-btn:hover + .floating-tooltip,
.floating-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
}

/* --- MARQUEE REVIEWS --- */
.marquee-container {
  overflow: hidden;
  padding: 24px 0;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-review {
  flex: 0 0 380px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

/* --- INTERACTIVE PROCESS STEPS --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  cursor: default;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  border: 3px solid var(--border);
}

.process-step:hover .process-step-number,
.process-step.active .process-step-number {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: scale(1.15);
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.3);
}

.process-step::after {
  content: '';
  position: absolute;
  top: 58px;
  right: -50%;
  width: 100%;
  height: 3px;
  background: var(--border);
  z-index: 1;
}

.process-step:last-child::after {
  display: none;
}

.process-step h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.process-step p {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* --- NOTIFICATION POPUP --- */
.notification-popup {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 998;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.notification-popup.show {
  transform: translateX(0);
}

.notification-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-text strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-dark);
}

.notification-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.notification-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 4px;
}

/* --- DARK MODE TOGGLE --- */
.dark-toggle {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 997;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.dark-toggle:hover {
  padding-right: 16px;
}

/* --- SCROLL PROGRESS --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* --- SMOOTH NUMBER TICKER --- */
.ticker {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero-wow {
    padding: 48px 0 40px;
  }
  .hero-wow h1 {
    font-size: 2.25rem;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .process-step::after {
    display: none;
  }
  .ba-slider {
    aspect-ratio: 4/3;
  }
  .floating-cta {
    bottom: 16px;
    right: 16px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
  }
  .notification-popup {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

/* --- CURSOR GLOW (desktop only) --- */
@media (hover: hover) {
  .cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,30,58,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.1s linear;
  }
}

/* --- GRADIENT TEXT --- */
.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 50%, var(--orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* block cfa79c10 */
.legal-page { padding: 80px 0 60px; }
    .legal-page h2 { font-size: 1.15rem; font-weight: 700; margin: 32px 0 10px; color: #1a1a2e; }
    .legal-page p, .legal-page li { line-height: 1.75; color: #444; font-size: 0.95rem; }
    .legal-page ul { padding-left: 20px; margin-bottom: 12px; }
    .legal-page ul li { margin-bottom: 4px; }
    .legal-page a { color: #c0392b; }
    .legal-card { background: #f8f8f8; border-left: 4px solid #c0392b; padding: 20px 24px; border-radius: 6px; margin-bottom: 24px; }