/* ==========================================================================
   EWEBY Design System
   Starter Theme Design System
   Version: 1.0.0

   Dark / Premium / Glassmorphism
   All selectors prefixed with "eweby-" to avoid conflicts.
   ========================================================================== */


/* ==========================================================================
   1. Design Tokens (CSS Custom Properties)
   ========================================================================== */

:root {
  /* Backgrounds — svetlé, profesionálne (RUTI light theme) */
  --eweby-bg: #ffffff;
  --eweby-surface: #f7f9fc;
  --eweby-surface-hover: #edf2f7;
  --eweby-surface-border: rgba(12, 35, 64, 0.08);

  /* ── BRAND COLORS — RUTI s.r.o. ── */
  --eweby-primary: #2563eb;       /* royal blue */
  --eweby-secondary: #10b981;     /* mint green */
  --eweby-accent: #0ea5e9;        /* sky blue */
  --eweby-teal: #14b8a6;          /* teal — ekologickosť */
  --eweby-emerald: #10b981;       /* green — čistota, príroda */
  --eweby-gradient: linear-gradient(135deg, #2563eb, #0ea5e9, #10b981);

  /* Text Colors — tmavé na svetlom pozadí */
  --eweby-text: #0c2340;
  --eweby-text-muted: #475569;
  --eweby-text-dim: #94a3b8;

  /* Status Colors */
  --eweby-success: #10b981;

  /* Typography */
  --eweby-font-heading: 'Plus Jakarta Sans', 'Space Grotesk', sans-serif;
  --eweby-font-body: 'Inter', sans-serif;

  /* Layout */
  --eweby-radius: 12px;
  --eweby-radius-lg: 20px;
  --eweby-container: 1300px;
}


/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

/* Global reset - ensure no borders/outlines/margins on body/html */
html, body {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-shadow: none;
}

/* Scoped reset - only theme elements, never touches #wpadminbar */
.eweby-header,
.eweby-header *,
.eweby-header *::before,
.eweby-header *::after,
.eweby-main,
.eweby-main *,
.eweby-main *::before,
.eweby-main *::after,
.eweby-footer,
.eweby-footer *,
.eweby-footer *::before,
.eweby-footer *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* WP Admin Bar offset when logged in */
body.admin-bar .eweby-header {
  top: 68px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .eweby-header {
    top: 82px;
  }
}

body.eweby-body {
  background-color: #0a0a0a;
  font-family: var(--eweby-font-body);
  color: var(--eweby-text);
  scroll-behavior: smooth;
  overflow-x: hidden;
  border: none;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

.eweby-main img,
.eweby-header img,
.eweby-footer img {
  max-width: 100%;
  height: auto;
  display: block;
}

.eweby-main a,
.eweby-header a,
.eweby-footer a {
  color: inherit;
  text-decoration: none;
}

.eweby-main ::selection,
.eweby-header ::selection,
.eweby-footer ::selection {
  background-color: var(--eweby-primary);
  color: var(--eweby-bg);
}


/* ==========================================================================
   3. Container
   ========================================================================== */

.eweby-container {
  max-width: var(--eweby-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 769px) {
  .eweby-container {
    padding-left: 48px;
    padding-right: 48px;
  }
}


/* ==========================================================================
   4. Typography
   ========================================================================== */

.eweby-body h1,
.eweby-body h2,
.eweby-body h3,
.eweby-body h4,
.eweby-body h5,
.eweby-body h6 {
  font-family: var(--eweby-font-heading);
  font-weight: 700;
  color: var(--eweby-text);
  line-height: 1.15;
}

.eweby-body h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.eweby-body h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.eweby-body h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.eweby-body h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.eweby-body h5 {
  font-size: 1.125rem;
}

.eweby-body h6 {
  font-size: 1rem;
}

.eweby-gradient-text {
  background: var(--eweby-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eweby-body p {
  line-height: 1.7;
  color: var(--eweby-text-muted);
}


/* ==========================================================================
   5. Glassmorphism
   ========================================================================== */

.eweby-glass {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(12, 35, 64, 0.06);
  border-radius: var(--eweby-radius);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.eweby-glass:hover {
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 0 8px 32px rgba(12, 35, 64, 0.08);
  background: #ffffff;
}


/* ==========================================================================
   6. Buttons
   ========================================================================== */

.eweby-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--eweby-radius);
  font-weight: 500;
  font-size: 0.95rem;
  font-family: var(--eweby-font-body);
  line-height: 1.5;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.eweby-btn:hover {
  transform: translateY(-2px);
}

.eweby-btn:active {
  transform: translateY(0);
}

/* Primary */
.eweby-btn--primary {
  background: var(--eweby-secondary);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.eweby-btn--primary:hover {
  background: #0d9668;
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.35);
}

/* Ghost */
.eweby-btn--ghost {
  background: transparent;
  color: var(--eweby-text);
  border: 1px solid rgba(12, 35, 64, 0.15);
}

.eweby-btn--ghost:hover {
  border-color: var(--eweby-primary);
  color: var(--eweby-primary);
  background: rgba(37, 99, 235, 0.04);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

/* White */
.eweby-btn--white {
  background: #ffffff;
  color: #0c2340;
}

.eweby-btn--white:hover {
  background: #f0f4f8;
  box-shadow: 0 8px 32px rgba(12, 35, 64, 0.12);
}

/* Ghost White */
.eweby-btn--ghost-white {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.eweby-btn--ghost-white:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* Size: Small */
.eweby-btn--sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* Size: Large */
.eweby-btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 14px;
}

/* Size: Extra Large */
.eweby-btn--xl {
  padding: 20px 44px;
  font-size: 1.1rem;
  border-radius: 16px;
}


/* ==========================================================================
   7a. Ruti Top Info Bar — HIDDEN
   ========================================================================== */

.ruti-topbar {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* ==========================================================================
   7b. Header
   ========================================================================== */

.eweby-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}

.eweby-header.is-scrolled {
  background: rgba(12, 35, 64, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.eweby-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  gap: 32px;
}

/* Logo */
.eweby-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.eweby-logo__custom-img {
  height: auto;
  width: auto;
  max-height: 48px;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* Logo #2a2927 - invert to white for visibility on dark backgrounds */
  filter: brightness(0) invert(1);
}

.eweby-logo__name {
  font-family: var(--eweby-font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--eweby-text);
}

.eweby-logo__dot {
  color: var(--eweby-primary);
}

/* Navigation */
.eweby-nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.eweby-nav__link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.eweby-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--eweby-gradient);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.eweby-nav__link:hover {
  color: #34d399;
}

.eweby-nav__link:hover::after {
  width: 100%;
  background: #34d399;
}

.eweby-nav__item.is-active .eweby-nav__link {
  color: white;
}

.eweby-nav__item.is-active .eweby-nav__link::after {
  width: 100%;
}

/* Header CTA */
.eweby-header__cta {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Hamburger */
.eweby-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.eweby-hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.eweby-hamburger.is-active .eweby-hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.eweby-hamburger.is-active .eweby-hamburger__line:nth-child(2) {
  opacity: 0;
}

.eweby-hamburger.is-active .eweby-hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ==========================================================================
   8. Hero Section
   ========================================================================== */

.eweby-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.eweby-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.eweby-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 20%, rgba(16, 185, 129, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 15% 50%, rgba(14, 165, 233, 0.06) 0%, transparent 55%);
  pointer-events: none;
  animation: eweby-hero-glow 8s ease-in-out infinite alternate;
}

@keyframes eweby-hero-glow {
  0% { opacity: 0.8; filter: hue-rotate(0deg); }
  50% { opacity: 1; filter: hue-rotate(15deg); }
  100% { opacity: 0.9; filter: hue-rotate(-10deg); }
}

.eweby-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Badge */
.eweby-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-size: 0.875rem;
  color: #34d399;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.eweby-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--eweby-success);
  animation: eweby-pulse 2s ease-in-out infinite;
}

/* Title */
.eweby-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  font-family: var(--eweby-font-heading);
  color: var(--eweby-text);
}

/* Subtitle */
.eweby-hero__subtitle {
  font-size: 1.125rem;
  color: var(--eweby-text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Actions */
.eweby-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.eweby-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.eweby-hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--eweby-primary));
  animation: eweby-scrollDown 2s ease-in-out infinite;
  transform-origin: top;
}


/* ==========================================================================
   9. Tags / Badges (reusable)
   ========================================================================== */

.eweby-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--eweby-primary);
  white-space: nowrap;
  font-family: var(--eweby-font-body);
}

.eweby-tag--sm {
  padding: 4px 10px;
  font-size: 0.75rem;
}


/* ==========================================================================
   10. Section Layout
   ========================================================================== */

.eweby-section {
  padding: 120px 0;
}

.eweby-section--dark {
  background: var(--eweby-surface);
  border-top: 1px solid var(--eweby-surface-border);
  border-bottom: 1px solid var(--eweby-surface-border);
  position: relative;
}

.eweby-section--dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--eweby-gradient);
  opacity: 0.15;
}

.eweby-section--stats {
  background: var(--eweby-surface);
  border-top: 1px solid var(--eweby-surface-border);
  border-bottom: 1px solid var(--eweby-surface-border);
}

.eweby-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.eweby-section-header__label {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 3px;
  background: var(--eweby-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--eweby-primary);
  font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--eweby-font-body);
}

.eweby-section-header__title {
  margin-bottom: 16px;
}

