/* ========================================
   PRICING SECTION
   ======================================== */

#pricing {
  position: relative;
  background: #FFFFFF;
  padding: 88px 0;
  overflow: visible;
}

/* Eyebrow */
.pricing-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8b3fa8;
  text-align: center;
  margin-bottom: 16px;
}

/* Title */
.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  text-align: center;
  margin: 0 auto 16px;
  max-width: 900px;
}

/* Subtitle */
.pricing-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #6B7280;
  text-align: center;
  margin: 0 auto 60px;
  max-width: 700px;
}

/* Pricing Category - Full Width Premium Design */
.pricing-category {
  position: relative;
  margin: 0 0 0 0;
  padding: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.pricing-category:first-of-type {
  margin-top: 80px;
}

.pricing-category:last-of-type {
  margin-bottom: 80px;
}

/* Category Header Wrapper - Full Width */
.pricing-category-header {
  position: relative;
  padding: 80px 40px 60px;
  overflow: hidden;
}

/* Decorative Top Border */
.pricing-category-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  z-index: 1;
}

/* Abstract Background Pattern */
.pricing-category-header::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

/* Container for centered content */
.pricing-category-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pricing-category-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin: 0 auto 20px;
  max-width: 900px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.pricing-category-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.7;
  opacity: 0.85;
}

/* Category Content Wrapper - Full Width */
.pricing-category-content {
  position: relative;
  padding: 80px 40px 100px;
  overflow: hidden;
}

/* Subtle texture overlay */
.pricing-category-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Container for centered grid */
.pricing-category-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Both Categories - Unified Premium Purple Theme */
.pricing-category:first-of-type .pricing-category-header,
.pricing-category:nth-of-type(2) .pricing-category-header {
  background: linear-gradient(165deg, #1a0b2e 0%, #2d1b4e 40%, #3d2860 100%);
}

.pricing-category:first-of-type .pricing-category-header::before,
.pricing-category:nth-of-type(2) .pricing-category-header::before {
  background: linear-gradient(90deg, #8b3fa8 0%, #9b5fc7 50%, #a06bf0 100%);
  box-shadow: 0 4px 24px rgba(139, 63, 168, 0.4);
}

.pricing-category:first-of-type .pricing-category-header::after,
.pricing-category:nth-of-type(2) .pricing-category-header::after {
  background: radial-gradient(circle, #8b3fa8 0%, transparent 70%);
}

.pricing-category:first-of-type .pricing-category-title,
.pricing-category:nth-of-type(2) .pricing-category-title {
  color: #FFFFFF;
  text-shadow: 0 2px 24px rgba(139, 63, 168, 0.3);
}

.pricing-category:first-of-type .pricing-category-subtitle,
.pricing-category:nth-of-type(2) .pricing-category-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-category:first-of-type .pricing-category-content,
.pricing-category:nth-of-type(2) .pricing-category-content {
  background: linear-gradient(165deg, #F8F7FF 0%, #F0EBFF 50%, #F5F3FF 100%);
  border-top: 3px solid rgba(139, 63, 168, 0.2);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  gap: 28px;
  margin: 0 auto;
}

.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1260px;
  margin: 0 auto;
}

.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1524px;
  margin: 0 auto;
}

/* Pricing Card */
.pricing-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  padding: 32px 24px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 63, 168, 0.4);
  box-shadow: 0 20px 60px rgba(139, 63, 168, 0.2);
}

/* Popular Badge */
.pricing-card.popular {
  border: 2px solid #8b3fa8;
  box-shadow: 0 12px 40px rgba(139, 63, 168, 0.2);
}

.pricing-card.popular::before {
  content: 'NAJPOPULARNIJI';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8b3fa8, #6b2d8f);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(139, 63, 168, 0.3);
}

/* Bundle Badge */
.pricing-card.bundle {
  border: 2px solid #E8823A;
  box-shadow: 0 12px 40px rgba(232, 130, 58, 0.2);
}

.pricing-card.bundle::before {
  content: 'TRI U JEDAN';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E8823A, #FF6B35);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(232, 130, 58, 0.3);
  z-index: 10;
}

