/* ============================================================
   CUT.si — main stylesheet
   Modern, lightweight, responsive (Bootstrap 5 + custom)
   ============================================================ */

:root {
  --primary-color: #0f9db7;
  --primary-hover: #0b6f82;
  --primary-light: #e0f7fb;
  --primary-dark: #064355;
  --secondary-color: #1f2937;
  --text-color: #4b5563;
  --light-gray: #f8fafc;
  --border-color: #e5e7eb;
  --success-bg: #ecfdf5;
  --success-text: #065f46;
  --danger-bg: #fef2f2;
  --danger-text: #991b1b;
  --htv-color: #7c3aed;
  --htv-light: #f3f0ff;
  --accent-pink: #ec4899;
  --accent-amber: #f59e0b;
  --gradient-primary: linear-gradient(135deg, #0f9db7 0%, #0b6f82 100%);
  --gradient-hero: linear-gradient(125deg, #064355 0%, #0b6f82 35%, #0f9db7 75%, #1ec3e0 100%);
  --gradient-accent: linear-gradient(135deg, #0f9db7 0%, #7c3aed 100%);
  --shadow-sm: 0 2px 8px rgba(15,23,42,0.04);
  --shadow-md: 0 8px 24px rgba(15,23,42,0.08);
  --shadow-lg: 0 16px 48px rgba(15,23,42,0.12);
  --shadow-glow: 0 12px 40px rgba(15,157,183,0.25);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--secondary-color);
}
a { color: var(--primary-color); text-decoration: none; }
a:hover { color: var(--primary-hover); }
::selection { background: var(--primary-color); color: #fff; }

/* Focus visible (a11y) — explicit ring for keyboard navigation */
*:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible { outline-offset: 4px; }
.form-control:focus-visible, .form-select:focus-visible {
  outline: none;  /* uses .form-control:focus rule with brand color ring */
}

/* Trust badge (garancije) */
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 5px 11px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.trust-badge i { color: var(--primary-color); }
.trust-badge.htv { background: var(--htv-light); color: var(--htv-color); }
.trust-badge.htv i { color: var(--htv-color); }
.trust-badge.amber { background: #fef3c7; color: #92400e; }
.trust-badge.amber i { color: #d97706; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--primary-color);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  z-index: 9999;
}
.skip-link:focus { left: 8px; color: #fff; }

/* Section eyebrow */
.section-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-eyebrow.htv { background: var(--htv-light); color: var(--htv-color); }
.section-eyebrow.amber { background: #fef3c7; color: #92400e; }

/* Buttons */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(15,157,183,0.28);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover, .btn-primary:focus {
  background: var(--gradient-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(15,157,183,0.4);
  color: #fff;
}
.btn-outline-secondary, .btn-outline-primary {
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}
.btn-outline-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15,157,183,0.3);
}
.btn-outline-secondary {
  border: 2px solid #d1d5db;
  color: var(--secondary-color);
  background: transparent;
}
.btn-outline-secondary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
  transform: translateY(-2px);
}
.btn-sm.btn-outline-primary { padding: 0.45rem 1.05rem; font-size: 0.875rem; border-width: 1.5px; }

/* ── TOPBAR ── */
.topbar-mini {
  background: var(--secondary-color);
  color: #fff;
  font-size: 0.86rem;
  padding: 0.5rem 0;
  letter-spacing: 0.01em;
}
.topbar-mini a { color: #fff; transition: 0.2s; }
.topbar-mini a:hover { color: #9ae8f5; }

/* ── NAVBAR ── */
.navbar {
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.navbar.scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 6px 24px rgba(15,23,42,0.08);
}
.navbar-brand img { max-height: 44px; width: auto; display: block; }
.nav-link {
  font-weight: 500;
  color: #4b5563 !important;
  transition: color 0.25s;
  font-size: 0.93rem;
  padding: 0.55rem 0.85rem !important;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.3s ease, left 0.3s ease;
}
.nav-link:hover { color: var(--primary-color) !important; }
.nav-link:hover::after { width: 24px; left: calc(50% - 12px); }
.nav-link.active { color: var(--primary-color) !important; }
.nav-link.active::after { width: 24px; left: calc(50% - 12px); }
.navbar-toggler { border: none; padding: 0.4rem 0.6rem; }
.navbar-toggler:focus { box-shadow: 0 0 0 0.2rem rgba(15,157,183,0.2); }

/* Dropdown */
.nav-item.dropdown .nav-link.dropdown-toggle::after { display: none; }
.nav-item.dropdown > .nav-link::before {
  content: "\F282";
  font-family: "bootstrap-icons";
  font-size: 0.7rem;
  margin-left: 4px;
  vertical-align: middle;
  display: inline-block;
  opacity: 0.7;
}
.dropdown-menu {
  border-radius: 14px;
  border: 1px solid var(--border-color);
  box-shadow: 0 14px 40px rgba(15,23,42,0.12);
  padding: 8px;
  margin-top: 8px !important;
  min-width: 240px;
}
.dropdown-item {
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.92rem;
  color: var(--secondary-color);
  transition: 0.15s;
}
.dropdown-item:hover, .dropdown-item:focus {
  background: var(--primary-light);
  color: var(--primary-color);
}
.dropdown-item.fw-bold { color: var(--primary-color); }
.dropdown-divider { border-color: var(--border-color); margin: 4px 0; }

/* ── HERO ── */
.hero {
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -120px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.35) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
  filter: blur(20px);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,72,153,0.28) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
  filter: blur(20px);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.7;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
}
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.hero-badge .pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 22px;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero h1 .accent {
  background: linear-gradient(135deg, #ffe5b4 0%, #ffc97a 50%, #ff9a3c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.hero .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.65;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 32px;
}
.hero-point {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 13px 16px;
  font-weight: 500;
  font-size: 0.92rem;
  color: #fff;
  transition: 0.2s;
}
.hero-point:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }
.hero-point i { color: #ffd66b; margin-right: 8px; font-size: 1rem; }

.hero .btn-primary {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}
.hero .btn-primary:hover { background: #fff; color: var(--primary-color); box-shadow: 0 14px 32px rgba(0,0,0,0.24); }
.hero .btn-outline-secondary { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero .btn-outline-secondary:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

.hero-contact { margin-top: 24px; color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.hero-contact a { color: #fff; font-weight: 500; }
.hero-contact a:hover { color: #ffd66b; }
.hero-contact i { color: #ffd66b !important; }

.hero-image-wrap { position: relative; padding: 18px; }
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-image {
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  position: relative;
  z-index: 1;
}
#heroCarousel { position: relative; z-index: 1; }
#heroCarousel .carousel-control-prev, #heroCarousel .carousel-control-next { z-index: 5; opacity: 0.7; }
#heroCarousel .carousel-control-prev:hover, #heroCarousel .carousel-control-next:hover { opacity: 1; }

.hero-floater {
  position: absolute;
  background: #fff;
  color: var(--secondary-color);
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  font-size: 0.86rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
}
.hero-floater i {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.hero-floater.top-left { top: 24px; left: -10px; animation: float-anim 4.5s ease-in-out infinite; }
.hero-floater.bottom-right { bottom: 28px; right: -10px; animation: float-anim 5s ease-in-out infinite reverse; }
@keyframes float-anim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── PAGE HERO (for subpages) ── */
.page-hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 80px 0 110px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 65%);
  filter: blur(20px);
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.01em; }
.page-hero .lead, .page-hero p { color: rgba(255,255,255,0.88); font-size: 1.1rem; max-width: 760px; margin: 0 auto; }
.page-hero .container { position: relative; z-index: 1; }

/* ── BREADCRUMBS ── */
.breadcrumb-bar { padding: 12px 0; background: var(--light-gray); border-bottom: 1px solid var(--border-color); font-size: 0.88rem; }
.breadcrumb { margin: 0; background: transparent; padding: 0; }
.breadcrumb-item + .breadcrumb-item::before { color: #9ca3af; }
.page-hero .breadcrumb { background: transparent; padding: 0; margin-bottom: 18px; justify-content: center; }
.page-hero .breadcrumb a, .page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.85); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ── SECTIONS COMMON ── */
section { padding: 90px 0; position: relative; }
.section-title {
  text-align: center;
  padding-bottom: 50px;
  max-width: 860px;
  margin: 0 auto;
}
.section-title h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.section-title h2 .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section-title p { margin-top: 14px; color: #6b7280; font-size: 1.04rem; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ── FEATURE BOXES ── */
.feature-box, .step-box, .target-box, .material-box, .why-box-card, .pricing-column {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.feature-box {
  text-align: center;
  padding: 2.6rem 1.9rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.feature-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-box:hover { transform: translateY(-8px); border-color: transparent; box-shadow: 0 20px 50px rgba(15,157,183,0.18); }
.feature-box:hover::before { transform: scaleX(1); }
.feature-box .icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #c5ecf3 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  color: var(--primary-color);
  transition: 0.3s;
}
.feature-box:hover .icon {
  background: var(--gradient-primary);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 10px 24px rgba(15,157,183,0.35);
}
.feature-box h3 { font-size: 1.18rem; margin-bottom: 10px; font-weight: 700; }
.feature-box p { font-size: 0.94rem; color: #6b7280; margin-bottom: 0; }

.feature-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-color);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.feature-tag.htv { background: var(--htv-light); color: var(--htv-color); }

/* ── TRUST STATS ── */
.stats-section { padding: 0; position: relative; margin-top: -60px; z-index: 5; }
.stats-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 24px;
  box-shadow: 0 30px 70px rgba(15,23,42,0.12);
  border: 1px solid rgba(15,157,183,0.08);
}
.stat-item { text-align: center; padding: 14px 10px; border-right: 1px solid var(--border-color); }
.stat-item:last-child { border-right: none; }
.stat-item .stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  letter-spacing: -0.02em;
}
.stat-item .stat-label { font-size: 0.9rem; color: #6b7280; font-weight: 500; }
.stat-item i {
  width: 50px; height: 50px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}

/* ── POSTOPEK ── */
#postopek { background: linear-gradient(180deg, #f8fafc 0%, #f0f9fb 100%); }
.step-box { padding: 32px 26px; transition: 0.3s ease; position: relative; }
.step-box:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(15,157,183,0.12); }
.step-number {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 18px;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(15,157,183,0.3);
  position: relative;
}
.step-number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  border: 2px dashed rgba(15,157,183,0.25);
}
.step-box h3 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; }
.step-box p { font-size: 0.92rem; color: #6b7280; margin-bottom: 0; }

/* ── ZA KOGA ── */
.target-box {
  padding: 30px 24px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.target-box::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,157,183,0.1) 0%, transparent 70%);
  transition: 0.4s;
}
.target-box:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(15,157,183,0.14); border-color: rgba(15,157,183,0.25); }
.target-box:hover::after { transform: scale(1.4); }
.target-box .target-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #c5ecf3 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: 0.3s;
}
.target-box:hover .target-icon { background: var(--gradient-primary); transform: scale(1.05) rotate(-4deg); }
.target-box:hover .target-icon i { color: #fff; }
.target-box .target-icon i { font-size: 1.55rem; color: var(--primary-color); transition: 0.3s; }
.target-box h3 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 700; }
.target-box p { font-size: 0.92rem; margin-bottom: 18px; color: #6b7280; }
.target-box .btn { font-size: 0.83rem; }

/* ── INDUSTRY CARDS ── */
.industry-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--primary-color);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(15,157,183,0.12); border-color: rgba(15,157,183,0.3); }
.industry-card:hover::before { transform: scaleY(1); }
.industry-card .ind-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #d6f3f8 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.industry-card .ind-icon i { font-size: 1.6rem; color: var(--primary-color); }
.industry-card h3 { font-size: 1.05rem; margin-bottom: 12px; color: var(--secondary-color); }
.industry-card ul { list-style: none; padding: 0; margin: 0; font-size: 0.87rem; color: #5b6472; }
.industry-card ul li { padding: 5px 0 5px 20px; position: relative; line-height: 1.5; }
.industry-card ul li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0; top: 5px;
  color: var(--primary-color);
  font-size: 0.85rem;
}

/* ── IDEJE BLOCK (samolepilna / HTV cards) ── */
.ideas-block { margin-bottom: 48px; }
.ideas-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #0f9db7 0%, #0b6f82 100%);
  color: #fff;
  border-radius: 14px;
  padding: 16px 24px;
  margin-bottom: 20px;
}
.ideas-block-header.htv-header { background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%); }
.ideas-block-header i { font-size: 1.8rem; }
.ideas-block-header h3 { color: #fff; margin: 0; font-size: 1.12rem; }
.ideas-block-header p { color: rgba(255,255,255,0.85); margin: 2px 0 0; font-size: 0.87rem; }

.idea-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 13px;
  padding: 20px 16px;
  height: 100%;
  transition: 0.25s ease;
  text-align: center;
}
.idea-card:hover { transform: translateY(-4px); border-color: rgba(15,157,183,0.35); box-shadow: 0 10px 24px rgba(15,157,183,0.1); }
.idea-card.htv-card:hover { border-color: rgba(124,58,237,0.35); box-shadow: 0 10px 24px rgba(124,58,237,0.1); }
.idea-card .idea-icon { font-size: 2.1rem; color: var(--primary-color); margin-bottom: 10px; display: block; }
.idea-card.htv-card .idea-icon { color: var(--htv-color); }
.idea-card h4 { font-size: 0.92rem; font-weight: 600; color: var(--secondary-color); margin-bottom: 5px; }
.idea-card p { font-size: 0.82rem; color: #6b7280; margin: 0; line-height: 1.45; }

/* ── GALERIJA ── */
.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  background: #fff;
  position: relative;
  transition: 0.3s;
}
.gallery-item::after {
  content: '\F4D8';
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(15,157,183,0.95);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
  pointer-events: none;
}
.gallery-item:hover { box-shadow: 0 22px 50px rgba(15,157,183,0.2); transform: translateY(-4px); }
.gallery-item:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.gallery-item img { transition: transform 0.5s ease; width: 100%; height: auto; display: block; }
.gallery-item:hover img { transform: scale(1.08); }

/* ── ZAKAJ MI ── */
.why-box-card { padding: 30px 26px; text-align: left; transition: 0.3s ease; position: relative; overflow: hidden; }
.why-box-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 18px 40px rgba(15,157,183,0.14); }
.why-box-card .why-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #c5ecf3 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: 0.3s;
}
.why-box-card:hover .why-icon { background: var(--gradient-primary); transform: scale(1.08) rotate(-4deg); }
.why-box-card:hover .why-icon i { color: #fff; }
.why-box-card .why-icon i { font-size: 1.55rem; color: var(--primary-color); transition: 0.3s; }
.why-box-card h4 { font-size: 1.05rem; margin-bottom: 8px; font-weight: 700; }
.why-box-card p { font-size: 0.92rem; color: #6b7280; margin-bottom: 0; }

/* ── TESTIMONIALI ── */
#mnenja { background: var(--light-gray); position: relative; overflow: hidden; }
#mnenja::before {
  content: '\F6B0';
  font-family: "bootstrap-icons";
  position: absolute;
  top: 40px; right: 5%;
  font-size: 12rem;
  color: rgba(15,157,183,0.05);
  pointer-events: none;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  transition: 0.3s;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(15,157,183,0.14); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 22px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--primary-color);
  line-height: 1;
  opacity: 0.18;
}
.testimonial-card .stars { color: var(--accent-amber); font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card .quote { font-size: 0.98rem; color: var(--text-color); font-style: italic; margin-bottom: 20px; line-height: 1.7; padding-left: 14px; border-left: 3px solid var(--primary-color); }
.testimonial-card .author { font-weight: 700; color: var(--secondary-color); font-style: normal; font-size: 0.96rem; }
.testimonial-card .author-role { font-size: 0.84rem; color: #6b7280; }

/* ── MATERIALI ── */
.material-box { padding: 26px; }
.material-box .mat-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #c5ecf3 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.material-box .mat-icon i { font-size: 1.5rem; color: var(--primary-color); }
.material-box h3 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 700; }
.material-box ul { list-style: none; padding: 0; font-size: 0.92rem; color: #5b6472; }
.material-box ul li { padding: 6px 0 6px 22px; position: relative; line-height: 1.55; }
.material-box ul li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0; top: 6px;
  color: var(--primary-color);
}

/* ── BARVE / COLOR SWATCHES ── */
.color-swatch {
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
  border: 1px solid var(--border-color);
  transition: 0.2s;
  cursor: default;
}
.color-swatch:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.color-swatch .swatch-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 10px;
  border: 2px solid rgba(0,0,0,0.08);
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.15);
}
.color-swatch .swatch-name { font-size: 0.82rem; font-weight: 500; color: var(--secondary-color); }
.swatch-circle.s-white { background: #ffffff; }
.swatch-circle.s-black { background: #1a1a1a; }
.swatch-circle.s-red { background: #d32f2f; }
.swatch-circle.s-blue { background: #1565c0; }
.swatch-circle.s-green { background: #2e7d32; }
.swatch-circle.s-yellow { background: #fdd835; }
.swatch-circle.s-orange { background: #f57c00; }
.swatch-circle.s-pink { background: #ec407a; }
.swatch-circle.s-purple { background: #7b1fa2; }
.swatch-circle.s-brown { background: #6d4c2b; }
.swatch-circle.s-gray { background: #757575; }
.swatch-circle.s-silver { background: linear-gradient(135deg, #e8e8e8 0%, #b0b0b0 60%, #d8d8d8 100%); }
.swatch-circle.s-gold { background: linear-gradient(135deg, #fff4b8 0%, #d4af37 60%, #b8860b 100%); }
.swatch-circle.s-fluo { background: #aaff00; box-shadow: 0 0 12px rgba(170,255,0,0.55); }
.swatch-circle.s-reflective { background: linear-gradient(135deg, #d8d8d8 0%, #ffffff 25%, #c0c0c0 50%, #ffffff 75%, #d8d8d8 100%); }
.swatch-circle.s-glitter { background: radial-gradient(circle at 30% 30%, #fff 0%, #ffd700 25%, #ff69b4 50%, #9370db 75%, #4169e1 100%); }

/* ── CARE CARD ── */
.care-card { background: #fff; border: 1px solid var(--border-color); border-radius: 14px; padding: 22px; height: 100%; }
.care-card .care-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.care-card .care-head i {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.care-card h4 { font-size: 1rem; margin: 0; color: var(--secondary-color); }
.care-card ul { list-style: none; padding: 0; margin: 0; font-size: 0.88rem; color: #5b6472; }
.care-card ul li { padding: 6px 0 6px 20px; position: relative; line-height: 1.5; }
.care-card ul li::before { content: "•"; position: absolute; left: 6px; top: 4px; color: var(--primary-color); font-weight: 700; }

/* ── CENIK ── */
#cenik { background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.pricing-column { padding: 2.6rem 2rem; display: flex; flex-direction: column; position: relative; transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 22px; }
.pricing-column:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(15,157,183,0.12); }
.pricing-column.featured { border: none; background: linear-gradient(180deg, #fff 0%, #fbfeff 100%); box-shadow: 0 18px 50px rgba(15,157,183,0.16); transform: translateY(-8px); }
.pricing-column.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 2px;
  background: var(--gradient-accent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.badge-featured {
  position: absolute; top: -14px; right: 24px;
  background: var(--gradient-accent);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(124,58,237,0.3);
}
.pricing-column h3 { color: var(--secondary-color); font-weight: 700; font-size: 1.2rem; margin-bottom: 14px; }
.pricing-column .price {
  font-size: 2.4rem; font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing-column .price span { font-size: 0.95rem; font-weight: 400; color: #888; background: none; -webkit-text-fill-color: #888; }
.pricing-column ul { list-style: none; padding: 0; margin-bottom: 1.75rem; flex-grow: 1; }
.pricing-column ul li { padding: 10px 0; border-bottom: 1px solid #f3f4f6; font-size: 0.92rem; display: flex; align-items: flex-start; gap: 9px; }
.pricing-column ul li:last-child { border-bottom: none; }
.pricing-column ul li i { color: var(--primary-color); margin-top: 3px; flex-shrink: 0; }
.pricing-column ul li i.bi-info-circle-fill { color: #94a3b8; }
.pricing-column ul li i.bi-lightning-charge-fill { color: var(--accent-amber); }

/* Price breakdown table inside pricing column */
.price-breakdown {
  background: linear-gradient(135deg, var(--primary-light) 0%, #f4fbfc 100%);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(15,157,183,0.12);
}
.price-breakdown-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.price-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  font-size: 0.86rem;
  border-bottom: 1px dashed rgba(15,157,183,0.18);
}
.price-breakdown-row:last-child { border-bottom: none; }
.price-breakdown-row .pb-label { color: var(--secondary-color); }
.price-breakdown-row .pb-value { font-weight: 700; color: var(--primary-dark); white-space: nowrap; margin-left: 8px; }
.price-breakdown-row .pb-note { display: block; font-size: 0.74rem; color: #6b7280; font-weight: 400; margin-top: 2px; }

/* ── INFO STRIP ── */
.info-strip {
  background: var(--gradient-hero);
  color: #fff;
  border-radius: 28px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11,111,130,0.3);
}
.info-strip::before { content: ''; position: absolute; top: -50px; right: -50px; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%); pointer-events: none; }
.info-strip::after { content: ''; position: absolute; bottom: -100px; left: -50px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%); pointer-events: none; }
.info-strip h3, .info-strip p { color: #fff; position: relative; z-index: 1; }
.info-strip h3 { font-weight: 700; font-size: 1.5rem; }
.info-strip .btn-light { background: #fff; color: var(--primary-dark); font-weight: 700; border: none; padding: 0.95rem 1.8rem; box-shadow: 0 10px 24px rgba(0,0,0,0.18); }
.info-strip .btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.24); color: var(--primary-color); }

/* ── KONTAKT FORM ── */
.contact-card { background: #fff; border: 1px solid var(--border-color); border-radius: 22px; box-shadow: 0 12px 35px rgba(15,23,42,0.06); }
.form-control, .form-select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(15,157,183,0.15);
}
.form-label { font-weight: 500; font-size: 0.92rem; margin-bottom: 6px; }
.form-text { font-size: 0.82rem; color: #6b7280; }

.file-upload-wrapper { position: relative; }
.file-upload-wrapper input[type="file"] { position: absolute; opacity: 0; width: 100%; height: 100%; top: 0; left: 0; cursor: pointer; z-index: 2; }
.file-upload-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px dashed #d1d5db;
  border-radius: 10px;
  background: #f9fafb;
  cursor: pointer;
  transition: 0.2s;
  font-size: 0.92rem;
  color: #6b7280;
  min-height: 50px;
}
.file-upload-label i { font-size: 1.2rem; color: var(--primary-color); flex-shrink: 0; }
.file-upload-label:hover { border-color: var(--primary-color); background: #f0fafc; color: var(--primary-color); }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; height: 0 !important; width: 0 !important; overflow: hidden !important; }

.alert-inline-success { background: var(--success-bg); color: var(--success-text); border: 1px solid #a7f3d0; border-radius: 12px; padding: 14px 16px; }
.alert-inline-error { background: var(--danger-bg); color: var(--danger-text); border: 1px solid #fecaca; border-radius: 12px; padding: 14px 16px; }

/* ── MAP ── */
.map-container { border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
.map-container iframe { display: block; width: 100%; height: 280px; }

/* ── LEGAL PAGES CONTENT ── */
.legal-content {
  background: #fff;
  margin-top: -60px;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 24px 70px rgba(15,23,42,0.1);
  position: relative;
  z-index: 2;
}
.legal-content .meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 28px;
  font-size: 0.88rem;
  color: #6b7280;
}
.legal-content .meta span { display: inline-flex; align-items: center; gap: 6px; }
.legal-content .meta i { color: var(--primary-color); }
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 38px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
  position: relative;
}
.legal-content h2::before { content: ''; position: absolute; bottom: -2px; left: 0; width: 56px; height: 2px; background: var(--primary-color); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 1.08rem; margin-top: 24px; margin-bottom: 10px; color: var(--primary-dark); }
.legal-content p, .legal-content ul, .legal-content ol { font-size: 0.96rem; }
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.92rem; }
.legal-content table th, .legal-content table td { padding: 10px 14px; border: 1px solid var(--border-color); text-align: left; vertical-align: top; }
.legal-content table th { background: var(--light-gray); font-weight: 600; color: var(--secondary-color); }

.info-block { background: var(--primary-light); border-left: 4px solid var(--primary-color); padding: 16px 20px; border-radius: 8px; margin: 20px 0; font-size: 0.94rem; }
.info-block strong { color: var(--primary-dark); }
.warning-block { background: #fff7ed; border-left: 4px solid #f59e0b; padding: 16px 20px; border-radius: 8px; margin: 20px 0; font-size: 0.94rem; }
.warning-block strong { color: #92400e; }
.danger-block { background: #fef2f2; border-left: 4px solid #dc2626; padding: 16px 20px; border-radius: 8px; margin: 20px 0; font-size: 0.94rem; }
.danger-block strong { color: #991b1b; }

.toc { background: var(--light-gray); padding: 22px 26px; border-radius: 14px; margin-bottom: 32px; border: 1px solid var(--border-color); }
.toc h3 { font-size: 0.84rem; color: var(--primary-color); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 12px; }
.toc ol { padding-left: 22px; margin: 0; font-size: 0.92rem; }
.toc ol li { margin-bottom: 5px; }
.toc.toc-2col ol { column-count: 2; column-gap: 30px; }
.toc.toc-2col ol li { break-inside: avoid; }
@media (max-width: 575px) { .toc.toc-2col ol { column-count: 1; } }

/* ── RELATED PAGES BLOCK ── */
.related-pages { background: var(--light-gray); padding: 60px 0; }
.related-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--border-color);
  transition: 0.25s;
  display: block;
  height: 100%;
}
.related-card:hover { transform: translateY(-4px); border-color: var(--primary-color); box-shadow: 0 14px 32px rgba(15,157,183,0.12); }
.related-card h4 { font-size: 1rem; color: var(--secondary-color); margin-bottom: 8px; font-weight: 700; }
.related-card p { font-size: 0.88rem; color: #6b7280; margin: 0; }
.related-card .arrow { color: var(--primary-color); margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.88rem; }

/* ── INQUIRY CTA (banner) ── */
.inquiry-cta { background: var(--gradient-hero); padding: 70px 0; position: relative; overflow: hidden; color: #fff; }
.inquiry-cta::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%); }
.inquiry-cta h2 { color: #fff; font-weight: 800; margin-bottom: 12px; }
.inquiry-cta p { color: rgba(255,255,255,0.9); font-size: 1.05rem; max-width: 640px; margin: 0 auto 24px; }

/* ── FOOTER ── */
footer {
  background: #111827;
  color: #9ca3af;
  padding: 60px 0 28px;
  font-size: 0.9rem;
}
footer strong, .footer-brand { color: #fff; }
footer a { color: #9ca3af; }
footer a:hover { color: #9ae8f5; }
.footer-heading { color: #fff; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: #9ca3af; font-size: 0.87rem; }
.footer-links a:hover { color: #9ae8f5; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: #1f2937; color: #9ca3af; font-size: 1rem; transition: 0.2s; margin-right: 8px; }
.footer-social a:hover { background: var(--primary-color); color: #fff; }
.footer-divider { border-top: 1px solid #374151; padding-top: 24px; margin-top: 48px; }
.footer-desc { font-size: 0.87rem; color: #6b7280; margin: 8px 0 0; line-height: 1.6; max-width: 280px; }

/* ── COOKIE CONSENT ── */
.cookie-consent {
  position: fixed;
  bottom: 24px; left: 24px;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15,23,42,0.2);
  padding: 20px 24px;
  display: flex; gap: 16px;
  align-items: flex-start;
  z-index: 1040;
  border: 1px solid var(--border-color);
  animation: cookie-slide-up 0.5s ease;
}
@keyframes cookie-slide-up { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-consent[hidden] { display: none; }
.cookie-consent-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.cookie-consent-body strong { color: var(--secondary-color); display: block; margin-bottom: 4px; font-size: 0.96rem; }
.cookie-consent-body p { font-size: 0.86rem; color: #6b7280; margin: 0 0 12px; line-height: 1.55; }
.cookie-consent-body a { color: var(--primary-color); font-weight: 500; }
.cookie-consent-actions { display: flex; gap: 6px; align-items: center; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  left: 22px; bottom: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.4);
  z-index: 1029;
  transition: 0.25s;
  text-decoration: none !important;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: wa-pulse 2.5s infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}
.whatsapp-float:hover { transform: translateY(-3px); background: #20bd5a; color: #fff; }
.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  left: 70px;
  background: #1f2937;
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  pointer-events: none;
  transition: 0.25s;
}
.whatsapp-float .whatsapp-tooltip::before {
  content: '';
  position: absolute;
  left: -5px; top: 50%; transform: translateY(-50%);
  border-style: solid;
  border-width: 5px 5px 5px 0;
  border-color: transparent #1f2937 transparent transparent;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
@media (max-width: 767.98px) {
  .whatsapp-float { left: 16px; bottom: 92px; width: 50px; height: 50px; }
  .whatsapp-float .whatsapp-tooltip { display: none; }
}

/* ── MOBILE CTA + SCROLL TOP ── */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 18px rgba(0,0,0,0.08);
  padding: 8px 12px;
  display: none;
  z-index: 1030;
}
.mobile-cta .row { margin: 0; }
.mobile-cta a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 4px; text-align: center;
  color: var(--secondary-color);
  font-size: 0.74rem;
  font-weight: 500;
  border-radius: 10px;
  transition: 0.2s;
}
.mobile-cta a i { font-size: 1.3rem; color: var(--primary-color); }
.mobile-cta a.cta-main { background: var(--primary-color); color: #fff; }
.mobile-cta a.cta-main i { color: #fff; }
.mobile-cta a:hover { background: var(--primary-light); }
.mobile-cta a.cta-main:hover { background: var(--primary-hover); color: #fff; }

.scroll-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 18px rgba(15,157,183,0.4);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.25s;
  z-index: 1029;
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-hover); transform: translateY(-2px); }

/* ── 404 ── */
.error-404 { padding: 80px 0; text-align: center; }
.error-404 .big { font-size: 6rem; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin: 0; }

/* ── THANK YOU PAGE ── */
.thanks-card {
  background: #fff;
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--border-color);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.thanks-card .check-circle {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #10b981;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 3rem;
}
.thanks-card h1 { font-size: 2rem; margin-bottom: 14px; }
.thanks-card p.lead { font-size: 1.08rem; color: #5b6472; max-width: 560px; margin: 0 auto 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 1199.98px) {
  .hero-floater { display: none !important; }
}
@media (max-width: 991.98px) {
  .hero { padding: 80px 0 90px; }
  .hero-points { grid-template-columns: 1fr; }
  .section-title h2 { font-size: 1.85rem; }
  .stat-item .stat-num { font-size: 2rem; }
  .info-strip { padding: 30px 24px; border-radius: 22px; }
  .legal-content { padding: 30px; margin-top: -40px; }
}
@media (max-width: 767.98px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 78px; }
  .scroll-top { bottom: 92px; right: 16px; width: 42px; height: 42px; }
  .legal-content { padding: 26px 22px; margin-top: -30px; border-radius: 18px; }
  .cookie-consent { bottom: 92px; left: 12px; right: 12px; max-width: none; padding: 16px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-color); padding: 12px 6px; }
  .stat-item:nth-last-child(2), .stat-item:last-child { border-bottom: none; }
  .stats-section { margin-top: -40px; }
  .stats-card { padding: 20px 12px; }
}
@media (max-width: 575.98px) {
  section { padding: 60px 0; }
  .ideas-block-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero { padding: 65px 0 80px; }
  .hero h1 { font-size: 1.95rem; }
  .hero-badge { font-size: 0.74rem; padding: 6px 12px; }
  .pricing-column.featured { transform: none; }
  .feature-box .icon { width: 64px; height: 64px; font-size: 1.7rem; }
}