.eweby-section-header__desc {
  color: var(--eweby-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}


/* ==========================================================================
   11. Services Grid
   ========================================================================== */

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

.eweby-service-card {
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eweby-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(12, 35, 64, 0.1);
}

/* Colored top accent border per service card */
.eweby-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.eweby-service-card:hover::after { opacity: 1; }
.eweby-service-card:nth-child(1)::after { background: linear-gradient(90deg, #06b6d4, #3b82f6); }
.eweby-service-card:nth-child(2)::after { background: linear-gradient(90deg, #3b82f6, #10b981); }
.eweby-service-card:nth-child(3)::after { background: linear-gradient(90deg, #10b981, #06b6d4); }
.eweby-service-card:nth-child(4)::after { background: linear-gradient(90deg, #f59e0b, #f97316); }
.eweby-service-card:nth-child(5)::after { background: linear-gradient(90deg, #0ea5e9, #3b82f6); }
.eweby-service-card:nth-child(6)::after { background: linear-gradient(90deg, #10b981, #f59e0b); }

/* Colored hover glow per service card */
.eweby-service-card:nth-child(1):hover { box-shadow: 0 12px 40px rgba(6, 182, 212, 0.12); }
.eweby-service-card:nth-child(2):hover { box-shadow: 0 12px 40px rgba(59, 130, 246, 0.12); }
.eweby-service-card:nth-child(3):hover { box-shadow: 0 12px 40px rgba(16, 185, 129, 0.12); }
.eweby-service-card:nth-child(4):hover { box-shadow: 0 12px 40px rgba(245, 158, 11, 0.12); }
.eweby-service-card:nth-child(5):hover { box-shadow: 0 12px 40px rgba(14, 165, 233, 0.12); }
.eweby-service-card:nth-child(6):hover { box-shadow: 0 12px 40px rgba(16, 185, 129, 0.12); }

.eweby-service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--eweby-gradient);
  border-radius: 12px;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* Each service card gets a unique color for visual variety */
.eweby-service-card:nth-child(1) .eweby-service-card__icon {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}
.eweby-service-card:nth-child(2) .eweby-service-card__icon {
  background: linear-gradient(135deg, #3b82f6, #10b981);
}
.eweby-service-card:nth-child(3) .eweby-service-card__icon {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}
.eweby-service-card:nth-child(4) .eweby-service-card__icon {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}
.eweby-service-card:nth-child(5) .eweby-service-card__icon {
  background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}
.eweby-service-card:nth-child(6) .eweby-service-card__icon {
  background: linear-gradient(135deg, #10b981, #f59e0b);
}

.eweby-service-card__title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: var(--eweby-font-heading);
  color: var(--eweby-text);
}

.eweby-service-card__desc {
  color: var(--eweby-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}


/* ==========================================================================
   12. Stats
   ========================================================================== */

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

.eweby-stat__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  font-family: var(--eweby-font-heading);
  background: var(--eweby-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.2;
}

.eweby-stat__suffix {
  font-family: var(--eweby-font-heading);
  font-weight: 700;
  background: var(--eweby-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Each stat gets a unique color */
.eweby-stat:nth-child(1) .eweby-stat__number,
.eweby-stat:nth-child(1) .eweby-stat__suffix {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text; background-clip: text;
}
.eweby-stat:nth-child(2) .eweby-stat__number,
.eweby-stat:nth-child(2) .eweby-stat__suffix {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  -webkit-background-clip: text; background-clip: text;
}
.eweby-stat:nth-child(3) .eweby-stat__number,
.eweby-stat:nth-child(3) .eweby-stat__suffix {
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text; background-clip: text;
}
.eweby-stat:nth-child(4) .eweby-stat__number,
.eweby-stat:nth-child(4) .eweby-stat__suffix {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  -webkit-background-clip: text; background-clip: text;
}

.eweby-stat__label {
  display: block;
  color: var(--eweby-text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}


/* ==========================================================================
   13. Process Section
   ========================================================================== */

.eweby-process {
  position: relative;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.eweby-process__line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--eweby-primary), var(--eweby-secondary));
  opacity: 0.3;
}

.eweby-process__step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.eweby-process__step:last-child {
  margin-bottom: 0;
}

.eweby-process__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--eweby-font-heading);
  background: var(--eweby-gradient);
  border-radius: 50%;
  color: #ffffff;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.25);
}

/* Unique color per process step */
.eweby-process__step:nth-child(1) .eweby-process__number {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}
.eweby-process__step:nth-child(2) .eweby-process__number {
  background: linear-gradient(135deg, #3b82f6, #10b981);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}
.eweby-process__step:nth-child(3) .eweby-process__number {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}
.eweby-process__step:nth-child(4) .eweby-process__number {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.eweby-process__content {
  padding: 12px 0 24px;
  flex: 1;
}

.eweby-process__content h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-family: var(--eweby-font-heading);
  color: var(--eweby-text);
}

.eweby-process__content p {
  color: var(--eweby-text-muted);
  line-height: 1.6;
}


/* ==========================================================================
   14. Testimonials
   ========================================================================== */

.eweby-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eweby-testimonial {
  padding: 32px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.eweby-testimonial:nth-child(1) { border-image: linear-gradient(180deg, #06b6d4, #3b82f6) 1; }
.eweby-testimonial:nth-child(2) { border-image: linear-gradient(180deg, #3b82f6, #10b981) 1; }
.eweby-testimonial:nth-child(3) { border-image: linear-gradient(180deg, #f59e0b, #f97316) 1; }

.eweby-testimonial__stars {
  color: var(--eweby-accent);
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  font-size: 1rem;
}

.eweby-testimonial__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--eweby-text);
  margin-bottom: 20px;
  font-style: italic;
}

.eweby-testimonial__name {
  font-weight: 600;
  display: block;
  color: var(--eweby-text);
  font-family: var(--eweby-font-heading);
}

.eweby-testimonial__role {
  color: var(--eweby-text-muted);
  font-size: 0.875rem;
}


/* ==========================================================================
   15. CTA Section
   ========================================================================== */

.eweby-section--cta {
  padding: 160px 0;
}

.eweby-cta {
  text-align: center;
  position: relative;
  padding: 80px 40px;
  border-radius: var(--eweby-radius-lg);
  overflow: hidden;
  background: #0a0a0a;
  border: none;
  color: #ffffff;
}

.eweby-cta__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(250, 204, 21, 0.08), transparent),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(245, 158, 11, 0.06), transparent);
  z-index: 0;
  pointer-events: none;
}

.eweby-cta__title {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--eweby-font-heading);
  color: #ffffff;
  margin-bottom: 16px;
}

.eweby-cta__desc {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.eweby-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ==========================================================================
   16. Blog / Posts Grid
   ========================================================================== */

.eweby-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eweby-post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.eweby-post-card:hover {
  transform: translateY(-4px);
}

.eweby-post-card__image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.eweby-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.eweby-post-card:hover .eweby-post-card__image img {
  transform: scale(1.05);
}

.eweby-post-card__content {
  padding: 24px;
}

.eweby-post-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.eweby-post-card__date {
  font-size: 0.8rem;
  color: var(--eweby-text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.eweby-post-card__reading-time {
  font-size: 0.8rem;
  color: var(--eweby-text-dim);
}

.eweby-post-card .eweby-post-card__title {
  font-size: 1.15rem;
  margin: 0 0 12px;
  font-family: var(--eweby-font-heading);
  line-height: 1.35;
}

.eweby-post-card__title a {
  color: var(--eweby-text);
  transition: all 0.3s ease;
}

.eweby-post-card__title a:hover {
  background: var(--eweby-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eweby-post-card__excerpt {
  color: var(--eweby-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}


/* ==========================================================================
   17. Links
   ========================================================================== */

.eweby-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--eweby-primary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: gap 0.3s ease, color 0.3s ease;
}

.eweby-link:hover {
  gap: 10px;
  color: var(--eweby-secondary);
}

/* Service cards get matching link colors */
.eweby-service-card:nth-child(1) .eweby-link { color: #06b6d4; }
.eweby-service-card:nth-child(2) .eweby-link { color: #38bdf8; }
.eweby-service-card:nth-child(3) .eweby-link { color: #34d399; }
.eweby-service-card:nth-child(4) .eweby-link { color: #fbbf24; }
.eweby-service-card:nth-child(5) .eweby-link { color: #22d3ee; }
.eweby-service-card:nth-child(6) .eweby-link { color: #2dd4bf; }


/* ==========================================================================
   18. Footer
   ========================================================================== */

/* Ruti unique footer — dark background */
.ruti-footer.eweby-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.8);
  border-top: none;
}

.ruti-footer .eweby-logo__custom-img {
  filter: brightness(0) invert(1);
}

.ruti-footer .eweby-logo__name {
  color: #ffffff;
}

.ruti-footer .eweby-footer__tagline {
  color: rgba(255, 255, 255, 0.55);
}

.ruti-footer .eweby-footer__heading,
.eweby-footer h3.eweby-footer__heading {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
}

.ruti-footer .eweby-footer__list a,
.ruti-footer .eweby-footer__list li {
  color: rgba(255, 255, 255, 0.65);
}

.ruti-footer .eweby-footer__list a:hover {
  color: #facc15;
}

.ruti-footer .eweby-footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.ruti-footer .eweby-footer__copy,
.ruti-footer .eweby-footer__legal a {
  color: rgba(255, 255, 255, 0.4);
}

.ruti-footer .eweby-footer__legal a:hover {
  color: #34d399;
}

/* Billing info in contact column */
.eweby-footer__heading--sub {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
}

.eweby-footer__list--billing {
  font-size: 0.8rem;
}

.eweby-footer__list--billing li {
  color: rgba(255, 255, 255, 0.5);
  padding: 2px 0;
}

.ruti-footer__badges {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.ruti-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #facc15;
}

.eweby-footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--eweby-surface-border);
  position: relative;
}

.eweby-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--eweby-gradient);
  opacity: 0.15;
}

.ruti-footer.eweby-footer::before {
  display: none;
}

.eweby-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.eweby-footer__tagline {
  color: var(--eweby-text-muted);
  margin-top: 12px;
  line-height: 1.7;
}

.eweby-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.eweby-footer__heading {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--eweby-text-dim);
  margin-bottom: 14px;
  font-family: var(--eweby-font-body);
  font-weight: 600;
}

.eweby-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eweby-footer__list li {
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.eweby-footer__list a {
  color: var(--eweby-text-muted);
  transition: color 0.3s ease;
  font-size: inherit;
}

.eweby-footer__list a:hover {
  color: var(--eweby-primary);
}

.eweby-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--eweby-surface-border);
}

.eweby-footer__copy {
  color: var(--eweby-text-dim);
  font-size: 0.85rem;
}

.eweby-footer__legal {
  display: flex;
  gap: 24px;
}

.eweby-footer__legal a {
  color: var(--eweby-text-muted, #94a3b8);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.eweby-footer__legal a:hover {
  color: var(--eweby-text, #fff);
}


/* ==========================================================================
   19. Breadcrumbs
   ========================================================================== */

.eweby-breadcrumbs {
  margin-bottom: 24px;
}

.eweby-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.eweby-breadcrumbs__link {
  color: var(--eweby-text-muted);
  transition: color 0.3s ease;
}

.eweby-breadcrumbs__link:hover {
  color: var(--eweby-primary);
}

.eweby-breadcrumbs__sep {
  color: var(--eweby-text-dim);
}

.eweby-breadcrumbs__current {
  color: var(--eweby-text-dim);
}


/* ==========================================================================
   20. Page Header
   ========================================================================== */

.eweby-page-header {
  padding: 170px 0 60px;
}

.eweby-page-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--eweby-font-heading);
  color: var(--eweby-text);
}


/* ==========================================================================
   21. Back to Top Button
   ========================================================================== */

/* Totop lives inside .eweby-float-btns, inherits .eweby-float-btn base styles */
.eweby-totop {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              background 0.3s ease,
              box-shadow 0.3s ease,
              opacity 0.3s ease,
              visibility 0.3s ease,
              transform 0.3s ease;
  cursor: pointer;
}

.eweby-totop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.eweby-float-btn--totop {
  border-color: rgba(6, 182, 212, 0.2);
}

.eweby-float-btn--totop .eweby-float-btn__icon {
  color: var(--eweby-primary);
}

.eweby-float-btn--totop:hover {
  border-color: rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.06);
  box-shadow: 0 4px 24px rgba(12, 35, 64, 0.1),
              0 0 20px rgba(37, 99, 235, 0.1);
}


/* ==========================================================================
   22. Cursor Glow
   ========================================================================== */

.eweby-cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, rgba(16, 185, 129, 0.04) 30%, rgba(59, 130, 246, 0.02) 50%, transparent 70%);
  transition: transform 0.1s ease;
  will-change: transform;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

@media (hover: none), (pointer: coarse) {
  .eweby-cursor-glow {
    display: none;
  }
}


/* ==========================================================================
   23. Content Styling (Blog posts, pages)
   ========================================================================== */

.eweby-content {
  max-width: none;
}

.eweby-content p {
  margin-bottom: 1.5em;
  line-height: 1.8;
}

.eweby-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin: 2em 0 0.75em;
}

.eweby-content h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin: 2em 0 0.75em;
}

.eweby-content h4 {
  font-size: 1.1rem;
  margin: 2em 0 0.75em;
}

.eweby-content ul,
.eweby-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
  color: var(--eweby-text-muted);
  line-height: 1.8;
}

.eweby-content li {
  margin-bottom: 0.5em;
}

.eweby-content img {
  border-radius: var(--eweby-radius);
  margin: 2em 0;
}

.eweby-content blockquote {
  border-left: 3px solid var(--eweby-primary);
  padding-left: 20px;
  margin: 2em 0;
  color: var(--eweby-text-muted);
  font-style: italic;
}

.eweby-content a {
  color: var(--eweby-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: text-decoration 0.3s ease;
}

.eweby-content a:hover {
  text-decoration: none;
}

.eweby-content code {
  background: var(--eweby-surface);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.eweby-content pre {
  background: var(--eweby-surface);
  padding: 20px;
  border-radius: var(--eweby-radius);
  overflow-x: auto;
  margin: 2em 0;
  border: 1px solid var(--eweby-surface-border);
}

.eweby-content pre code {
  background: none;
  padding: 0;
  border-radius: 0;
}


/* ==========================================================================
   24. Empty State
   ========================================================================== */

.eweby-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--eweby-text-muted);
}


/* ==========================================================================
   25. Keyframe Animations
   ========================================================================== */

@keyframes eweby-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes eweby-scrollDown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}


/* ==========================================================================
   26. Responsive - Tablet (max-width: 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
  .eweby-section {
    padding: 80px 0;
  }

  .eweby-section--cta {
    padding: 100px 0;
  }

  .eweby-section-header {
    margin-bottom: 48px;
  }

  .eweby-stats {
    gap: 24px;
  }

  .eweby-footer__top {
    gap: 40px;
  }
}


/* ==========================================================================
   27. Responsive - Mobile (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
  /* ── Mobile Navigation ─────────────────────────────────── */
  .eweby-hamburger {
    display: flex;
  }

  .eweby-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.98);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    padding: 80px 24px 40px;
  }

  .eweby-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .eweby-nav__list {
    flex-direction: column;
    gap: 28px;
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .eweby-nav__link {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    display: block;
  }

  .eweby-nav__link::after {
    display: none;
  }

  .eweby-header__cta {
    display: none;
  }

  /* ── Hero Section Mobile ───────────────────────────────── */
  .eweby-hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .eweby-hero__content {
    text-align: center;
    max-width: 100%;
    padding: 0;
  }

  .eweby-hero__title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .eweby-hero__subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .eweby-hero__badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .eweby-hero__scroll {
    display: none;
  }

  /* ── Section Spacing ───────────────────────────────────── */
  .eweby-section {
    padding: 64px 0;
  }

  .eweby-section--cta {
    padding: 80px 0;
  }

  .eweby-section-header {
    margin-bottom: 40px;
  }

  .eweby-section-header__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* ── Grids ─────────────────────────────────────────────── */
  .eweby-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .eweby-service-card {
    padding: 24px 20px;
  }

  .eweby-service-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .eweby-service-card__title {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .eweby-service-card__desc {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .eweby-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .eweby-testimonials {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .eweby-posts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ── Footer ────────────────────────────────────────────── */
  .eweby-footer {
    padding: 60px 0 32px;
  }

  .eweby-footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .eweby-footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .eweby-footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .eweby-footer__legal {
    justify-content: center;
  }

  /* ── CTA ────────────────────────────────────────────────── */
  .eweby-cta {
    padding: 48px 24px;
  }

  /* ── Page Header ────────────────────────────────────────── */
  .eweby-page-header {
    padding: 130px 0 32px;
  }

  .eweby-page-header__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* ── Process ────────────────────────────────────────────── */
  .eweby-process__line {
    display: none;
  }

  .eweby-process__step {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .eweby-process__number {
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
  }

  .eweby-process__content {
    padding: 16px 20px 20px;
    background: var(--eweby-surface);
    border: 1px solid var(--eweby-surface-border);
    border-radius: var(--eweby-radius, 12px);
  }

  /* ── Article / Blog Mobile ─────────────────────────────── */
  .eweby-article-header__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .eweby-article-header__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .eweby-author-box {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  /* ── Contact Grid Mobile ───────────────────────────────── */
  .eweby-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* ── Floating Buttons Mobile — handled by standalone @media block ── */

  /* ── Showcase Mobile ───────────────────────────────────── */
  .eweby-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .eweby-showcase--reverse {
    direction: ltr;
  }

  /* ── Pricing Mobile ─────────────────────────────────────── */
  .eweby-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .eweby-pricing-card--featured {
    transform: none;
  }

  /* ── Breadcrumbs Mobile ─────────────────────────────────── */
  .eweby-breadcrumbs__list {
    font-size: 0.75rem;
    flex-wrap: wrap;
  }
}


/* ==========================================================================
   28. Responsive - Small Mobile (max-width: 480px)
   ========================================================================== */

@media (max-width: 480px) {
  /* Single columns */
  .eweby-services-grid {
    grid-template-columns: 1fr;
  }

  .eweby-footer__links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Service card */
  .eweby-service-card {
    padding: 24px;
  }

  /* Hero */
  .eweby-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .eweby-hero__actions .eweby-btn {
    width: 100%;
    max-width: 280px;
  }

  /* CTA */
  .eweby-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  /* Stats */
  .eweby-stats {
    gap: 24px;
  }

  /* Testimonial */
  .eweby-testimonial {
    padding: 24px;
  }

  /* Back to top — now inside .eweby-float-btns, no positioning override needed */

  /* 404 Actions */
  .eweby-404__actions {
    flex-direction: column;
    align-items: center;
  }

  /* Nav links smaller */
  .eweby-nav__link {
    font-size: 1.25rem;
  }
}


/* ==========================================================================
   29. Article / Blog Single Styles
   ========================================================================== */

.eweby-article-header {
  max-width: 800px;
}

.eweby-article-header__cats {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.eweby-article-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.eweby-article-header__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--eweby-text-muted);
  font-size: 0.9rem;
}

.eweby-article-header__date,
.eweby-article-header__reading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.eweby-section--no-pad-top {
  padding-top: 0;
}

.eweby-article-image {
  border-radius: var(--eweby-radius-lg);
  overflow: hidden;
}

.eweby-article-image__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  max-height: 500px;
  margin: 0 auto;
}

.eweby-article-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--eweby-surface-border);
}

.eweby-article-tags__label {
  color: var(--eweby-text-dim);
  font-size: 0.85rem;
  font-weight: 500;
}

.eweby-article-tags__list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Author Box */
.eweby-author-box {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  max-width: 720px;
  margin: 0 auto;
}

.eweby-author-box__avatar {
  flex-shrink: 0;
}

.eweby-author-box__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.eweby-author-box__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--eweby-text-dim);
  margin-bottom: 4px;
}

.eweby-author-box__name {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-family: var(--eweby-font-heading);
}

.eweby-author-box__bio {
  color: var(--eweby-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .eweby-author-box {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}


/* ==========================================================================
   30. 404 Page Styles
   ========================================================================== */

.eweby-404 {
  text-align: center;
  padding: 40px 0 80px;
}

.eweby-404__number {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  font-family: var(--eweby-font-heading);
  line-height: 1;
  margin-bottom: 16px;
  background: var(--eweby-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0.4;
}

.eweby-404__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  font-family: var(--eweby-font-heading);
  color: var(--eweby-text);
}

.eweby-404__desc {
  color: var(--eweby-text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.eweby-404__terminal {
  max-width: 500px;
  margin: 0 auto 40px;
  text-align: left;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.85rem;
  overflow: hidden;
}

.eweby-404__terminal-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--eweby-surface-border);
}

.eweby-404__terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.eweby-404__terminal-dot--red { background: #ff5f56; }
.eweby-404__terminal-dot--yellow { background: #ffbd2e; }
.eweby-404__terminal-dot--green { background: #27c93f; }

.eweby-404__terminal-title {
  margin-left: 8px;
  color: var(--eweby-text-dim);
  font-size: 0.75rem;
}

.eweby-404__terminal-body {
  padding: 16px;
}

.eweby-404__terminal-body code {
  color: var(--eweby-text-muted);
  background: none;
  padding: 0;
}

.eweby-404__terminal-prompt {
  color: var(--eweby-primary);
}

.eweby-404__terminal-error {
  color: #ff5f56;
}

.eweby-404__terminal-cursor {
  animation: eweby-pulse 1s step-end infinite;
}

.eweby-404__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .eweby-404__actions {
    flex-direction: column;
    align-items: center;
  }
}


/* ==========================================================================
   31. Contact Section Styles
   ========================================================================== */

.eweby-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.eweby-contact-card {
  padding: 32px;
}

.eweby-contact-card__heading {
  font-family: var(--eweby-font-heading);
  font-size: 1.25rem;
  color: var(--eweby-text);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, rgba(14, 165, 233, 0.4), rgba(16, 185, 129, 0.2), transparent) 1;
}

.eweby-contact-card__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--eweby-surface-border);
}

.eweby-contact-card__item:last-child {
  border-bottom: none;
}

.eweby-contact-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--eweby-text-dim);
  font-weight: 500;
}

.eweby-contact-card__value {
  font-size: 1rem;
  color: var(--eweby-text);
  line-height: 1.5;
}

.eweby-contact-card__link {
  color: var(--eweby-primary) !important;
  transition: opacity 0.2s;
}

.eweby-contact-card__link:hover {
  opacity: 0.8;
}

/* Contact Action Buttons */
.eweby-contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.eweby-contact-actions .eweby-btn {
  flex: 1;
  min-width: 120px;
  justify-content: center;
}

/* Social Links */
.eweby-contact-social {
  margin-top: 32px;
}

.eweby-contact-social__text {
  color: var(--eweby-text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.eweby-contact-social__links {
  display: flex;
  gap: 12px;
}

.eweby-contact-social__link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--eweby-text-muted);
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.eweby-contact-social__link:hover {
  transform: translateY(-2px);
}

/* Facebook */
.eweby-contact-social__link:nth-child(1):hover {
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}

/* Instagram */
.eweby-contact-social__link:nth-child(2):hover {
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

@media (max-width: 768px) {
  .eweby-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .eweby-contact-actions {
    flex-direction: column;
  }

  .eweby-contact-actions .eweby-btn {
    width: 100%;
  }
}


/* ==========================================================================
   32. Pricing Cards
   ========================================================================== */

.eweby-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.eweby-pricing-card {
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.eweby-pricing-card--featured {
  border-color: rgba(14, 165, 233, 0.4);
  transform: scale(1.04);
}

.eweby-pricing-card--featured::before {
  content: 'Najpopulárnejší';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--eweby-gradient);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.eweby-pricing-card__name {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--eweby-text-dim);
  margin-bottom: 8px;
}

.eweby-pricing-card__price {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--eweby-font-heading);
  background: var(--eweby-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  margin-bottom: 4px;
}

.eweby-pricing-card__period {
  color: var(--eweby-text-dim);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.eweby-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.eweby-pricing-card__features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--eweby-surface-border);
  color: var(--eweby-text-muted);
  font-size: 0.9rem;
}

.eweby-pricing-card__features li::before {
  content: '✓ ';
  color: var(--eweby-primary);
  font-weight: 600;
}

@media (max-width: 900px) {
  .eweby-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .eweby-pricing-card--featured {
    transform: none;
  }
}


/* ==========================================================================
   34. Scroll Progress Bar
   ========================================================================== */

.eweby-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--eweby-gradient);
  z-index: 9999;
  transition: none;
  pointer-events: none;
}

body.admin-bar .eweby-scroll-progress {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .eweby-scroll-progress {
    top: 46px;
  }
}


/* ==========================================================================
   35. Custom Cursor (Desktop only)
   ========================================================================== */

.eweby-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(12, 35, 64, 0.25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.05s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
}

.eweby-cursor--dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--eweby-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
}

.eweby-cursor.is-hover {
  width: 50px;
  height: 50px;
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(37, 99, 235, 0.04);
}

.eweby-cursor.is-click {
  transform: translate(-50%, -50%) scale(0.8);
}

@media (hover: none), (pointer: coarse) {
  .eweby-cursor,
  .eweby-cursor--dot {
    display: none;
  }
}


/* ==========================================================================
   36. Noise Texture Overlay (Premium feel)
   ========================================================================== */

.eweby-noise {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}


/* ==========================================================================
   38. SVG Wave Section Dividers
   ========================================================================== */

.eweby-wave {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -2px;
}

.eweby-wave--flip {
  transform: rotate(180deg);
  margin-top: -2px;
  margin-bottom: 0;
}


/* ==========================================================================
   40. Rotating Gradient Border (CTA & Featured Cards)
   ========================================================================== */

.eweby-glow-border {
  position: relative;
  isolation: isolate;
}

.eweby-glow-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--eweby-border-angle, 0deg), #06b6d4, #0ea5e9, #3b82f6, #10b981, #f59e0b, #10b981, #06b6d4);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: eweby-rotate-border 4s linear infinite;
  opacity: 0.6;
  z-index: -1;
}

@keyframes eweby-rotate-border {
  0% { --eweby-border-angle: 0deg; }
  100% { --eweby-border-angle: 360deg; }
}

@property --eweby-border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}


/* ==========================================================================
   41. About / Showcase Image Section
   ========================================================================== */

.eweby-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.eweby-showcase--reverse {
  direction: rtl;
}

.eweby-showcase--reverse > * {
  direction: ltr;
}

.eweby-showcase__visual {
  position: relative;
  border-radius: var(--eweby-radius-lg);
  overflow: hidden;
}

.eweby-showcase__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--eweby-radius-lg);
  border: 1px solid rgba(14, 165, 233, 0.15);
}

.eweby-showcase__video {
  width: 100%;
  border-radius: var(--eweby-radius-lg);
  border: 1px solid rgba(14, 165, 233, 0.15);
  background: var(--eweby-surface);
}

.eweby-showcase__badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(12, 35, 64, 0.08);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--eweby-text);
  font-weight: 500;
}