/* Starter Badge */
.pricing-card.starter {
  border: 2px solid #4BC8C0;
  box-shadow: 0 12px 40px rgba(75, 200, 192, 0.2);
}

.pricing-card.starter::before {
  content: 'START SMART';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4BC8C0, #3BA99C);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(75, 200, 192, 0.3);
  z-index: 10;
}

/* Growth Badge */
.pricing-card.growth {
  border: 2px solid #F4762A;
  box-shadow: 0 12px 40px rgba(244, 118, 42, 0.2);
}

.pricing-card.growth::before {
  content: 'PUNI POTENCIJAL';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F4762A, #FF8C42);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(244, 118, 42, 0.3);
  z-index: 10;
}

/* Monitor Badge */
.pricing-card.monitor {
  border: 2px solid #6B7280;
  box-shadow: 0 12px 40px rgba(107, 114, 128, 0.2);
}

.pricing-card.monitor::before {
  content: 'SMJERNICE ZA RAST';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6B7280, #4B5563);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
  z-index: 10;
}

/* Recommended Badge */
.pricing-card.recommended {
  border: 2px solid #4BC8C0;
  box-shadow: 0 12px 40px rgba(75, 200, 192, 0.2);
}

.pricing-card.recommended::before {
  content: 'PREPORUČENO';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4BC8C0, #3B7DD8);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(75, 200, 192, 0.3);
}

/* Card Header */
.pricing-card-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  height: 95px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pricing-card-name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.pricing-card-description {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.4;
}

/* Price */
.pricing-card-price {
  text-align: center;
  margin-bottom: 24px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}

/* Value Tag */
.pricing-value-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #6B7280;
  text-decoration: line-through;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

/* Growth Tag (za mjesečne pakete) - Identičan sa savings badge */
.pricing-growth-tag {
  display: inline-block;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  letter-spacing: 0.02em;
  animation: savingsPulse 2s ease-in-out infinite;
}

/* Savings Badge */
.pricing-savings {
  display: inline-block;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  letter-spacing: 0.02em;
  animation: savingsPulse 2s ease-in-out infinite;
}

@keyframes savingsPulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
    transform: scale(1.02);
  }
}

.pricing-price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.pricing-price-from {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #6B7280;
  margin-right: 4px;
}

.pricing-price-currency {
  font-size: 1.5rem;
  color: #6B7280;
}

.pricing-price-period {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #6B7280;
}

.pricing-price-note {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #9CA3AF;
  font-style: italic;
}

/* Features List */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pricing-features li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.5;
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
}

.pricing-features li:first-child {
  margin-top: 0;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #4BC8C0, #3B7DD8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-features li::after {
  content: '✓';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
}

/* CTA Button - All Purple, No Active States */
.pricing-card-cta {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid #8b3fa8;
  background: #FFFFFF;
  color: #8b3fa8;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(139, 63, 168, 0.15);
}

.pricing-card-cta.primary,
.pricing-card-cta.secondary {
  background: #FFFFFF;
  color: #8b3fa8;
  border: 2px solid #8b3fa8;
  box-shadow: 0 4px 16px rgba(139, 63, 168, 0.15);
}

/* Hover - Full Purple Background */
.pricing-card-cta:hover,
.pricing-card-cta.primary:hover,
.pricing-card-cta.secondary:hover {
  background: #8b3fa8;
  color: #FFFFFF;
  border-color: #8b3fa8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 63, 168, 0.3);
}

/* Remove all active states */
.pricing-card-cta:active,
.pricing-card-cta.primary:active,
.pricing-card-cta.secondary:active {
  background: #FFFFFF;
  color: #8b3fa8;
  transform: none;
}

.pricing-card-cta:focus-visible {
  outline: 3px solid #8b3fa8;
  outline-offset: 2px;
}

/* Override all package-specific button colors to purple */
.pricing-card.starter .pricing-card-cta,
.pricing-card.bundle .pricing-card-cta,
.pricing-card.monitor .pricing-card-cta,
.pricing-card.growth .pricing-card-cta,
.pricing-card.popular .pricing-card-cta,
.pricing-card.recommended .pricing-card-cta {
  background: #FFFFFF;
  color: #8b3fa8;
  border: 2px solid #8b3fa8;
  box-shadow: 0 4px 16px rgba(139, 63, 168, 0.15);
}

/* Full purple hover for all package-specific buttons */
.pricing-card.starter .pricing-card-cta:hover,
.pricing-card.bundle .pricing-card-cta:hover,
.pricing-card.monitor .pricing-card-cta:hover,
.pricing-card.growth .pricing-card-cta:hover,
.pricing-card.popular .pricing-card-cta:hover,
.pricing-card.recommended .pricing-card-cta:hover {
  background: #8b3fa8;
  color: #FFFFFF;
  border-color: #8b3fa8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 63, 168, 0.3);
}

/* Remove all package-specific active states */
.pricing-card.starter .pricing-card-cta:active,
.pricing-card.bundle .pricing-card-cta:active,
.pricing-card.monitor .pricing-card-cta:active,
.pricing-card.growth .pricing-card-cta:active,
.pricing-card.popular .pricing-card-cta:active,
.pricing-card.recommended .pricing-card-cta:active {
  background: #FFFFFF;
  color: #8b3fa8;
  transform: none;
}

/* Unified focus state for all */
.pricing-card.starter .pricing-card-cta:focus-visible,
.pricing-card.bundle .pricing-card-cta:focus-visible,
.pricing-card.monitor .pricing-card-cta:focus-visible,
.pricing-card.growth .pricing-card-cta:focus-visible {
  outline: 3px solid #8b3fa8;
  outline-offset: 2px;
}

/* Dodatne Usluge - Redesigned */
.pricing-extras {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-extras-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 36px;
  text-align: center;
}

/* Wrapper - Grid sa listom i detail panelom */
.pricing-extras-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.pricing-extras-left {
  flex: 1;
}

.pricing-extras-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-extra-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.pricing-extra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(139, 63, 168, 0.2);
}

.pricing-extra-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-extra-card:hover .pricing-extra-icon {
  transform: scale(1.1) rotate(-5deg);
}

.icon-orange {
  background: linear-gradient(135deg, #FDF0EA, #FFF4EE);
}

.icon-orange svg {
  color: #E8823A;
  stroke: #E8823A;
}

.icon-purple {
  background: linear-gradient(135deg, #F8F7FF, #F0EBFF);
}

.icon-purple svg {
  color: #8b3fa8;
  stroke: #8b3fa8;
}

.icon-teal {
  background: linear-gradient(135deg, #F0FFFE, #E6FFFD);
}

.icon-teal svg {
  color: #4BC8C0;
  stroke: #4BC8C0;
}

.pricing-extra-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.pricing-extra-price {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: #8b3fa8;
  font-weight: 700;
  display: block;
}

.pricing-extra-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFC 100%);
  border: 1.5px solid rgba(139, 63, 168, 0.12);
  border-radius: 16px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing-extra-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #8b3fa8, #4BC8C0);
  transform: scaleY(0);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 0 4px 4px 0;
}

.pricing-extra-item:hover {
  border-color: rgba(139, 63, 168, 0.3);
  box-shadow: 0 8px 24px rgba(139, 63, 168, 0.15), 
              0 2px 8px rgba(139, 63, 168, 0.08);
  transform: translateY(-4px) translateX(2px);
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F7FF 100%);
}

.pricing-extra-item:hover::before {
  transform: scaleY(1);
}

.pricing-extra-item:hover .pricing-extra-price {
  color: #6b2d8f;
}

.pricing-extra-item:active {
  transform: translateY(-2px) translateX(1px);
  box-shadow: 0 4px 12px rgba(139, 63, 168, 0.12);
}