.eweby-showcase__content {
  max-width: 500px;
}

.eweby-showcase__content h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
  font-family: var(--eweby-font-heading);
  color: var(--eweby-text);
}

.eweby-showcase__content p {
  color: var(--eweby-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.eweby-showcase__features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.eweby-showcase__features li {
  padding: 8px 0;
  color: var(--eweby-text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.eweby-showcase__features li::before {
  display: none;
}

.eweby-showcase__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.15);
  color: var(--eweby-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .eweby-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .eweby-showcase--reverse {
    direction: ltr;
  }
}


/* ==========================================================================
   43. Pagination
   ========================================================================== */

.eweby-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.eweby-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--eweby-surface-border);
  background: var(--eweby-surface);
  color: var(--eweby-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.eweby-pagination .page-numbers:hover {
  border-color: rgba(14, 165, 233, 0.4);
  color: var(--eweby-text);
}

.eweby-pagination .page-numbers.current {
  background: var(--eweby-gradient);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
}

.eweby-pagination .prev,
.eweby-pagination .next {
  width: auto;
  padding: 0 16px;
  font-size: 1.1rem;
}

.eweby-pagination .dots {
  border: none;
  background: transparent;
  color: var(--eweby-text-dim);
}


/* ==========================================================================
   44. Blog Slider (Homepage)
   ========================================================================== */

.eweby-blog-slider {
  position: relative;
  overflow: hidden;
}

.eweby-blog-slider__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.eweby-blog-slider__track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.eweby-blog-slider__slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

@media (max-width: 1024px) {
  .eweby-blog-slider__slide {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .eweby-blog-slider__slide {
    flex: 0 0 100%;
  }
}

.eweby-blog-slider__card {
  border-radius: var(--eweby-radius, 12px);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.eweby-blog-slider__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--eweby-surface);
}

.eweby-blog-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.eweby-blog-slider__card:hover .eweby-blog-slider__image img {
  transform: scale(1.05);
}

.eweby-blog-slider__body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.eweby-blog-slider__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--eweby-text-dim);
  margin-bottom: 10px;
}

.eweby-blog-slider__title {
  font-family: var(--eweby-font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}

.eweby-blog-slider__title a {
  color: var(--eweby-text, #fff);
  text-decoration: none;
}

.eweby-blog-slider__title a:hover {
  background: var(--eweby-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eweby-blog-slider__excerpt {
  color: var(--eweby-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.eweby-blog-slider__cat {
  display: inline-flex;
  padding: 3px 10px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 100px;
  color: var(--eweby-primary);
  font-size: 0.7rem;
  font-weight: 500;
  margin-bottom: 12px;
  align-self: flex-start;
  text-decoration: none;
  transition: background 0.3s ease;
}

.eweby-blog-slider__cat:hover {
  background: rgba(14, 165, 233, 0.2);
}

/* Slider Controls */
.eweby-blog-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.eweby-blog-slider__btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--eweby-surface-border);
  border-radius: 50%;
  background: var(--eweby-surface);
  color: var(--eweby-text-muted);
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.eweby-blog-slider__btn:hover {
  color: var(--eweby-text);
  border-color: rgba(14, 165, 233, 0.4);
  background: rgba(14, 165, 233, 0.1);
}

.eweby-blog-slider__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.eweby-blog-slider__dots {
  display: flex;
  gap: 8px;
}

.eweby-blog-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--eweby-surface-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.eweby-blog-slider__dot.is-active {
  background: var(--eweby-primary);
  transform: scale(1.3);
}


/* ==========================================================================
   44b. Generic Slider
   ========================================================================== */

.eweby-slider {
  position: relative;
  overflow: hidden;
}

.eweby-slider__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.eweby-slider__track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.eweby-slider__slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

@media (max-width: 1024px) {
  .eweby-slider__slide {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .eweby-slider__slide {
    flex: 0 0 100%;
  }
}

.eweby-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.eweby-slider__btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--eweby-surface-border);
  border-radius: 50%;
  background: var(--eweby-surface);
  color: var(--eweby-text-muted);
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.eweby-slider__btn:hover {
  color: var(--eweby-text);
  border-color: rgba(14, 165, 233, 0.4);
  background: rgba(14, 165, 233, 0.1);
}

.eweby-slider__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.eweby-slider__dots {
  display: flex;
  gap: 8px;
}

.eweby-slider__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: transform 0.3s ease;
}

.eweby-slider__dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--eweby-surface-border);
  transition: background 0.3s ease, transform 0.3s ease;
}

.eweby-slider__dot.is-active::after {
  background: var(--eweby-primary);
  transform: translate(-50%, -50%) scale(1.3);
}

.eweby-slider__dot:hover:not(.is-active)::after {
  background: var(--eweby-text-dim);
}


/* ==========================================================================
   45. Floating Contact Buttons
   ========================================================================== */

.eweby-float-btns {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.eweby-float-btn {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(12, 35, 64, 0.08);
  border-radius: 50px;
  padding: 12px;
  color: var(--eweby-text);
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              background 0.3s ease,
              box-shadow 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(12, 35, 64, 0.1),
              0 0 0 1px rgba(12, 35, 64, 0.04);
  pointer-events: auto;
}

/* Default subtle tints per button type */
.eweby-float-btn--phone {
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 24px rgba(12, 35, 64, 0.08),
              0 0 12px rgba(16, 185, 129, 0.08);
}

.eweby-float-btn--email {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 4px 24px rgba(12, 35, 64, 0.08),
              0 0 12px rgba(37, 99, 235, 0.08);
}

.eweby-float-btn--whatsapp {
  border-color: rgba(37, 211, 102, 0.2);
  box-shadow: 0 4px 24px rgba(12, 35, 64, 0.08),
              0 0 12px rgba(37, 211, 102, 0.08);
}

.eweby-float-btn:hover {
  padding: 12px 20px 12px 12px;
}

.eweby-float-btn--phone:hover {
  border-color: rgba(16, 185, 129, 0.5);
  background: #f0fdf4 !important;
  box-shadow: 0 4px 24px rgba(12, 35, 64, 0.1),
              0 0 20px rgba(16, 185, 129, 0.12);
}

.eweby-float-btn--email:hover {
  border-color: rgba(37, 99, 235, 0.5);
  background: #eff6ff !important;
  box-shadow: 0 4px 24px rgba(12, 35, 64, 0.1),
              0 0 20px rgba(37, 99, 235, 0.12);
}

.eweby-float-btn--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.5);
  background: #f0fdf4 !important;
  box-shadow: 0 4px 24px rgba(12, 35, 64, 0.1),
              0 0 20px rgba(37, 211, 102, 0.12);
}

.eweby-float-btn__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eweby-float-btn--phone .eweby-float-btn__icon { color: var(--eweby-emerald) !important; }
.eweby-float-btn--email .eweby-float-btn__icon { color: var(--eweby-primary) !important; }
.eweby-float-btn--whatsapp .eweby-float-btn__icon { color: #25d366 !important; }

.eweby-float-btn__text {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease 0.1s,
              margin-left 0.3s ease;
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 0;
}

.eweby-float-btn:hover .eweby-float-btn__text {
  max-width: 300px;
  opacity: 1;
  margin-left: 12px;
}

/* Ensure floating buttons are readable - solid white background, dark text */
.eweby-float-btn {
  background: #ffffff !important;
  color: #0c2340 !important;
}
.eweby-float-btn__text {
  color: #0c2340 !important;
}

@media (max-width: 768px) {
  .eweby-float-btns {
    right: 16px;
    bottom: 20px;
    gap: 10px;
  }

  .eweby-float-btn {
    padding: 10px;
  }

  .eweby-float-btn__icon {
    width: 20px;
    height: 20px;
  }
}


/* ==========================================================================
   46. Footer Contact Enhanced
   ========================================================================== */

.eweby-footer__list a svg,
.eweby-footer__list a .eweby-footer__icon {
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 6px;
  opacity: 0.7;
}

.eweby-footer__list a {
  display: inline-flex;
  align-items: center;
}

.eweby-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.eweby-footer__social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--eweby-surface);
  border: 1px solid var(--eweby-surface-border);
  color: var(--eweby-text-muted);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.eweby-footer__social-link:hover {
  color: var(--eweby-primary);
  border-color: rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.04);
}


/* ==========================================================================
   47. Contact Card Icons
   ========================================================================== */

.eweby-contact-card__link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.eweby-contact-card__link svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.eweby-blog-slider__dot:hover:not(.is-active),
.eweby-slider__dot:hover:not(.is-active)::after {
  background: var(--eweby-text-dim);
}

/* ==========================================================================
   48. Infinite Scroll Spinner
   ========================================================================== */

#eweby-load-more-sentinel {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  grid-column: 1 / -1;
}