/* Active state za selektovan item */
.pricing-extra-item.active {
  border-color: rgba(139, 63, 168, 0.4);
  background: linear-gradient(135deg, #F8F7FF 0%, #F0EBFF 100%);
  box-shadow: 0 8px 24px rgba(139, 63, 168, 0.2), 
              0 2px 8px rgba(139, 63, 168, 0.1),
              inset 0 0 0 1px rgba(139, 63, 168, 0.1);
  transform: translateX(2px);
}

.pricing-extra-item.active::before {
  transform: scaleY(1);
}

.pricing-extra-item.active .pricing-extra-price {
  color: #6b2d8f;
}

.pricing-extra-item .pricing-extra-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  margin: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-extra-item .pricing-extra-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.pricing-extra-item .pricing-extra-name {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: #1a1a1a;
  font-weight: 600;
  margin: 0;
  text-align: left;
  line-height: 1.4;
}

.pricing-extra-item .pricing-extra-price {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: #8b3fa8;
  font-weight: 700;
  white-space: nowrap;
  margin: 0;
  min-width: 90px;
  text-align: right;
  transition: color 0.3s ease;
}

/* Desktop Detail Panel (desna strana) */
.pricing-extras-right {
  position: sticky;
  top: 100px;
}

.pricing-detail-panel {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  border: 1.5px solid rgba(139, 63, 168, 0.12);
  border-radius: 24px;
  padding: 48px 40px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Placeholder state - redesigned */
.pricing-detail-placeholder {
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
}

.placeholder-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232, 130, 58, 0.12) 0%, rgba(139, 63, 168, 0.12) 100%);
  color: #E8823A;
  margin: 0 auto 24px;
  animation: placeholderArrowPulse 2s ease-in-out infinite;
  position: relative;
}

.placeholder-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(232, 130, 58, 0.3);
  animation: placeholderRing 2s ease-out infinite;
}

.placeholder-arrow svg {
  animation: placeholderArrowMove 1.5s ease-in-out infinite;
}

.placeholder-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, #8b3fa8 0%, #E8823A 100%);
  color: #ffffff;
  margin: 0 auto 20px;
  box-shadow: 0 12px 32px rgba(139, 63, 168, 0.25);
}

.placeholder-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.placeholder-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  color: #6B7280;
}

@keyframes placeholderArrowPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes placeholderArrowMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-6px);
  }
}

@keyframes placeholderRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Detail content */
.pricing-detail-content {
  width: 100%;
  text-align: center;
  animation: fadeSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-detail-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
}

.pricing-detail-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 23px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(139, 63, 168, 0.2), rgba(75, 200, 192, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.pricing-detail-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.pricing-detail-icon svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.pricing-detail-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-detail-description {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 28px;
}

.pricing-detail-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8b3fa8, #4BC8C0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 28px;
  position: relative;
  display: block;
}

.pricing-detail-price::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #8b3fa8, #4BC8C0);
  border-radius: 2px;
}

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

.pricing-detail-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-detail-features li {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
}

.pricing-detail-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: 700;
  font-size: 1.125rem;
}

.pricing-detail-content .btn {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 32px;
  font-size: 0.9375rem;
  box-shadow: 0 8px 24px rgba(139, 63, 168, 0.25);
  transition: all 0.3s ease;
}

.pricing-detail-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139, 63, 168, 0.35);
}

/* Extra Service Modals */
.extra-service-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.extra-service-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.extra-service-modal.closing {
  animation: fadeOut 0.3s ease forwards;
}

.extra-service-modal.closing .extra-modal-content {
  animation: modalSlideDown 0.3s ease forwards;
}

.extra-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.extra-modal-content {
  position: relative;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  border-radius: 28px;
  padding: 40px 36px 36px;
  max-width: 520px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: auto;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.extra-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
  padding: 0;
}

.extra-modal-close:hover {
  background: rgba(139, 63, 168, 0.1);
  color: #8b3fa8;
  transform: rotate(90deg);
}

.extra-modal-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.extra-modal-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 23px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(139, 63, 168, 0.2), rgba(75, 200, 192, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.extra-service-modal.active .extra-modal-icon::before {
  opacity: 1;
}

.extra-modal-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.extra-modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.extra-modal-description {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 32px;
  text-align: center;
}

.extra-modal-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8b3fa8, #4BC8C0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 32px;
  position: relative;
  display: block;
}

.extra-modal-price::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #8b3fa8, #4BC8C0);
  border-radius: 2px;
}