.eweby-load-more-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes eweby-spin {
  to { transform: rotate(360deg); }
}

.eweby-spinner {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 3px solid var(--eweby-surface-border);
  border-top-color: var(--eweby-primary, #06b6d4);
  border-radius: 50%;
  animation: eweby-spin 0.7s linear infinite;
}


/* ==========================================================================
   49. Service Page Hero
   ========================================================================== */

.eweby-service-hero {
  padding: 40px 0 80px;
  position: relative;
}

.eweby-service-hero__label {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--eweby-primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.eweby-service-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-family: var(--eweby-font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--eweby-text);
  margin-bottom: 20px;
}

.eweby-service-hero__desc {
  color: var(--eweby-text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 650px;
}

.eweby-service-hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.eweby-service-hero__stat {
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  background: rgba(6, 182, 212, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.12);
  border-radius: 12px;
}

.eweby-service-hero__stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--eweby-font-heading);
  background: var(--eweby-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.eweby-service-hero__stat-label {
  font-size: 0.85rem;
  color: var(--eweby-text-dim);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .eweby-service-hero {
    padding: 20px 0 60px;
  }
  .eweby-service-hero__stats {
    gap: 16px;
  }
  .eweby-service-hero__stat {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .eweby-service-hero__stats {
    flex-direction: column;
    gap: 12px;
  }
  .eweby-service-hero__stat {
    text-align: center;
    align-items: center;
  }
}


/* ==========================================================================
   50. Feature Grid (Service Features)
   ========================================================================== */

.eweby-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 0;
}

.eweby-feature-card {
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eweby-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(12, 35, 64, 0.1);
}

.eweby-feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--eweby-primary);
  background: rgba(37, 99, 235, 0.06);
}

.eweby-feature-card__title {
  font-size: 1.1rem;
  font-family: var(--eweby-font-heading);
  font-weight: 600;
  color: var(--eweby-text);
  margin-bottom: 10px;
}

.eweby-feature-card__desc {
  color: var(--eweby-text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}


/* ==========================================================================
   51. Pricing Grid & Cards
   ========================================================================== */

.eweby-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.eweby-pricing-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.eweby-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(12, 35, 64, 0.1);
}

.eweby-pricing-card--featured {
  border-color: rgba(37, 99, 235, 0.2);
  transform: scale(1.03);
}

.eweby-pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.eweby-pricing-card__ribbon {
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--eweby-gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 36px;
  transform: rotate(45deg);
}

.eweby-pricing-card__name {
  font-size: 1.25rem;
  font-family: var(--eweby-font-heading);
  font-weight: 700;
  color: var(--eweby-text);
  margin-bottom: 8px;
}

.eweby-pricing-card__subtitle {
  color: var(--eweby-text-dim);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.eweby-pricing-card__price {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.eweby-pricing-card__from {
  font-size: 0.85rem;
  color: var(--eweby-text-dim);
}

.eweby-pricing-card__amount {
  font-size: 2.75rem;
  font-weight: 700;
  font-family: var(--eweby-font-heading);
  background: var(--eweby-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eweby-pricing-card__currency {
  font-size: 1.25rem;
  color: var(--eweby-text-muted);
  font-weight: 600;
}

.eweby-pricing-card__period {
  font-size: 0.8rem;
  color: var(--eweby-text-dim);
  margin-left: 4px;
}

.eweby-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  width: 100%;
  text-align: left;
}

.eweby-pricing-card__features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(6, 182, 212, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--eweby-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.eweby-pricing-card__features li:last-child {
  border-bottom: none;
}

.eweby-pricing-card__check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eweby-primary);
}

.eweby-pricing-card .eweby-btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.eweby-pricing-note {
  text-align: center;
  color: var(--eweby-text-dim);
  font-size: 0.9rem;
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .eweby-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .eweby-pricing-card--featured {
    transform: none;
  }
  .eweby-pricing-card--featured:hover {
    transform: translateY(-4px);
  }
}


/* ==========================================================================
   52. Related Services
   ========================================================================== */

.eweby-related-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.eweby-related-services .eweby-btn {
  font-size: 0.85rem;
  padding: 8px 20px;
}


/* ==========================================================================
   53. SEO Content Block
   ========================================================================== */

.eweby-seo-content {
  max-width: 800px;
  margin: 0 auto;
}

.eweby-seo-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-family: var(--eweby-font-heading);
  font-weight: 700;
  color: var(--eweby-text);
  margin: 2em 0 0.75em;
}

.eweby-seo-content h2:first-child {
  margin-top: 0;
}

.eweby-seo-content h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-family: var(--eweby-font-heading);
  font-weight: 600;
  color: var(--eweby-text);
  margin: 1.5em 0 0.5em;
}

.eweby-seo-content p {
  color: var(--eweby-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5em;
}

.eweby-seo-content ul,
.eweby-seo-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
  color: var(--eweby-text-muted);
  line-height: 1.8;
}

.eweby-seo-content a {
  color: var(--eweby-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.eweby-seo-content a:hover {
  color: var(--eweby-secondary);
}

.eweby-seo-content strong {
  color: var(--eweby-text);
}

.eweby-seo-content img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--eweby-radius-lg);
  border: 1px solid rgba(14, 165, 233, 0.15);
  margin: 2em 0;
}


/* ==========================================================================
   54. Contact Form & Map Styles
   ========================================================================== */