.extra-modal-content .btn {
  display: inline-block;
  margin: 24px auto 0;
  padding: 12px 32px;
  font-size: 0.9375rem;
  box-shadow: 0 8px 24px rgba(139, 63, 168, 0.25);
  transition: all 0.3s ease;
}

.extra-modal-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139, 63, 168, 0.35);
}

/* Modal Value Stack */
.pricing-modal-value-stack {
  margin-bottom: 12px;
}

.pricing-modal-value-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #6B7280;
  text-decoration: line-through;
  letter-spacing: 0.02em;
}

.pricing-modal-value-label strong {
  font-weight: 700;
  color: #4B5563;
}

/* Modal Savings Badge */
.pricing-modal-savings-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 24px;
  margin-top: 12px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
  letter-spacing: 0.02em;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
  }
  50% {
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.45);
  }
}

.pricing-modal-cta {
  display: inline-block;
  background: linear-gradient(135deg, #8b3fa8, #6b2d8f);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 1.0625rem;
  box-shadow: 0 8px 24px rgba(139, 63, 168, 0.25);
  transition: all 0.3s ease;
}

.pricing-modal-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139, 63, 168, 0.35);
}

/* Desna kolona - Foto kartica */
.pricing-extras-right {
  position: sticky;
  top: 100px;
}

.pricing-photo-card {
  background: linear-gradient(135deg, #F8F7FF, #F0EBFF);
  border: 1px solid rgba(123, 75, 200, 0.15);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(123, 75, 200, 0.12);
  transition: all 0.3s ease;
}

.pricing-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(123, 75, 200, 0.18);
  border-color: rgba(123, 75, 200, 0.25);
}

.pricing-photo-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #8b3fa8, #a06bf0);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(139, 63, 168, 0.3);
}

.pricing-photo-icon svg {
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.pricing-photo-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.pricing-photo-description {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #6B7280;
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-photo-price {
  margin-bottom: 24px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(123, 75, 200, 0.1);
}

.pricing-photo-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #8b3fa8;
  margin-bottom: 4px;
}

.pricing-photo-period {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #6B7280;
}

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

.pricing-photo-features li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #4B5563;
  padding: 10px 0 10px 28px;
  position: relative;
  line-height: 1.5;
}

.pricing-photo-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8b3fa8;
  font-weight: 700;
  font-size: 1.125rem;
}

.pricing-photo-card .btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 0.9375rem;
}

/* Profesionalna Foto Produkcija */
.pricing-photo {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-photo-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 12px;
}

.pricing-photo-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #6B7280;
  text-align: center;
  margin: 0 auto 32px;
  max-width: 700px;
  line-height: 1.6;
}

.pricing-photo-features {
  max-width: 700px;
  margin: 0 auto 40px;
}

.pricing-photo-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-photo-features ul li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #4B5563;
  line-height: 1.6;
  padding: 8px 0 8px 32px;
  position: relative;
}

.pricing-photo-features ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #8b3fa8;
  font-weight: 700;
}

.pricing-photo-table {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.pricing-photo-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, #F8F7FF, #F0EBFF);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-photo-table-col {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a1a;
  padding: 16px 20px;
  text-align: left;
}

.pricing-photo-table-col:last-child {
  text-align: right;
}

.pricing-photo-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease;
}

.pricing-photo-table-row:last-child {
  border-bottom: none;
}

.pricing-photo-table-row:hover {
  background: #F8F9FA;
}

.pricing-photo-table-cell {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #4B5563;
  padding: 16px 20px;
  text-align: left;
}

.pricing-photo-table-price {
  font-weight: 600;
  color: #1a1a1a;
  text-align: right;
}

/* Pricing CTA */
.pricing-cta {
  text-align: center;
  margin-top: 60px;
  padding: 32px 40px;
  background: linear-gradient(135deg, #F8F7FF, #F0EBFF);
  border-radius: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cta-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.pricing-cta-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #6B7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Pricing Modals */
.pricing-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.pricing-modal.active {
  display: flex;
}

.pricing-modal.closing {
  animation: fadeOut 0.3s ease forwards;
}

.pricing-modal.closing .pricing-modal-content {
  animation: modalSlideDown 0.3s ease forwards;
}

.pricing-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.pricing-modal-content {
  position: relative;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  border-radius: 28px;
  padding: 40px 36px 36px;
  max-width: 520px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  /* iOS scroll optimization */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  z-index: 1;
  animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: auto;
  text-align: center;
}

.pricing-modal-section {
  text-align: left;
}

.pricing-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
  padding: 0;
}

.pricing-modal-close:hover {
  background: rgba(139, 63, 168, 0.1);
  color: #8b3fa8;
  transform: rotate(90deg);
}

.pricing-modal-close:focus-visible {
  outline: 3px solid #8b3fa8;
  outline-offset: 2px;
}

.pricing-modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
  line-height: 1.2;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-modal-subtitle {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #555;
  margin: 0 0 24px;
  text-align: center;
}

.pricing-modal-price {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-modal-price-amount {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8b3fa8, #4BC8C0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 6px;
  position: relative;
}

.pricing-modal-price-period {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #6B7280;
  display: block;
}

.pricing-modal-section {
  margin-bottom: 20px;
}

.pricing-modal-section:last-of-type {
  margin-bottom: 0;
}

.pricing-modal-section h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.pricing-modal-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-modal-section ul li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #4B5563;
  padding: 7px 0 7px 28px;
  line-height: 1.45;
  position: relative;
}

.pricing-modal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #4BC8C0, #3B7DD8);
  border-radius: 50%;
}

.pricing-modal-section ul li::after {
  content: '✓';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-modal-section p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.5;
  margin-bottom: 10px;
}

.pricing-modal-section p:last-child {
  margin-bottom: 0;
}

.pricing-modal-cta {
  display: inline-block;
  margin: 24px auto 0;
  padding: 12px 32px;
  font-size: 0.9375rem;
  box-shadow: 0 8px 24px rgba(139, 63, 168, 0.25);
  transition: all 0.3s ease;
}

.pricing-modal-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139, 63, 168, 0.35);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes modalSlideDown {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive - Large Tablet (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  #pricing {
    padding: 110px 0;
  }
  
  .pricing-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }
  
  .pricing-subtitle {
    font-size: 1.0625rem;
    margin-bottom: 56px;
  }
  
  .pricing-category-title {
    font-size: 1.625rem;
  }
  
  .pricing-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
  }
  
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
  }
  
  .pricing-card.popular,
  .pricing-card.recommended {
    grid-column: span 2;
  }
  
  .pricing-extras-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pricing-extras-right {
    position: static;
  }
  
  .pricing-extras-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-modal-content {
    padding: 40px 32px;
    max-width: 560px;
  }
}

/* Responsive - Small Tablet/Large Mobile (481px - 768px) */
@media (max-width: 1100px) {
  .pricing-extras-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Sakrij detail panel na mobilnim uređajima */
  .pricing-extras-right {
    display: none;
  }
  
  /* Omogući da list items otvaraju modale */
  .pricing-extra-item {
    cursor: pointer;
  }
  
  /* Na mobilnim, sve items otvaraju modale */
  .pricing-extra-item[data-service="photography"] {
    display: flex;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  #pricing {
    padding: 72px 0 72px;
  }
  
  #pricing .container {
    padding: 0 24px;
  }
  
  .pricing-title {
    font-size: clamp(1.75rem, 5vw, 2.2rem);
  }
  
  .pricing-subtitle {
    font-size: 1rem;
    margin-bottom: 48px;
    padding: 0 16px;
  }
  
  .pricing-category {
    margin-bottom: 64px;
    padding: 48px 32px;
    border-radius: 20px;
  }
  
  .pricing-category-title {
    font-size: 1.5rem;
    padding: 0;
  }
  
  .pricing-category-subtitle {
    font-size: 0.9375rem;
    padding: 0;
  }
  
  .pricing-grid-3,
  .pricing-grid-4 {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 480px;
  }
  
  .pricing-card {
    padding: 36px 28px;
  }
  
  .pricing-card.popular,
  .pricing-card.recommended {
    order: -1;
  }
  
  .pricing-card-name {
    font-size: 1.375rem;
  }
  
  .pricing-price {
    font-size: 3rem;
  }
  
  .pricing-card-cta {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }
  
  .pricing-extras-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .pricing-extra-item {
    padding: 14px 18px;
  }
  
  .pricing-cta {
    padding: 28px 32px;
    margin-top: 56px;
    border-radius: 14px;
  }
  
  .pricing-cta-title {
    font-size: 1.375rem;
  }
  
  .pricing-cta-text {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }
  
  .pricing-modal-content {
    padding: 36px 28px;
    max-height: 88vh;
  }
  
  .pricing-modal-title {
    font-size: 1.625rem;
  }
  
  .pricing-modal-subtitle {
    font-size: 1rem;
  }
  
  .pricing-modal-price-amount {
    font-size: 2.25rem;
  }
}