/* ── Form Container ─────────────────────────────────────── */
.eweby-form {
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

/* ── Form Row (side-by-side fields) ─────────────────────── */
.eweby-form__row {
  display: flex;
  gap: 1.5rem;
}

/* ── Form Group (individual field wrapper) ──────────────── */
.eweby-form__group {
  flex: 1;
  margin-bottom: 1.5rem;
}

/* ── Labels ─────────────────────────────────────────────── */
.eweby-form__label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* ── Inputs, Selects, Textareas ─────────────────────────── */
.eweby-form__input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: #fff;
  font-size: 1rem;
  font-family: var(--eweby-font-body, 'Inter', sans-serif);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.eweby-form__input:focus {
  border-color: var(--eweby-primary, #06b6d4);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
  outline: none;
}

.eweby-form__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* ── Select dropdown ────────────────────────────────────── */
select.eweby-form__input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' fill-opacity='0.5' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

/* ── Textarea ───────────────────────────────────────────── */
textarea.eweby-form__input {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

/* ── Checkbox wrapper ───────────────────────────────────── */
.eweby-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.eweby-form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--eweby-primary, #06b6d4);
  margin-top: 0.2rem;
  flex-shrink: 0;
  cursor: pointer;
}

.eweby-form__checkbox label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.eweby-form__checkbox label a {
  color: var(--eweby-primary, #06b6d4);
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.eweby-form__checkbox label a:hover {
  text-decoration: underline;
}

/* ── Disclaimer note ────────────────────────────────────── */
.eweby-form__note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1rem;
  line-height: 1.5;
}

/* ── Google Map (dark mode) ─────────────────────────────── */
.eweby-map {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.eweby-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg);
}

/* ── Form Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .eweby-form__row {
    flex-direction: column;
  }
}


/* ==========================================================================
   55. Mega Menu
   ========================================================================== */

.eweby-nav__item--has-mega {
  position: static;
}

/* Chevron indicator */
.eweby-nav__item--has-mega > .eweby-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.eweby-nav__item--has-mega > .eweby-nav__link::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  position: static;
  display: inline-block;
  opacity: 0.5;
  transition: transform 0.25s ease, opacity 0.25s ease;
  background: none;
  border-radius: 0;
}

.eweby-nav__item--has-mega:hover > .eweby-nav__link::after {
  transform: rotate(180deg);
  opacity: 1;
  width: 0;
}

/* Mega menu panel */
.eweby-megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(12, 35, 64, 0.06);
  border-bottom: 1px solid rgba(12, 35, 64, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 100;
  box-shadow: 0 20px 60px rgba(12, 35, 64, 0.1);
}

/* Bridge gap */
.eweby-megamenu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.eweby-nav__item--has-mega:hover > .eweby-megamenu,
.eweby-nav__item--has-mega:focus-within > .eweby-megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.eweby-megamenu__inner {
  max-width: var(--eweby-container);
  margin: 0 auto;
  padding: 2rem 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.eweby-megamenu__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--eweby-primary);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(6, 182, 212, 0.12);
  font-family: var(--eweby-font-heading);
}

.eweby-megamenu__heading svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.eweby-megamenu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eweby-megamenu__list li {
  margin: 0;
}

.eweby-megamenu__list a {
  display: block;
  padding: 0.45rem 0;
  color: var(--eweby-text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.eweby-megamenu__list a:hover {
  color: var(--eweby-text);
  padding-left: 6px;
}

.eweby-megamenu__footer {
  max-width: var(--eweby-container);
  margin: 0 auto;
  padding: 0.75rem 24px 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.eweby-megamenu__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--eweby-primary);
  font-size: 0.85rem;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.eweby-megamenu__all:hover {
  gap: 10px;
}

/* Mega menu on mobile */
@media (max-width: 768px) {
  .eweby-nav__item--has-mega > .eweby-nav__link::after {
    border-top-color: var(--eweby-primary);
  }

  .eweby-megamenu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 1rem;
  }

  .eweby-megamenu__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 0;
  }

  .eweby-megamenu__heading {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .eweby-megamenu__list a {
    font-size: 0.95rem;
    padding: 0.35rem 0;
  }

  .eweby-megamenu__footer {
    padding: 0.75rem 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .eweby-megamenu__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Legacy dropdown support (for WP menu walker) */
.eweby-nav__item--has-sub {
  position: relative;
}

.eweby-nav__item--has-sub > .eweby-nav__link::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  position: static;
  display: inline-block;
  margin-left: 6px;
  opacity: 0.5;
  background: none;
  border-radius: 0;
}

.eweby-nav__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(12, 35, 64, 0.08);
  border-radius: 12px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 100;
  box-shadow: 0 12px 40px rgba(12, 35, 64, 0.1);
  margin: 0;
}

.eweby-nav__sub::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.eweby-nav__item--has-sub:hover > .eweby-nav__sub,
.eweby-nav__item--has-sub:focus-within > .eweby-nav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.eweby-nav__sub li {
  margin: 0;
  list-style: none;
}

.eweby-nav__sub a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: var(--eweby-text-muted);
  font-size: 0.875rem;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.eweby-nav__sub a:hover {
  color: var(--eweby-primary);
  background: rgba(37, 99, 235, 0.04);
}


/* ==========================================================================
   RUTI s.r.o. — Page Content Design System
   Unique design for ruti.sk — ruti- prefix classes
   ========================================================================== */

/* ── RUTI Variables ── */
:root {
  --ruti-navy: #0a0a0a;
  --ruti-navy-light: #1a1a1a;
  --ruti-blue: #252525;
  --ruti-blue-light: #3a3a3a;
  --ruti-sky: #facc15;
  --ruti-mint: #facc15;
  --ruti-mint-light: #fde047;
  --ruti-mint-pale: #fefce8;
  --ruti-amber: #f59e0b;
  --ruti-yellow: #facc15;
  --ruti-yellow-light: #fde047;
  --ruti-white: #ffffff;
  --ruti-off-white: #f7f9fc;
  --ruti-gray-50: #f0f4f8;
  --ruti-gray-100: #e2e8f0;
  --ruti-gray-200: #cbd5e1;
  --ruti-text: #1a1a1a;
  --ruti-text-soft: #475569;
  --ruti-text-muted: #94a3b8;
  --ruti-radius: 16px;
  --ruti-radius-lg: 24px;
  --ruti-shadow: 0 4px 24px rgba(0,0,0,0.12);
  --ruti-shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --ruti-font: 'Inter', system-ui, sans-serif;
  --ruti-font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --ruti-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Ruti page base ── */
.eweby-main .ruti-page { background: var(--ruti-white); }
.ruti-page {
  font-family: var(--ruti-font);
  color: var(--ruti-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.ruti-page *, .ruti-page *::before, .ruti-page *::after { box-sizing: border-box; }
.ruti-page img { max-width: 100%; height: auto; display: block; }
.ruti-page a { text-decoration: none; color: inherit; }

/* Override theme heading/paragraph colors — specificity 0,2,1 */
.eweby-main .ruti-page h1, .eweby-main .ruti-page h2, .eweby-main .ruti-page h3,
.eweby-main .ruti-page h4, .eweby-main .ruti-page h5, .eweby-main .ruti-page h6 {
  font-family: var(--ruti-font-display);
  color: var(--ruti-navy);
  margin: 0;
}
.eweby-main .ruti-page p { color: var(--ruti-text-soft); margin: 0; }

/* ── Button color fix — .eweby-main .ruti-btn--* (0,2,0) beats .eweby-main a (0,1,1) ── */
.eweby-main .ruti-btn--solid { color: #0a0a0a; }
.eweby-main .ruti-btn--outline { color: white; }
.eweby-main .ruti-btn--dark { color: white; }
.eweby-main .ruti-btn--white { color: var(--ruti-navy); }

/* ── Dark section text — specificity 0,3,0 beats 0,2,1 headings ── */
/* Hero */
.eweby-main .ruti-page .ruti-hero__title { color: #fff; }
.eweby-main .ruti-page .ruti-hero__title em { color: #facc15; }
.eweby-main .ruti-page .ruti-hero__desc { color: rgba(255,255,255,0.75); }
.eweby-main .ruti-page .ruti-hero__tag { color: #facc15; }
/* Stats */
.eweby-main .ruti-page .ruti-stat__val { color: #fff; }
.eweby-main .ruti-page .ruti-stat__val span { color: var(--ruti-mint-light); }
.eweby-main .ruti-page .ruti-stat__txt { color: rgba(255,255,255,0.55); }
/* Navy section — process steps */
.eweby-main .ruti-page .ruti-section--navy .ruti-section-hd__title { color: #fff; }
.eweby-main .ruti-page .ruti-section--navy .ruti-section-hd__title em { color: #facc15; }
.eweby-main .ruti-page .ruti-section--navy .ruti-section-hd__sub { color: rgba(255,255,255,0.6); }
.eweby-main .ruti-page .ruti-step__title { color: #fff; }
.eweby-main .ruti-page .ruti-step__desc { color: rgba(255,255,255,0.6); }
/* CTA */
.eweby-main .ruti-page .ruti-cta__title { color: #fff; }
.eweby-main .ruti-page .ruti-cta__desc { color: rgba(255,255,255,0.75); }
.eweby-main .ruti-page .ruti-cta__note { color: rgba(255,255,255,0.45); }

.ruti-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HERO ── */
.ruti-hero {
  position: relative;
  padding: 180px 0 64px;
  background: linear-gradient(160deg, #0a0a0a 0%, #1a1a1a 55%, #252525 100%);
  overflow: hidden;
  color: white;
}
.ruti-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 70% 20%, rgba(250, 204, 21, 0.08), transparent),
    radial-gradient(ellipse 400px 400px at 20% 80%, rgba(245, 158, 11, 0.06), transparent);
}
.ruti-hero::after {
  display: none;
}
.ruti-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ruti-hero__tag,
.eweby-main .ruti-page .ruti-hero__tag {
  display: inline-flex !important;
  align-items: center !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #facc15;
  margin-bottom: 20px;
}
.ruti-hero__tag-dot {
  width: 7px; height: 7px;
  background: #facc15;
  border-radius: 50%;
  animation: ruti-blink 2s ease-in-out infinite;
}
@keyframes ruti-blink { 0%,100%{opacity:1} 50%{opacity:.4} }
.ruti-hero__title {
  font-family: var(--ruti-font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 28px;
  color: #fff;
}
.ruti-hero__title em {
  font-style: normal;
  color: #facc15;
}
.ruti-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}
.ruti-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.ruti-hero__img {
  position: relative;
  border-radius: var(--ruti-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.ruti-hero__img img { width: 100%; height: 380px; object-fit: cover; }
.ruti-hero__img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--ruti-shadow);
}
.ruti-hero__img-badge strong {
  display: block;
  font-family: var(--ruti-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ruti-blue);
}
.ruti-hero__img-badge span {
  font-size: 0.75rem;
  color: var(--ruti-text-soft);
}

/* ── BUTTONS ── */
.ruti-btn,
.eweby-main .ruti-btn,
.ruti-page .ruti-btn,
.eweby-main .ruti-page .ruti-btn,
.eweby-main .ruti-page a.ruti-btn {
  display: inline-flex !important;
  align-items: center !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
  gap: 8px !important;
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: var(--ruti-font);
  border: none;
  cursor: pointer;
  transition: all var(--ruti-transition);
  text-decoration: none !important;
}
.ruti-btn svg,
.eweby-main .ruti-btn svg,
.ruti-page .ruti-btn svg,
.eweby-main .ruti-page .ruti-btn svg,
.eweby-main .ruti-page a.ruti-btn svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
  flex: 0 0 16px !important;
  display: block !important;
  vertical-align: middle !important;
}
/* Kill any WordPress-injected elements in buttons */
.ruti-btn br,
.ruti-btn p { display: none !important; }
.ruti-btn--solid {
  background: #facc15;
  color: #0a0a0a;
  box-shadow: 0 4px 16px rgba(250, 204, 21, 0.3);
}
.ruti-btn--solid:hover {
  background: #fde047;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(250, 204, 21, 0.4);
}
.ruti-btn--outline,
.eweby-main .ruti-btn--outline,
.eweby-main .ruti-page .ruti-btn--outline,
.eweby-main .ruti-page a.ruti-btn--outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3) !important;
}
.ruti-btn--outline:hover,
.eweby-main .ruti-page a.ruti-btn--outline:hover {
  border-color: white !important;
  background: rgba(255,255,255,0.08);
}
.ruti-btn--dark {
  background: var(--ruti-navy);
  color: white;
}
.ruti-btn--dark:hover {
  background: var(--ruti-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--ruti-shadow-lg);
}
.ruti-btn--white {
  background: white;
  color: var(--ruti-navy);
}
.ruti-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--ruti-shadow-lg);
}

/* ── SECTIONS ── */
.ruti-section { padding: 96px 0; }
.ruti-section--gray { background: var(--ruti-off-white); }
.ruti-section--navy { background: var(--ruti-navy); color: white; }
.ruti-section--navy .ruti-section-hd__sub { color: rgba(255,255,255,0.6); }
.ruti-section--navy .ruti-section-hd__title { color: white; }
.ruti-section-hd {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.ruti-section-hd__label {
  display: inline-block;
  padding: 4px 14px;
  background: #facc15;
  color: #0a0a0a;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.ruti-section--navy .ruti-section-hd__label {
  background: rgba(250, 204, 21, 0.15);
  color: #facc15;
}
.ruti-section-hd__title {
  font-family: var(--ruti-font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--ruti-navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.ruti-section-hd__title em { font-style: normal; color: #facc15; }
.ruti-section--navy .ruti-section-hd__title em { color: #facc15; }
.ruti-section-hd__sub {
  font-size: 1.05rem;
  color: var(--ruti-text-soft);
  line-height: 1.7;
}

/* ── CLIENTS — Infinite Marquee ── */
.ruti-clients {
  padding: 56px 0 48px;
  background: #1a1a1a;
  border: none;
  overflow: hidden;
}
.ruti-clients__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 56px;
}
.eweby-main .ruti-page .ruti-clients__label {
  margin-bottom: 56px !important;
}
.ruti-clients__row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ruti-clients__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ruti-marquee 35s linear infinite;
}
.ruti-clients__track:hover {
  animation-play-state: paused;
}
@keyframes ruti-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ruti-clients__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: white;
  border: 1px solid var(--ruti-gray-100);
  border-radius: 12px;
  flex-shrink: 0;
  min-width: 140px;
}
.ruti-clients__logo img {
  max-height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

/* ── STATS ROW ── */
.ruti-stats {
  padding: 60px 0;
  background: var(--ruti-navy);
  position: relative;
}
.ruti-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(37,99,235,0.1), rgba(16,185,129,0.08));
}
.ruti-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.ruti-stat {
  text-align: center;
  padding: 20px;
}
.ruti-stat__val {
  font-family: var(--ruti-font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: white;
  line-height: 1.2;
}
.ruti-stat__val span { color: var(--ruti-mint-light); }
.ruti-stat__txt {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ── SERVICE CARDS ── */
.ruti-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ruti-svc {
  background: white;
  border-radius: var(--ruti-radius);
  padding: 36px 28px;
  border: 1px solid var(--ruti-gray-100);
  position: relative;
  overflow: hidden;
  transition: all var(--ruti-transition);
}
.ruti-svc::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  transition: width var(--ruti-transition);
}
.ruti-svc:nth-child(1)::after { background: #facc15; }
.ruti-svc:nth-child(2)::after { background: #22d3ee; }
.ruti-svc:nth-child(3)::after { background: #a78bfa; }
.ruti-svc:nth-child(4)::after { background: #4ade80; }
.ruti-svc:nth-child(5)::after { background: #fb923c; }
.ruti-svc:nth-child(6)::after { background: #f472b6; }
.ruti-svc:hover { transform: translateY(-6px); box-shadow: var(--ruti-shadow-lg); border-color: transparent; }
.ruti-svc:hover::after { width: 6px; }
.ruti-svc__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px; margin-bottom: 20px;
  color: #0a0a0a;
}
.ruti-svc:nth-child(1) .ruti-svc__icon { background: #facc15; } /* žltá */
.ruti-svc:nth-child(2) .ruti-svc__icon { background: #22d3ee; } /* cyan */
.ruti-svc:nth-child(3) .ruti-svc__icon { background: #a78bfa; } /* fialová */
.ruti-svc:nth-child(4) .ruti-svc__icon { background: #4ade80; } /* zelená */
.ruti-svc:nth-child(5) .ruti-svc__icon { background: #fb923c; } /* oranžová */
.ruti-svc:nth-child(6) .ruti-svc__icon { background: #f472b6; } /* ružová */
.ruti-svc__title {
  font-family: var(--ruti-font-display);
  font-size: 1.1rem; font-weight: 700;
  color: white; margin-bottom: 16px;
}
.ruti-svc__desc { font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 20px; }
.ruti-svc__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ruti-svc__tag {
  padding: 3px 10px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600;
  background: var(--ruti-gray-50); color: var(--ruti-text-soft);
  border: 1px solid var(--ruti-gray-100);
}

/* ── PROCESS STEPS ── */
.ruti-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ruti-step {
  text-align: center; padding: 36px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--ruti-radius);
  transition: all var(--ruti-transition);
}
.ruti-step:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.ruti-step__num {
  width: 56px; height: 56px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-family: var(--ruti-font-display);
  font-weight: 900; font-size: 1.1rem;
  background: #facc15;
  color: #0a0a0a;
}
.ruti-step:nth-child(1) .ruti-step__num { background: #facc15; }
.ruti-step:nth-child(2) .ruti-step__num { background: #facc15; }
.ruti-step:nth-child(3) .ruti-step__num { background: #facc15; }
.ruti-step:nth-child(4) .ruti-step__num { background: #facc15; }
.ruti-step__title {
  font-family: var(--ruti-font-display);
  font-size: 1rem; font-weight: 700; color: white; margin-bottom: 12px;
}
.ruti-step__desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── ABOUT / SPLIT ── */
.ruti-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ruti-split--reverse { direction: rtl; }
.ruti-split--reverse > * { direction: ltr; }
.ruti-split__img { border-radius: var(--ruti-radius-lg); overflow: hidden; position: relative; }
.ruti-split__img img { width: 100%; height: 400px; object-fit: cover; }
.ruti-split__img-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--ruti-mint); color: white;
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700;
}
.ruti-split__label {
  display: inline-block; padding: 4px 12px;
  background: var(--ruti-mint-pale); color: #92400e;
  border-radius: 100px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}
.ruti-split__title {
  font-family: var(--ruti-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  color: var(--ruti-navy); line-height: 1.2; margin-bottom: 20px;
}
.ruti-split__title em { font-style: normal; color: #b45309; }
.ruti-split__text { font-size: 0.95rem; color: var(--ruti-text-soft); line-height: 1.7; margin-bottom: 24px; }
.ruti-checks { list-style: none; padding: 0; margin: 0 0 28px; }
.ruti-checks li { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: 0.92rem; color: var(--ruti-text); }
.ruti-checks__icon {
  width: 28px; height: 28px; min-width: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: #facc15; color: #0a0a0a;
}

/* ── GALLERY ── */
.ruti-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ruti-gallery__item { border-radius: var(--ruti-radius); overflow: hidden; aspect-ratio: 4/3; }
.ruti-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ruti-gallery__item:hover img { transform: scale(1.05); }

/* ── CTA BANNER ── */
.ruti-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: white; text-align: center;
  position: relative; overflow: hidden;
}
.ruti-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle 300px at 20% 50%, rgba(250, 204, 21, 0.08), transparent),
    radial-gradient(circle 300px at 80% 50%, rgba(245, 158, 11, 0.06), transparent);
}
.ruti-cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.ruti-cta__title {
  font-family: var(--ruti-font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; margin-bottom: 20px; color: white;
}
.ruti-cta__desc { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.7; }
.ruti-cta__btns { display: flex !important; gap: 12px; justify-content: center; flex-wrap: wrap; align-items: center; }
.ruti-cta__note { margin-top: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ── CONTACT 2-COL ── */
.ruti-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ruti-contact-card {
  background: white; border: 1px solid var(--ruti-gray-100);
  border-radius: var(--ruti-radius); padding: 36px 32px;
}
.ruti-contact-card__title {
  font-family: var(--ruti-font-display);
  font-size: 1.15rem; font-weight: 700; color: var(--ruti-navy);
  margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 2px solid var(--ruti-gray-50);
}
.ruti-contact-item { display: flex; flex-direction: column; gap: 2px; padding: 10px 0; border-bottom: 1px solid var(--ruti-gray-50); position: relative; }
.ruti-contact-item:last-child { border-bottom: none; }
.ruti-contact-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--ruti-mint);
  border-radius: 50%;
  color: #0a0a0a;
  margin-bottom: 8px;
}
.ruti-contact-item__label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--ruti-text-muted); }
.ruti-contact-item__val { font-weight: 600; color: var(--ruti-navy); font-size: 0.95rem; }
.ruti-contact-item__val a { color: var(--ruti-blue); transition: color var(--ruti-transition); }
.ruti-contact-item__val a:hover { color: var(--ruti-mint); }
.ruti-contact-btns { display: flex; gap: 10px; margin-top: 20px; }
.ruti-contact-btns .ruti-btn { flex: 1; justify-content: center; }

/* Single centered contact card */
.ruti-contact--single {
  display: flex;
  justify-content: center;
}
.ruti-contact-card--wide {
  max-width: 500px;
  width: 100%;
}

/* ── CONTACT GRID (full width boxes) ── */
.ruti-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ruti-contact-box {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ruti-radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ruti-contact-box:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 204, 21, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ruti-contact-box__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ruti-contact-box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--ruti-mint);
  border-radius: 50%;
  color: #0a0a0a;
}

.ruti-contact-box__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}

.ruti-contact-box__val,
a.ruti-contact-box__val,
.eweby-main .ruti-contact-box__val,
.eweby-main a.ruti-contact-box__val {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: white !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.ruti-contact-box__val:hover,
.eweby-main a.ruti-contact-box__val:hover {
  color: #facc15 !important;
}

@media (max-width: 1024px) {
  .ruti-contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .ruti-contact-grid { grid-template-columns: 1fr; }
  .ruti-contact-box { padding: 24px 20px; }
}

/* ── RUTI RESPONSIVE ── */
@media (max-width: 1024px) {
  .ruti-hero__inner { grid-template-columns: 1fr; }
  .ruti-hero__img { max-width: 560px; }
  .ruti-services { grid-template-columns: repeat(2, 1fr); }
  .ruti-split { grid-template-columns: 1fr; gap: 32px; }
  .ruti-split--reverse { direction: ltr; }
  .ruti-gallery { grid-template-columns: repeat(2, 1fr); }
  .ruti-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ruti-section { padding: 64px 0; }
  .ruti-hero { padding: 120px 0 48px; }
  .ruti-services { grid-template-columns: 1fr; }
  .ruti-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .ruti-steps { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ruti-gallery { grid-template-columns: 1fr 1fr; }
  .ruti-contact { grid-template-columns: 1fr; }
  .ruti-clients__logo { padding: 10px 16px; min-width: 100px; }
  .ruti-clients__logo img { max-height: 28px; max-width: 90px; }
  .ruti-clients__track { gap: 14px; }
}
@media (max-width: 480px) {
  .ruti-hero__btns { flex-direction: column; }
  .ruti-hero__btns .ruti-btn { width: 100%; justify-content: center; }
  .ruti-stats { grid-template-columns: 1fr 1fr; }
  .ruti-steps { grid-template-columns: 1fr; }
  .ruti-gallery { grid-template-columns: 1fr; }
  .ruti-cta__btns { flex-direction: column; align-items: center; }
  .ruti-cta__btns .ruti-btn { width: 100%; max-width: 280px; justify-content: center; }
  .ruti-contact-btns { flex-direction: column; }
  .ruti-clients__logo { padding: 8px 12px; min-width: 80px; }
  .ruti-clients__logo img { max-height: 24px; max-width: 80px; }
  .ruti-clients__track { gap: 10px; }
}

/* ═══════════════════════════════════════════════════════════════
   RUTI PREMIUM DESIGN UPGRADE
   Creative enhancements for unique visual identity
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ruti-glow-blue: rgba(37, 99, 235, 0.4);
  --ruti-glow-mint: rgba(16, 185, 129, 0.35);
  --ruti-transition-spring: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Global: Custom Scrollbar ── */
body.eweby-body::-webkit-scrollbar { width: 8px; }
body.eweby-body::-webkit-scrollbar-track { background: #0a0a0a; }
body.eweby-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--ruti-blue), var(--ruti-mint));
  border-radius: 4px;
}
body.eweby-body::-webkit-scrollbar-thumb:hover { background: var(--ruti-mint); }
body.eweby-body { scrollbar-width: thin; scrollbar-color: var(--ruti-blue) #0a0a0a; }

/* ── Global: Text Selection ── */
.ruti-page ::selection {
  background-color: var(--ruti-blue);
  color: white;
}

/* ── HERO: Decorative Effects — Removed for clean design ── */
.ruti-hero::after,
.ruti-hero__inner::before,
.ruti-hero__inner::after { display: none !important; }

/* ── HERO: <em> styling — Simple yellow highlight ── */
.eweby-main .ruti-page .ruti-hero__title em {
  font-style: normal;
  color: var(--ruti-mint);
}

/* ── HERO: Image — Clean style, no glow animation ── */
.ruti-hero__img {
  border: 2px solid rgba(250, 204, 21, 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ── HERO: Glassmorphism Badge ── */
.ruti-hero__img-badge {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
}
.ruti-hero__img-badge strong { color: white; }
.ruti-hero__img-badge span { color: rgba(255,255,255,0.8); }

/* ── SECTION TRANSITIONS: Removed - clean design ── */
.ruti-clients { padding-top: 56px; }

/* ── SERVICE CARDS: Icon Glow + Scale on Hover ── */
.ruti-svc__icon { transition: box-shadow var(--ruti-transition), transform var(--ruti-transition); }
.ruti-svc:hover .ruti-svc__icon { transform: scale(1.08); }
.ruti-svc:nth-child(1):hover .ruti-svc__icon { box-shadow: 0 0 24px rgba(250, 204, 21, 0.5); }
.ruti-svc:nth-child(2):hover .ruti-svc__icon { box-shadow: 0 0 24px rgba(34, 211, 238, 0.5); }
.ruti-svc:nth-child(3):hover .ruti-svc__icon { box-shadow: 0 0 24px rgba(167, 139, 250, 0.5); }
.ruti-svc:nth-child(4):hover .ruti-svc__icon { box-shadow: 0 0 24px rgba(74, 222, 128, 0.5); }
.ruti-svc:nth-child(5):hover .ruti-svc__icon { box-shadow: 0 0 24px rgba(251, 146, 60, 0.5); }
.ruti-svc:nth-child(6):hover .ruti-svc__icon { box-shadow: 0 0 24px rgba(244, 114, 182, 0.5); }

/* ── STATS: Clean styling — no gradient effects ── */
.eweby-main .ruti-page .ruti-stat__val {
  color: var(--ruti-mint);
}
.eweby-main .ruti-page .ruti-stat__val span {
  color: var(--ruti-mint);
}

/* ── STATS: Dividers and dot grid — Removed ── */
.ruti-stat:not(:last-child)::after { display: none !important; }
.ruti-stats::before { background: none !important; }

/* ── PROCESS: Timeline Connector — Removed ── */
.ruti-steps::before { display: none !important; }
.ruti-step { position: relative; z-index: 1; }

/* ── PROCESS: Step Numbers — Clean, no glow/pulse effects ── */
.ruti-step__num { position: relative; transition: transform var(--ruti-transition); }
.ruti-step:hover .ruti-step__num { transform: scale(1.05); }
.ruti-step__num::after { display: none !important; }

/* ── GALLERY: Fixed row height (columns from base + responsive rules) ── */
.ruti-gallery {
  display: grid !important;
  grid-auto-rows: 200px;
}
/* Hide WordPress-injected <br> and <p> inside gallery grid */
.ruti-gallery > br,
.ruti-gallery > p,
.ruti-gallery__item > br { display: none !important; }
.ruti-gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: auto;
  height: 100%;
  min-height: 0;
  border-radius: var(--ruti-radius-lg);
  box-shadow: 0 4px 16px rgba(12, 35, 64, 0.08);
  transition: box-shadow var(--ruti-transition), transform var(--ruti-transition);
}
.ruti-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ruti-gallery__item:hover {
  box-shadow: 0 12px 40px rgba(12, 35, 64, 0.16);
  transform: translateY(-4px);
}

/* ── GALLERY: Gradient Hover Overlay — Removed ── */
.ruti-gallery__item::after { display: none !important; }

/* ── GALLERY: Hover Labels ── */
.ruti-gallery__label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: white;
  font-family: var(--ruti-font-display);
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
  pointer-events: none;
}
.ruti-gallery__item:hover .ruti-gallery__label {
  opacity: 1;
  transform: translateY(0);
}

/* ── GALLERY FULL: gallery subpage ── */
.ruti-gallery--full {
  grid-auto-rows: 220px;
}

/* ── LIGHTBOX ── */
.ruti-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.ruti-lightbox.is-active { display: flex; }
.ruti-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: rutiLbIn 0.3s ease;
}
@keyframes rutiLbIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.ruti-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ruti-lightbox__close:hover { background: rgba(255,255,255,0.2); }
.ruti-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ruti-lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.ruti-lightbox__prev { left: 20px; }
.ruti-lightbox__next { right: 20px; }
.ruti-lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-family: var(--ruti-font-display);
}

/* ── CTA: Solid background — no animation ── */
.ruti-cta {
  background: #0a0a0a;
}

/* ── CTA: Buttons — Clean style ── */
.ruti-cta .ruti-btn--white {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.ruti-cta .ruti-btn--white:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.eweby-main .ruti-cta .ruti-btn--white { color: white; }

/* ── CONTACT CARDS: Simple hover ── */
.ruti-contact-card {
  position: relative;
  overflow: hidden;
  transition: transform var(--ruti-transition), box-shadow var(--ruti-transition);
}
.ruti-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ── CLIENTS: Hover Enhancement ── */
.ruti-clients__logo {
  transition: transform var(--ruti-transition), box-shadow var(--ruti-transition), border-color var(--ruti-transition);
}
.ruti-clients__logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(12, 35, 64, 0.08);
  border-color: var(--ruti-blue-light);
}

/* ── SECTION HEADERS: Solid yellow <em> Text ── */
.eweby-main .ruti-page .ruti-section-hd__title em {
  font-style: normal;
  color: #facc15;
}
.eweby-main .ruti-page .ruti-section--navy .ruti-section-hd__title em {
  color: #facc15;
}

/* ── ABOUT: Image Enhancement ── */
.ruti-split__img {
  box-shadow: 0 20px 60px rgba(12, 35, 64, 0.15);
  transition: transform var(--ruti-transition-spring), box-shadow var(--ruti-transition-spring);
}
.ruti-split__img:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(12, 35, 64, 0.2);
}
.ruti-split__img-tag {
  box-shadow: 0 4px 16px rgba(250, 204, 21, 0.3);
}

/* ── ABOUT: Split Title <em> — amber for contrast on white ── */
.eweby-main .ruti-page .ruti-split__title em {
  font-style: normal;
  color: #b45309;
}

/* ── SPACING OVERRIDES (high specificity to beat .eweby-main * reset) ── */
.eweby-main .ruti-page .ruti-hero__tag { margin-bottom: 32px; }
.eweby-main .ruti-page .ruti-hero__title { margin-bottom: 36px; }
.eweby-main .ruti-page .ruti-hero__desc { margin-bottom: 44px; }
.eweby-main .ruti-page .ruti-hero__btns { gap: 16px; }

.eweby-main .ruti-page .ruti-section-hd__label { margin-bottom: 20px; }
.eweby-main .ruti-page .ruti-section-hd__title { margin-bottom: 24px; }
.eweby-main .ruti-page .ruti-section-hd { margin-bottom: 64px; }

.eweby-main .ruti-page .ruti-svc__icon { margin-bottom: 24px; }
.eweby-main .ruti-page .ruti-svc__title { margin-bottom: 16px; }
.eweby-main .ruti-page .ruti-svc__desc { margin-bottom: 20px; }

.eweby-main .ruti-page .ruti-step__num { margin-bottom: 24px; }
.eweby-main .ruti-page .ruti-step__title { margin-bottom: 14px; }

.eweby-main .ruti-page .ruti-split__label { margin-bottom: 24px; }
.eweby-main .ruti-page .ruti-split__title { margin-bottom: 24px; }
.eweby-main .ruti-page .ruti-split__text { margin-bottom: 32px; }
.eweby-main .ruti-page .ruti-checks { margin-bottom: 36px; }

/* Buttons inside split (O nás) section — smaller to fit side by side */
.ruti-split .ruti-hero__btns {
  flex-wrap: nowrap;
}
.ruti-split .ruti-hero__btns .ruti-btn {
  padding: 12px 20px !important;
  font-size: 0.85rem !important;
}

.eweby-main .ruti-page .ruti-cta__title { margin-bottom: 28px; }
.eweby-main .ruti-page .ruti-cta__desc { margin-bottom: 40px; }
.eweby-main .ruti-page .ruti-cta__note { margin-top: 28px; }

.eweby-main .ruti-page .ruti-contact-card__title { margin-bottom: 20px; padding-bottom: 16px; }
.eweby-main .ruti-page .ruti-contact-item { padding: 14px 0; }
.eweby-main .ruti-page .ruti-contact-btns { margin-top: 24px; }

.eweby-main .ruti-page .ruti-stat__val { margin-bottom: 8px; }

/* ── HERO FULLWIDTH VARIANT ── */
.ruti-hero--fullwidth {
  min-height: 100vh;
  padding: 140px 0 120px;
  background: url('/wp-content/uploads/2026/02/1.jpeg') center/cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ruti-hero--fullwidth::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.3) 50%, rgba(10, 10, 10, 0.5) 100%);
  z-index: 0;
}

.ruti-hero--fullwidth .ruti-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 100px;
}

.ruti-hero--fullwidth .ruti-hero__tag {
  justify-content: center;
}

.ruti-hero--fullwidth .ruti-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.ruti-hero--fullwidth .ruti-hero__desc {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
}

.ruti-hero--fullwidth .ruti-hero__btns {
  justify-content: center;
  align-items: center;
  width: 100%;
}

.ruti-hero__logo-overlay {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  pointer-events: auto;
}

.ruti-hero__logo-img {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.ruti-hero__logo-overlay:hover .ruti-hero__logo-img {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .ruti-hero--fullwidth {
    min-height: auto;
    padding: 100px 0 80px;
  }
  .ruti-hero--fullwidth .ruti-hero__content {
    padding-bottom: 80px;
  }
  .ruti-hero--fullwidth .ruti-hero__btns {
    flex-direction: column;
    align-items: center;
  }
  .ruti-hero--fullwidth .ruti-hero__btns .ruti-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .ruti-hero__logo-overlay {
    bottom: 24px;
  }
  .ruti-hero__logo-img {
    max-width: 150px;
  }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .eweby-main .ruti-page .ruti-hero__title em,
  .eweby-main .ruti-page .ruti-stat__val,
  .eweby-main .ruti-page .ruti-section-hd__title em,
  .eweby-main .ruti-page .ruti-section--navy .ruti-section-hd__title em,
  .eweby-main .ruti-page .ruti-split__title em {
    animation: none;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    -webkit-background-clip: unset;
    background: none;
  }
  .ruti-hero::after,
  .ruti-hero__inner::before,
  .ruti-hero__inner::after,
  .ruti-cta::after,
  .ruti-hero__img,
  .ruti-cta {
    animation: none;
  }
  .ruti-step__num::after {
    animation: none;
    display: none;
  }
}

/* ── RESPONSIVE: Premium Features ── */
@media (max-width: 1024px) {
  .ruti-hero::after { width: 200px; height: 200px; }
  .ruti-hero__inner::before { width: 150px; height: 150px; }
  .ruti-hero__inner::after { display: none; }
  .ruti-steps::before { display: none; }
}

@media (max-width: 768px) {
  .ruti-hero { clip-path: none; margin-bottom: 0; padding-bottom: 48px; }
  .ruti-stats { clip-path: none; padding-bottom: 60px; }
  .ruti-cta { clip-path: none; margin-top: 0; padding-top: 80px; padding-bottom: 80px; }
  .ruti-hero::after,
  .ruti-hero__inner::before { display: none; }
  .ruti-stat:not(:last-child)::after { display: none; }
  .ruti-cta::after { display: none; }
  .ruti-clients { padding-top: 48px; }
}

@media (max-width: 480px) {
  .ruti-gallery { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .ruti-gallery__item { aspect-ratio: 4/3; }
}

/* ═══════════════════════════════════════════════════════════════
   RUTI LANDING PAGE — Výber služieb
   ═══════════════════════════════════════════════════════════════ */

/* Hide header and footer on landing page + disable scroll */
body:has(.ruti-landing) {
  overflow: hidden !important;
  height: 100vh !important;
}
body:has(.ruti-landing) .eweby-header,
body:has(.ruti-landing) .ruti-topbar,
body:has(.ruti-landing) .eweby-footer,
body:has(.ruti-landing) .eweby-float-btns {
  display: none !important;
}
body:has(.ruti-landing) .eweby-main {
  padding-top: 0;
  height: 100vh;
  overflow: hidden;
}

.ruti-landing {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 35%, #252525 50%, #1a1a1a 65%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative effects removed for clean design */
.ruti-landing::before,
.ruti-landing::after { display: none !important; }

.ruti-landing__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.ruti-landing__logo {
  margin-bottom: 48px;
}

.ruti-landing__logo-img {
  max-height: 80px;
  width: auto;
  margin: 0 auto 16px;
  filter: brightness(0) invert(1);
}

.ruti-landing__tagline {
  display: block;
  font-size: 0.9rem;
  color: #facc15 !important;
  letter-spacing: 1px;
}
.eweby-main .ruti-page .ruti-landing__tagline { color: #facc15 !important; }

.ruti-landing__title {
  font-family: var(--ruti-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: white !important;
  margin-bottom: 56px;
}
.eweby-main .ruti-page .ruti-landing__title { color: white !important; }

.ruti-landing__choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.ruti-choice {
  position: relative;
  border-radius: var(--ruti-radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ruti-choice:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.ruti-choice__img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.ruti-choice__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ruti-choice:hover .ruti-choice__img img {
  transform: scale(1.08);
}

.ruti-choice__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(12,35,64,0.8) 100%);
}

.ruti-choice__content {
  padding: 32px 28px;
  text-align: left;
}

.ruti-choice__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #facc15;
  border-radius: 14px;
  color: #0a0a0a;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ruti-choice:hover .ruti-choice__icon {
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(250, 204, 21, 0.5);
}

.ruti-choice__title {
  font-family: var(--ruti-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: white !important;
  margin-bottom: 12px;
}
.eweby-main .ruti-page .ruti-choice__title { color: white !important; }

.ruti-choice__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75) !important;
  line-height: 1.6;
  margin-bottom: 24px;
}
.eweby-main .ruti-page .ruti-choice__desc { color: rgba(255,255,255,0.75) !important; }

.ruti-choice__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
  transition: all 0.3s ease;
}

.ruti-choice__btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.ruti-choice:hover .ruti-choice__btn {
  background: #facc15;
  border-color: #facc15;
  color: #0a0a0a;
}

.ruti-choice:hover .ruti-choice__btn svg {
  transform: translateX(4px);
}

/* WIP Choice Card — "Pripravujeme" placeholder */
.ruti-choice__img--wip {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ruti-choice__wip-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.4);
}

.ruti-choice__wip-content svg {
  opacity: 0.5;
}

.ruti-choice__wip-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5) !important;
}
.eweby-main .ruti-page .ruti-choice__wip-text { color: rgba(255,255,255,0.5) !important; }

.ruti-choice--wip:hover .ruti-choice__wip-content {
  color: rgba(255, 255, 255, 0.6);
}

.ruti-choice--wip:hover .ruti-choice__wip-content svg {
  opacity: 0.7;
}

.ruti-landing__contact {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ruti-landing__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.eweby-main .ruti-page .ruti-landing__contact-item { color: rgba(255,255,255,0.7) !important; }
.eweby-main .ruti-page a.ruti-landing__contact-item { color: rgba(255,255,255,0.7) !important; }

.ruti-landing__contact-item:hover {
  color: #facc15 !important;
}

/* ── Landing Page Responsive ── */
@media (max-width: 768px) {
  /* Allow scrolling on mobile */
  body:has(.ruti-landing) {
    overflow: auto !important;
    height: auto !important;
  }
  body:has(.ruti-landing) .eweby-main {
    height: auto !important;
    overflow: visible !important;
  }
  .ruti-landing {
    min-height: 100vh;
    height: auto !important;
    padding: 32px 20px;
    overflow: visible !important;
  }
  .ruti-landing__inner {
    max-width: 100%;
  }
  .ruti-landing__logo {
    margin-bottom: 24px;
  }
  .ruti-landing__logo-img {
    max-height: 60px;
  }
  .ruti-landing__tagline {
    font-size: 0.8rem;
  }
  .ruti-landing__choices {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
  .ruti-choice__img {
    height: 140px;
  }
  .ruti-choice__content {
    padding: 20px 18px;
  }
  .ruti-choice__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-bottom: 14px;
  }
  .ruti-choice__icon svg {
    width: 24px;
    height: 24px;
  }
  .ruti-choice__title {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }
  .ruti-choice__desc {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
  .ruti-choice__btn {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
  .ruti-landing__contact {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .ruti-landing__contact-item {
    font-size: 0.85rem;
  }
  /* Reduce decorative elements on mobile */
  .ruti-landing::after {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
  }
}

@media (max-width: 480px) {
  .ruti-landing {
    padding: 24px 16px;
  }
  .ruti-landing__logo-img {
    max-height: 50px;
  }
  .ruti-choice__img {
    height: 120px;
  }
  .ruti-choice__content {
    padding: 16px 14px;
  }
  .ruti-choice__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }
  .ruti-choice__icon svg {
    width: 20px;
    height: 20px;
  }
  .ruti-choice__title {
    font-size: 1.05rem;
  }
  .ruti-choice__desc {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .ruti-choice__btn {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
  .ruti-landing__contact-item {
    font-size: 0.8rem;
  }
  .ruti-landing__contact-item svg {
    width: 16px;
    height: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RUTI WORK IN PROGRESS PAGE — Stavebná činnosť
   ═══════════════════════════════════════════════════════════════ */

/* Hide header and footer on WIP page + disable scroll */
body:has(.ruti-wip) {
  overflow: hidden !important;
  height: 100vh !important;
}
body:has(.ruti-wip) .eweby-header,
body:has(.ruti-wip) .ruti-topbar,
body:has(.ruti-wip) .eweby-footer,
body:has(.ruti-wip) .eweby-float-btns {
  display: none !important;
}
body:has(.ruti-wip) .eweby-main {
  padding-top: 0;
  height: 100vh;
  overflow: hidden;
}

.ruti-wip {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 35%, #252525 50%, #1a1a1a 65%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative effects removed for clean design */
.ruti-wip::before,
.ruti-wip::after { display: none !important; }

.ruti-wip__inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.ruti-wip__logo {
  margin-bottom: 32px;
}

.ruti-wip__logo-img {
  max-height: 60px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.ruti-wip__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 50%;
  color: #facc15;
}

.ruti-wip__title {
  font-family: var(--ruti-font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white !important;
  margin-bottom: 20px;
}
.eweby-main .ruti-page .ruti-wip__title { color: white !important; }

.ruti-wip__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.7;
  margin-bottom: 40px;
}
.eweby-main .ruti-page .ruti-wip__desc { color: rgba(255,255,255,0.7) !important; }

.ruti-wip__progress {
  width: 100%;
  max-width: 300px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 auto 16px;
  overflow: hidden;
}

.ruti-wip__progress-bar {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #facc15, #f59e0b);
  border-radius: 3px;
  animation: ruti-wip-loading 2s ease-in-out infinite;
}

@keyframes ruti-wip-loading {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(150%); }
  100% { transform: translateX(-100%); }
}

.ruti-wip__status {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
}

.ruti-wip__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.ruti-wip__contact {
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--ruti-radius);
}

.ruti-wip__contact p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.ruti-wip__contact a {
  color: var(--ruti-mint-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ruti-wip__contact a:hover {
  color: white;
}

.ruti-wip__contact span {
  color: rgba(255,255,255,0.3);
  margin: 0 12px;
}

/* ── WIP Page Responsive ── */
@media (max-width: 768px) {
  /* Allow scrolling on mobile */
  body:has(.ruti-wip) {
    overflow: auto !important;
    height: auto !important;
  }
  body:has(.ruti-wip) .eweby-main {
    height: auto !important;
    overflow: visible !important;
  }
  .ruti-wip {
    min-height: 100vh;
    height: auto !important;
    padding: 48px 20px;
    overflow: visible !important;
  }
  .ruti-wip__logo {
    margin-bottom: 24px;
  }
  .ruti-wip__logo-img {
    max-height: 50px;
  }
  .ruti-wip__icon {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
  }
  .ruti-wip__icon svg {
    width: 56px;
    height: 56px;
  }
  .ruti-wip__title {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
  .ruti-wip__desc {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }
  .ruti-wip__status {
    margin-bottom: 32px;
  }
  .ruti-wip__actions {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .ruti-wip {
    padding: 32px 16px;
  }
  .ruti-wip__logo-img {
    max-height: 40px;
  }
  .ruti-wip__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  .ruti-wip__icon svg {
    width: 44px;
    height: 44px;
  }
  .ruti-wip__title {
    font-size: 1.4rem;
  }
  .ruti-wip__desc {
    font-size: 0.85rem;
  }
  .ruti-wip__actions {
    flex-direction: column;
  }
  .ruti-wip__actions .ruti-btn {
    width: 100%;
    justify-content: center;
  }
  .ruti-wip__contact span {
    display: none;
  }
  .ruti-wip__contact a {
    display: block;
    margin: 8px 0;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RUTI DARK THEME OVERRIDES — Klient požiadavka
   ═══════════════════════════════════════════════════════════════ */

/* ── Remove page frame/border ── */
body.eweby-body {
  border: none;
  outline: none;
}
.eweby-main {
  border: none;
  outline: none;
  box-shadow: none;
}
.ruti-page {
  border: none;
  outline: none;
  box-shadow: none;
}

/* ── Dark header for ruti pages ── */
body:has(.ruti-page) .eweby-header,
body:has(.ruti-landing) .eweby-header,
body:has(.ruti-wip) .eweby-header {
  top: 0;
  margin: 0;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
body:has(.ruti-page) .eweby-header.is-scrolled,
body:has(.ruti-landing) .eweby-header.is-scrolled,
body:has(.ruti-wip) .eweby-header.is-scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
body:has(.ruti-page) .eweby-header .eweby-nav__link,
body:has(.ruti-page) .eweby-header .eweby-logo__custom-img {
  filter: brightness(0) invert(1);
}
body:has(.ruti-page) .eweby-header .eweby-nav__link {
  color: rgba(255, 255, 255, 0.85);
}
body:has(.ruti-page) .eweby-header .eweby-nav__link:hover {
  color: #facc15;
}
body:has(.ruti-page) .eweby-header .eweby-btn--primary {
  background: #facc15;
  color: #0a0a0a;
}
body:has(.ruti-page) .eweby-hamburger__line {
  background: white;
}

/* ── Progress bar in theme colors ── */
body:has(.ruti-page) .eweby-scroll-progress,
body:has(.ruti-landing) .eweby-scroll-progress,
body:has(.ruti-wip) .eweby-scroll-progress {
  background: linear-gradient(90deg, #facc15, #f59e0b);
}

/* ── Dark background for sections ── */
.eweby-main .ruti-page {
  background: #0a0a0a;
}
.ruti-section {
  background: #0a0a0a;
}
.ruti-section--gray {
  background: #1a1a1a;
}
.ruti-section .ruti-section-hd__title,
.ruti-section .ruti-split__title {
  color: white;
}
.ruti-section .ruti-section-hd__sub,
.ruti-section .ruti-split__text {
  color: rgba(255, 255, 255, 0.65);
}
.eweby-main .ruti-page .ruti-section .ruti-section-hd__title { color: white; }
.eweby-main .ruti-page .ruti-section .ruti-section-hd__sub { color: rgba(255,255,255,0.65); }
.eweby-main .ruti-page .ruti-section .ruti-split__title { color: white; }
.eweby-main .ruti-page .ruti-section .ruti-split__text { color: rgba(255,255,255,0.65); }
.eweby-main .ruti-page .ruti-section .ruti-split__label { color: #92400e; }

/* ── Service cards dark theme ── */
.ruti-svc {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.08);
}
.ruti-svc:hover {
  border-color: rgba(250, 204, 21, 0.3);
  background: #252525;
}
.ruti-svc__title {
  color: white;
}
.ruti-svc__desc {
  color: rgba(255, 255, 255, 0.65);
}
.ruti-svc__tag {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}
.eweby-main .ruti-page .ruti-svc__title { color: white; }
.eweby-main .ruti-page .ruti-svc__desc { color: rgba(255,255,255,0.65); }

/* ── Checks list dark theme ── */
.ruti-checks li {
  color: rgba(255, 255, 255, 0.75);
}
.eweby-main .ruti-page .ruti-checks li { color: rgba(255,255,255,0.75); }

/* ── Contact cards dark theme ── */
.ruti-contact-card {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.08);
}
.ruti-contact-card__title {
  color: white;
  border-color: rgba(255, 255, 255, 0.1);
}
.ruti-contact-item__label {
  color: rgba(255, 255, 255, 0.5);
}
.ruti-contact-item__val,
.ruti-contact-item__val a {
  color: white;
}
.ruti-contact-item {
  border-color: rgba(255, 255, 255, 0.08);
}
.eweby-main .ruti-page .ruti-contact-card__title { color: white; }
.eweby-main .ruti-page .ruti-contact-item__val { color: white; }
.eweby-main .ruti-page .ruti-contact-item__val a { color: white; }

/* ── Contact box values (grid layout) ── */
.eweby-main .ruti-page .ruti-contact-box__val,
.eweby-main .ruti-page a.ruti-contact-box__val {
  color: white !important;
}
.eweby-main .ruti-page a.ruti-contact-box__val:hover {
  color: #facc15 !important;
}
.eweby-main .ruti-page .ruti-contact-box__label {
  color: rgba(255, 255, 255, 0.5);
}

/* ── Clients section — remove borders, add spacing ── */
.ruti-clients {
  background: #1a1a1a;
  border-top: none;
  border-bottom: none;
}
.ruti-clients__label {
  margin-bottom: 56px;
  color: rgba(255, 255, 255, 0.6);
}
.eweby-main .ruti-page .ruti-clients__label { color: rgba(255,255,255,0.6); }

/* ── Gallery dark theme ── */
.ruti-section--gray.ruti-section#galeria {
  background: #1a1a1a;
}

/* ── Footer already dark ── */

/* ── Remove any remaining borders ── */
.ruti-hero {
  border: none;
}
.ruti-section,
.ruti-clients,
.ruti-cta {
  border: none;
}