/* Scroll Animation - Mobile Only */
@media (max-width: 768px) {
  .pricing-card {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  /* Disable hover/click effects on mobile */
  .pricing-card:hover,
  .pricing-card:active,
  .pricing-card:focus {
    transform: none;
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: none;
  }
  
  .pricing-card.popular:hover,
  .pricing-card.popular:active,
  .pricing-card.popular:focus {
    border-color: #8b3fa8;
    box-shadow: 0 12px 40px rgba(139, 63, 168, 0.2);
  }
  
  .pricing-card.recommended:hover,
  .pricing-card.recommended:active,
  .pricing-card.recommended:focus {
    border-color: #4BC8C0;
    box-shadow: 0 12px 40px rgba(75, 200, 192, 0.2);
  }
  
  /* Only scroll animation active */
  .pricing-card.in-view {
    transform: scale(1.02);
    border-color: rgba(139, 63, 168, 0.5);
    box-shadow: 0 16px 48px rgba(139, 63, 168, 0.25);
  }
  
  .pricing-card.popular.in-view {
    border-color: #8b3fa8;
    box-shadow: 0 20px 56px rgba(139, 63, 168, 0.35);
  }
  
  .pricing-card.recommended.in-view {
    border-color: #4BC8C0;
    box-shadow: 0 20px 56px rgba(75, 200, 192, 0.35);
  }
}

/* Responsive - Mobile (≤480px) */
@media (max-width: 480px) {
  #pricing {
    padding: 56px 0 56px;
  }
  
  #pricing .container {
    padding: 0 16px;
  }
  
  .pricing-eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }
  
  .pricing-title {
    font-size: clamp(1.375rem, 6vw, 1.75rem);
    line-height: 1.3;
    margin-bottom: 12px;
  }
  
  .pricing-subtitle {
    font-size: 0.875rem;
    margin-bottom: 36px;
    padding: 0;
    line-height: 1.6;
    max-width: 100%;
  }
  
  .pricing-category:first-of-type {
    margin-top: 48px;
  }
  
  .pricing-category:last-of-type {
    margin-bottom: 48px;
  }
  
  .pricing-category-header {
    padding: 48px 20px 40px;
  }
  
  .pricing-category-header::before {
    height: 4px;
  }
  
  .pricing-category-header::after {
    width: 400px;
    height: 400px;
    top: -40%;
    right: -20%;
  }
  
  .pricing-category-content {
    padding: 48px 20px 60px;
  }
  
  .pricing-category-title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    line-height: 1.3;
    margin-bottom: 12px;
  }
  
  .pricing-category-subtitle {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
  
  .pricing-grid-3,
  .pricing-grid-4 {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }
  
  .pricing-card {
    padding: 24px 20px 28px;
    border-radius: 14px;
    border-width: 1px;
  }
  
  .pricing-card:hover {
    transform: translateY(-4px);
  }
  
  .pricing-card.popular,
  .pricing-card.recommended {
    order: -1;
  }
  
  .pricing-card.popular,
  .pricing-card.recommended {
    border-width: 1.5px;
  }
  
  .pricing-card.popular::before,
  .pricing-card.recommended::before {
    font-size: 0.5625rem;
    padding: 4px 14px;
    top: -9px;
    letter-spacing: 0.08em;
  }
  
  .pricing-card-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  
  .pricing-card-name {
    font-size: 1.125rem;
    margin-bottom: 6px;
  }
  
  .pricing-card-description {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
  
  .pricing-card-price {
    margin-bottom: 12px;
  }
  
  .pricing-price-wrapper {
    gap: 6px;
    margin-bottom: 6px;
  }
  
  .pricing-price {
    font-size: 2.25rem;
  }
  
  .pricing-price-from {
    font-size: 0.875rem;
  }
  
  .pricing-price-currency {
    font-size: 1.125rem;
  }
  
  .pricing-price-period {
    font-size: 0.8125rem;
  }
  
  .pricing-price-note {
    font-size: 0.75rem;
  }
  
  .pricing-features {
    margin-bottom: 20px;
  }
  
  .pricing-features li {
    font-size: 0.8125rem;
    padding: 8px 0 8px 26px;
    line-height: 1.5;
  }
  
  .pricing-features li::before {
    width: 16px;
    height: 16px;
    left: 0;
  }
  
  .pricing-features li::after {
    left: 4px;
    font-size: 0.625rem;
  }
  
  .pricing-card-cta {
    padding: 14px 20px;
    font-size: 0.875rem;
    border-radius: 10px;
    min-height: 46px;
    font-weight: 600;
  }
  
  .pricing-extras {
    margin-top: 40px;
    padding: 32px 20px;
    border-radius: 16px;
  }
  
  .pricing-extras-title {
    font-size: 1.125rem;
    margin-bottom: 24px;
    padding: 0;
  }
  
  .pricing-extras-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .pricing-extra-item {
    padding: 16px;
    min-height: 60px;
    border-radius: 10px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  
  .pricing-extra-name {
    font-size: 0.8125rem;
    flex: 1;
  }
  
  .pricing-extra-price {
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
  }
  
  .pricing-cta {
    padding: 24px 20px;
    margin-top: 40px;
    border-radius: 12px;
  }
  
  .pricing-cta-title {
    font-size: 1.125rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }
  
  .pricing-cta-text {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  
  .pricing-cta .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.875rem;
  }
  
  .pricing-modal {
    padding: 12px;
  }
  
  .pricing-modal-content {
    padding: 24px 20px;
    max-height: 92vh;
    border-radius: 14px;
  }
  
  .pricing-modal-close {
    width: 44px;
    height: 44px;
    top: 12px;
    right: 12px;
    font-size: 1.5rem;
  }
  
  .pricing-modal-title {
    font-size: 1.25rem;
    line-height: 1.35;
    padding-right: 36px;
    margin-bottom: 6px;
  }
  
  .pricing-modal-subtitle {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  
  .pricing-modal-price {
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  .pricing-modal-price-amount {
    font-size: 1.75rem;
    margin-bottom: 4px;
  }
  
  .pricing-modal-price-period {
    font-size: 0.8125rem;
  }
  
  .pricing-modal-section {
    margin-bottom: 20px;
  }
  
  .pricing-modal-section:last-of-type {
    margin-bottom: 0;
  }
  
  .pricing-modal-section h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .pricing-modal-section ul li {
    font-size: 0.8125rem;
    padding: 7px 0 7px 26px;
    line-height: 1.5;
  }
  
  .pricing-modal-section ul li::before {
    width: 16px;
    height: 16px;
  }
  
  .pricing-modal-section ul li::after {
    left: 4px;
    font-size: 0.625rem;
  }
  
  .pricing-modal-section p {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
  
  .pricing-modal-cta {
    margin-top: 20px;
    padding: 14px 20px;
    font-size: 0.875rem;
    width: 100%;
  }
  
  .pricing-photo-title {
    font-size: 1.125rem;
    padding: 0 8px;
  }
  
  .pricing-photo-subtitle {
    font-size: 0.875rem;
    padding: 0 8px;
  }
  
  .pricing-photo-table {
    font-size: 0.8125rem;
  }
  
  .pricing-photo-table-col,
  .pricing-photo-table-cell {
    padding: 10px 12px;
    font-size: 0.8125rem;
  }
}
