.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 2rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: -30% 20% auto;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.14), transparent 65%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text);
}

.prose .about-inline-brand {
  font-size: clamp(1.2em, 3vw, 1.75em);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gradient);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: about-page-brand-shimmer 4s linear infinite;
}

@keyframes about-page-brand-shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .prose .about-inline-brand {
    animation: none;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: var(--primary);
    -webkit-text-fill-color: currentColor;
  }
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 52ch;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.service-block {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.service-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-block h2 {
  font-size: 1.25rem;
  margin: 0 0 1rem;
  color: var(--text);
}

.service-block ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.service-block li {
  margin-bottom: 0.35rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out);
}

.portfolio-card:hover {
  transform: translateY(-4px);
}

.portfolio-card__img {
  aspect-ratio: 16/10;
  background: var(--gradient-soft);
}

.portfolio-card__body {
  padding: 1.25rem;
}

.portfolio-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: var(--text);
}

.blog-list {
  display: grid;
  gap: 1.5rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: box-shadow 0.35s;
}

.blog-card h2 a {
  color: var(--text);
}

.blog-card h2 a:hover {
  color: #93c5fd;
}

.blog-card:hover {
  box-shadow: var(--shadow-soft);
}

@media (max-width: 640px) {
  .blog-card {
    grid-template-columns: 1fr;
  }
}

.blog-card__thumb {
  border-radius: var(--radius-sm);
  min-height: 120px;
  background: var(--gradient-soft);
}

.blog-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.blog-card time {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.prose {
  max-width: 68ch;
  color: var(--text);
}

.prose a {
  color: #93c5fd;
}

.prose h2 {
  margin-top: 2rem;
}

.section--contact-social {
  padding-top: 0.25rem;
  padding-bottom: 1rem;
}

.contact-social-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 1.25rem);
}

.contact-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: min(100%, 11rem);
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  transition: transform 0.3s var(--ease-out);
}

.contact-social:hover {
  transform: translateY(-3px) scale(1.03);
}

.contact-social:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.contact-social__icon {
  display: flex;
  flex-shrink: 0;
}

.contact-social--ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 20%, #dc2743 45%, #cc2366 70%, #bc1888 100%);
  background-size: 220% 220%;
  animation: contact-social-ig-flow 5s ease infinite;
  box-shadow: 0 8px 28px rgba(188, 24, 136, 0.38);
}

@keyframes contact-social-ig-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.contact-social--fb {
  background: #1877f2;
  animation: contact-social-fb-glow 2.6s ease-in-out infinite;
  box-shadow: 0 8px 28px rgba(24, 119, 242, 0.4);
}

@keyframes contact-social-fb-glow {
  0%,
  100% {
    box-shadow:
      0 8px 28px rgba(24, 119, 242, 0.35),
      0 0 0 0 rgba(24, 119, 242, 0.4);
  }
  50% {
    box-shadow:
      0 12px 36px rgba(24, 119, 242, 0.5),
      0 0 28px 6px rgba(24, 119, 242, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-social--ig,
  .contact-social--fb {
    animation: none;
  }

  .contact-social--ig {
    background: linear-gradient(135deg, #e6683c, #dc2743, #bc1888);
  }

  .contact-social--fb {
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.35);
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: -30px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-card--meet {
  justify-content: flex-start;
  gap: 1.25rem;
}

.contact-card--meet form {
  margin-top: 0.25rem;
}

.contact-card__meet-head,
.contact-card__form-head {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.contact-card__meet-text {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.contact-card__meet-hint {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.contact-card--form form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-card--form form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-card__datetime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.contact-card__submit {
  width: 100%;
  margin-top: 0.25rem;
}

.contact-card__status {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--border);
}

.contact-quick__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.45);
  color: var(--text);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s var(--ease-out),
    box-shadow 0.2s;
}

.contact-quick__item:hover {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-quick__item:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.65);
  outline-offset: 2px;
}

.contact-quick__item--wa:hover {
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(37, 211, 102, 0.08);
}

.contact-quick__item--mail:hover {
  border-color: rgba(96, 165, 250, 0.5);
}

.contact-quick__item--tel:hover {
  border-color: rgba(167, 139, 250, 0.5);
}

.contact-quick__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-quick__item--wa .contact-quick__icon {
  color: #25d366;
}

.contact-quick__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  width: 100%;
}

.contact-quick__title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.contact-quick__sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  word-break: break-word;
  line-height: 1.3;
}

a.contact-address {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.35);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}

a.contact-address:hover {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(59, 130, 246, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

a.contact-address:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.65);
  outline-offset: 2px;
}

.contact-address__icon {
  flex-shrink: 0;
  display: flex;
  color: var(--primary);
  margin-top: 0.1rem;
}

.contact-address__body {
  flex: 1;
  min-width: 0;
  text-align: start;
}

.contact-address__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.contact-address__text {
  display: block;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text);
  white-space: pre-line;
}

@media (max-width: 520px) {
  .contact-quick {
    grid-template-columns: 1fr;
  }

  .contact-card__datetime {
    grid-template-columns: 1fr;
  }
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-family: inherit;
  margin-bottom: 1rem;
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.prose .article-body {
  line-height: 1.75;
}

.prose .article-body img {
  border-radius: var(--radius-sm);
}

/* Hizmetler: hat seçici + tek panel görünümü */
.services-pick {
  padding-top: 0;
  padding-bottom: 1rem;
}

.services-pick__label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 0.75rem;
}

.services-pick__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.services-pick__tab {
  cursor: pointer;
  border: 1px solid var(--border-strong);
  background: rgba(21, 28, 46, 0.55);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}

.services-pick__tab:hover {
  color: var(--text);
  border-color: rgba(59, 130, 246, 0.45);
}

.services-pick__tab[aria-selected='true'] {
  color: var(--text);
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.08);
}

.services-pick__tab--wide {
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.service-panel[hidden] {
  display: none !important;
}

.service-block--split .service-block__part--divider {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .service-block--split {
    display: grid;
    gap: 0 2rem;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .service-block--split .service-block__part--divider {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    border-left: 1px solid var(--border);
    padding-left: 2rem;
  }

  .service-block--split > p {
    grid-column: 1 / -1;
  }
}

/* WEB TASARIM: VIP paket vitrinı — sıkı üst boşluk */
#web-software.service-panel {
  padding-top: clamp(0.2rem, 1vw, 0.65rem);
}

#web-software .service-block {
  padding-top: 1.1rem;
}

.web-packages-wrap {
  position: relative;
  margin-top: -0.35rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.65) 0%, rgba(8, 12, 22, 0.85) 100%);
  border: 1px solid rgba(212, 175, 106, 0.12);
  box-shadow:
    0 24px 64px -24px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.web-packages-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 106, 0.35) 0%,
    rgba(59, 130, 246, 0.15) 40%,
    rgba(139, 92, 246, 0.2) 70%,
    rgba(212, 175, 106, 0.25) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.65;
}

.web-packages-wrap::after {
  content: '';
  position: absolute;
  inset: -30% 10% auto;
  height: 55%;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 106, 0.09), transparent 58%);
  pointer-events: none;
}

.web-packages {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.35rem);
  align-items: stretch;
}

@media (max-width: 960px) {
  .web-packages {
    grid-template-columns: 1fr;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.web-package {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(22, 30, 48, 0.92) 0%, rgba(12, 16, 28, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 18px 40px -16px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition:
    transform 0.4s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
    box-shadow 0.4s ease;
}

.web-package::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 14px 14px 0 0;
  pointer-events: none;
}

.web-package--plus::before {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), #3b82f6, rgba(56, 189, 248, 0.8));
}

.web-package--pro::before {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.35), #a78bfa, rgba(167, 139, 250, 0.9));
}

.web-package--premium::before {
  background: linear-gradient(90deg, rgba(180, 140, 50, 0.5), #d4af37, #fde68a, #d4af37);
}

@media (min-width: 961px) {
  .web-package--pro {
    transform: translateY(-6px) scale(1.02);
    z-index: 2;
    box-shadow:
      0 28px 56px -20px rgba(139, 92, 246, 0.35),
      0 18px 40px -16px rgba(0, 0, 0, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .web-package:hover {
    transform: translateY(-4px);
    box-shadow:
      0 28px 48px -18px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }

  .web-package--pro:hover {
    transform: translateY(-8px) scale(1.02);
  }
}

.web-package__head {
  padding: 1.15rem 1.15rem 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.web-package--plus .web-package__head {
  background: linear-gradient(165deg, rgba(59, 130, 246, 0.18) 0%, rgba(15, 23, 42, 0.25) 100%);
  border-bottom-color: rgba(59, 130, 246, 0.22);
}

.web-package--pro .web-package__head {
  background: linear-gradient(165deg, rgba(139, 92, 246, 0.22) 0%, rgba(15, 23, 42, 0.28) 100%);
  border-bottom-color: rgba(139, 92, 246, 0.28);
}

.web-package--premium .web-package__head {
  background: linear-gradient(165deg, rgba(212, 175, 55, 0.14) 0%, rgba(15, 23, 42, 0.3) 100%);
  border-bottom-color: rgba(212, 175, 106, 0.28);
}

.web-package--plus {
  border-color: rgba(59, 130, 246, 0.22);
}

.web-package--pro {
  border-color: rgba(139, 92, 246, 0.28);
}

.web-package--premium {
  border-color: rgba(212, 175, 106, 0.25);
}

.web-package__emoji {
  display: block;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.95;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.web-package__title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.35;
}

.web-package--plus .web-package__title {
  color: #bfdbfe;
  text-shadow: 0 0 28px rgba(59, 130, 246, 0.35);
}

.web-package--pro .web-package__title {
  color: #ddd6fe;
  text-shadow: 0 0 28px rgba(139, 92, 246, 0.35);
}

.web-package--premium .web-package__title {
  color: #fef08a;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.25);
}

.web-package__tier {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(226, 232, 240, 0.55);
  margin-left: 0.25rem;
}

.web-package__tagline {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: rgba(203, 213, 225, 0.82);
  line-height: 1.5;
  font-weight: 450;
}

.web-package__includes {
  margin: 0;
  padding: 0.7rem 1.15rem 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(148, 163, 184, 0.95);
}

.web-package__list {
  margin: 0;
  padding: 0.85rem 1.15rem 1.1rem;
  list-style: none;
  flex: 1;
}

.web-package__list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(203, 213, 225, 0.88);
}

.web-package__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-size: 0.7rem;
  font-weight: 700;
}

.web-package--plus .web-package__list li::before {
  color: #60a5fa;
}

.web-package--pro .web-package__list li::before {
  color: #a78bfa;
}

.web-package--premium .web-package__list li::before {
  color: #d4af37;
}

.web-package__price {
  margin: 0;
  margin-top: auto;
  padding: 1rem 1.15rem 1.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
  text-align: center;
}

.web-package__price strong {
  display: block;
  margin-top: 0.45rem;
  font-size: clamp(1.4rem, 3.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
  font-variant-numeric: tabular-nums;
}

.web-package__price-wrap {
  position: relative;
  margin-top: auto;
  padding-top: 0.35rem;
}

.web-package__discount-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 2;
  display: inline-block;
  padding: 0.3rem 0.65rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(120deg, #dc2626 0%, #f97316 40%, #fbbf24 100%);
  background-size: 200% 100%;
  box-shadow:
    0 4px 14px -2px rgba(239, 68, 68, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  animation: discountTagPulse 2.2s ease-in-out infinite, discountTagShimmer 3.5s linear infinite;
}

.web-package__discount-tag::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 45%,
    transparent 70%
  );
  animation: discountTagGlint 2.8s ease-in-out infinite;
  pointer-events: none;
}

.web-package__recommended-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -52%);
  z-index: 2;
  display: inline-block;
  padding: 0.45rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(125deg, #991b1b 0%, #dc2626 30%, #ef4444 65%, #fca5a5 100%);
  background-size: 220% 100%;
  box-shadow:
    0 6px 20px -4px rgba(220, 38, 38, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  animation: recommendedTagPulse 2.4s ease-in-out infinite, recommendedTagShimmer 3.2s linear infinite;
}

.web-package__recommended-tag::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 42%,
    transparent 72%
  );
  animation: recommendedTagGlint 2.6s ease-in-out infinite;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .web-package__discount-tag,
  .web-package__discount-tag::after,
  .web-package__recommended-tag,
  .web-package__recommended-tag::after {
    animation: none;
  }
}

@keyframes recommendedTagPulse {
  0%,
  100% {
    transform: translate(-50%, -52%) scale(1);
    filter: brightness(1);
  }
  50% {
    transform: translate(-50%, -52%) scale(1.09);
    filter: brightness(1.1);
  }
}

@keyframes recommendedTagShimmer {
  0% {
    background-position: 120% 50%;
  }
  100% {
    background-position: -120% 50%;
  }
}

@keyframes recommendedTagGlint {
  0%,
  38% {
    opacity: 0;
    transform: translateX(-35%);
  }
  48% {
    opacity: 1;
  }
  58%,
  100% {
    opacity: 0;
    transform: translateX(35%);
  }
}

@keyframes discountTagPulse {
  0%,
  100% {
    transform: translate(-50%, -55%) scale(1);
    filter: brightness(1);
  }
  50% {
    transform: translate(-50%, -55%) scale(1.06);
    filter: brightness(1.08);
  }
}

@keyframes discountTagShimmer {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: -100% 50%;
  }
}

@keyframes discountTagGlint {
  0%,
  40% {
    opacity: 0;
    transform: translateX(-30%);
  }
  50% {
    opacity: 1;
  }
  60%,
  100% {
    opacity: 0;
    transform: translateX(30%);
  }
}

.web-package--plus .web-package__price {
  border-top-color: rgba(59, 130, 246, 0.25);
}

.web-package--plus .web-package__price-wrap .web-package__price {
  padding-top: 1.35rem;
}

.web-package--plus .web-package__price strong {
  background: linear-gradient(135deg, #e0f2fe 0%, #7dd3fc 50%, #bae6fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.web-package--pro .web-package__price {
  border-top-color: rgba(139, 92, 246, 0.3);
}

.web-package--pro .web-package__price-wrap .web-package__price {
  padding-top: 1.55rem;
}

.web-package--pro .web-package__price strong {
  background: linear-gradient(135deg, #f5f3ff 0%, #ddd6fe 45%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.web-package--premium .web-package__price {
  border-top-color: rgba(212, 175, 106, 0.35);
}

.web-package--premium .web-package__price strong {
  background: linear-gradient(135deg, #fef9c3 0%, #fde047 35%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.25));
}

.web-packages__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin: 1.35rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 106, 0.12);
}

.web-packages__kdv {
  margin: 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.75);
}

.web-packages__contact {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

#restoran-dagitim.service-panel {
  padding-top: clamp(0.2rem, 1vw, 0.65rem);
}

#restoran-dagitim .service-block--vip-inner {
  padding: 1.1rem 0 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

#restoran-dagitim .service-block--vip-inner:hover {
  transform: none;
}

.restoran-vip__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.35rem);
  align-items: start;
}

@media (max-width: 900px) {
  .restoran-vip__grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.restoran-vip__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(22, 30, 48, 0.92) 0%, rgba(12, 16, 28, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 18px 40px -16px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition:
    transform 0.4s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
    box-shadow 0.4s ease;
}

.restoran-vip__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 14px 14px 0 0;
  pointer-events: none;
}

.restoran-vip__card--restoran::before {
  background: linear-gradient(90deg, rgba(180, 140, 50, 0.5), #d4af37, #fde68a, #d4af37);
}

.restoran-vip__card--dagitim::before {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), #3b82f6, rgba(139, 92, 246, 0.85));
}

@media (min-width: 901px) {
  .restoran-vip__card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 28px 48px -18px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }
}

.restoran-vip__card--restoran {
  border-color: rgba(212, 175, 106, 0.25);
}

.restoran-vip__card--dagitim {
  border-color: rgba(59, 130, 246, 0.22);
}

.restoran-vip__card-footer {
  margin-top: auto;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.restoran-vip__card--restoran .restoran-vip__card-footer {
  border-top-color: rgba(212, 175, 106, 0.15);
  background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.04) 100%);
}

.restoran-vip__card--dagitim .restoran-vip__card-footer {
  border-top-color: rgba(59, 130, 246, 0.18);
  background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.06) 100%);
}

.restoran-vip__cta {
  width: 100%;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s ease,
    filter 0.25s ease;
}

.restoran-vip__cta--restoran {
  background: linear-gradient(135deg, #e8c547 0%, #c9a227 45%, #a16207 100%);
  color: #0f172a;
  border: 1px solid rgba(254, 243, 199, 0.35);
  box-shadow:
    0 4px 20px -4px rgba(212, 175, 55, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.restoran-vip__cta--restoran:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 10px 28px -8px rgba(212, 175, 55, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.restoran-vip__cta--dagitim {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
  color: #f8fafc;
  border: 1px solid rgba(147, 197, 253, 0.35);
  box-shadow:
    0 4px 22px -4px rgba(59, 130, 246, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.restoran-vip__cta--dagitim:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 12px 32px -8px rgba(59, 130, 246, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.restoran-vip__head {
  padding: 1.15rem 1.15rem 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.restoran-vip__card--restoran .restoran-vip__head {
  background: linear-gradient(165deg, rgba(212, 175, 55, 0.14) 0%, rgba(15, 23, 42, 0.3) 100%);
  border-bottom-color: rgba(212, 175, 106, 0.28);
}

.restoran-vip__card--dagitim .restoran-vip__head {
  background: linear-gradient(165deg, rgba(59, 130, 246, 0.18) 0%, rgba(139, 92, 246, 0.12) 45%, rgba(15, 23, 42, 0.28) 100%);
  border-bottom-color: rgba(59, 130, 246, 0.22);
}

.restoran-vip__title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.35;
}

.restoran-vip__card--restoran .restoran-vip__title {
  color: #fef08a;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.25);
}

.restoran-vip__card--dagitim .restoran-vip__title {
  color: #bfdbfe;
  text-shadow: 0 0 28px rgba(59, 130, 246, 0.35);
}

.restoran-vip__features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.75rem 1rem 1.1rem;
  flex: 0 1 auto;
  min-height: 0;
}

.restoran-vip__feature {
  margin: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(15, 23, 42, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    box-shadow 0.45s var(--ease-out),
    border-color 0.35s ease;
}

.restoran-vip__feature-trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-family: inherit;
  text-align: left;
  color: inherit;
  border-radius: 9px;
  transition: background 0.25s ease;
}

.restoran-vip__feature-trigger:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.65);
  outline-offset: 2px;
}

.restoran-vip__card--restoran .restoran-vip__feature-trigger:hover {
  background: rgba(212, 175, 106, 0.07);
}

.restoran-vip__card--dagitim .restoran-vip__feature-trigger:hover {
  background: rgba(59, 130, 246, 0.1);
}

.restoran-vip__feature-chevron {
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.15rem;
  border-right: 2px solid rgba(212, 175, 106, 0.65);
  border-bottom: 2px solid rgba(212, 175, 106, 0.65);
  transform: rotate(45deg);
  transition: transform 0.4s var(--ease-out);
  align-self: center;
  opacity: 0.85;
}

.restoran-vip__card--dagitim .restoran-vip__feature-chevron {
  border-right-color: rgba(96, 165, 250, 0.85);
  border-bottom-color: rgba(96, 165, 250, 0.85);
}

.restoran-vip__feature.is-open .restoran-vip__feature-chevron {
  transform: rotate(-135deg);
}

.restoran-vip__feature-panel {
  display: grid;
  grid-template-rows: 0fr;
  min-height: 0;
  transition: grid-template-rows 0.45s var(--ease-out);
}

.restoran-vip__feature:not(.is-open) .restoran-vip__feature-panel {
  pointer-events: none;
}

.restoran-vip__feature.is-open .restoran-vip__feature-panel {
  grid-template-rows: 1fr;
}

.restoran-vip__feature-panel-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 0.75rem 0;
  border-top: 1px solid transparent;
  transition: padding 0.4s var(--ease-out);
}

.restoran-vip__feature.is-open .restoran-vip__feature-panel-inner {
  padding: 0.65rem 0.75rem 0.85rem;
  border-top-color: rgba(255, 255, 255, 0.08);
}

.restoran-vip__feature-expand-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 220px;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px dashed rgba(212, 175, 106, 0.38);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.75) 0%, rgba(30, 41, 59, 0.5) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.restoran-vip__card--dagitim .restoran-vip__feature-expand-photo {
  border-color: rgba(59, 130, 246, 0.42);
  background: linear-gradient(145deg, rgba(30, 58, 138, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.restoran-vip__feature-expand-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restoran-vip__card--restoran .restoran-vip__feature-expand-photo:has(img) {
  border-style: solid;
  border-color: rgba(212, 175, 106, 0.3);
}

.restoran-vip__card--dagitim .restoran-vip__feature-expand-photo:has(img) {
  border-style: solid;
  border-color: rgba(59, 130, 246, 0.38);
}

.restoran-vip__feature-desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  font-weight: 450;
  color: rgba(203, 213, 225, 0.92);
}

.restoran-vip__feature.is-open {
  box-shadow:
    0 16px 40px -18px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.restoran-vip__card--restoran .restoran-vip__feature.is-open {
  border-color: rgba(212, 175, 106, 0.42);
}

.restoran-vip__card--dagitim .restoran-vip__feature.is-open {
  border-color: rgba(59, 130, 246, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .restoran-vip__feature,
  .restoran-vip__feature-panel,
  .restoran-vip__feature-panel-inner,
  .restoran-vip__feature-chevron {
    transition-duration: 0.01ms !important;
  }
}

.restoran-vip__card--restoran .restoran-vip__feature {
  border-color: rgba(212, 175, 106, 0.18);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(15, 23, 42, 0.45) 100%);
}

.restoran-vip__card--dagitim .restoran-vip__feature {
  border-color: rgba(59, 130, 246, 0.22);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(15, 23, 42, 0.45) 100%);
}

.restoran-vip__feature-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  min-height: 3.5rem;
}

.restoran-vip__feature-title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  flex: 1;
  min-width: 0;
}

.restoran-vip__card--restoran .restoran-vip__feature-title {
  color: rgba(254, 243, 199, 0.95);
}

.restoran-vip__card--dagitim .restoran-vip__feature-title {
  color: rgba(191, 219, 254, 0.95);
}

.restoran-vip__feature-photo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px dashed rgba(212, 175, 106, 0.38);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.65) 0%, rgba(30, 41, 59, 0.42) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.restoran-vip__card--dagitim .restoran-vip__feature-photo {
  border-color: rgba(59, 130, 246, 0.4);
  background: linear-gradient(145deg, rgba(30, 58, 138, 0.35) 0%, rgba(15, 23, 42, 0.55) 100%);
}

.restoran-vip__feature-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restoran-vip__card--restoran .restoran-vip__feature-photo:has(img) {
  border-style: solid;
  border-color: rgba(212, 175, 106, 0.28);
}

.restoran-vip__card--dagitim .restoran-vip__feature-photo:has(img) {
  border-style: solid;
  border-color: rgba(59, 130, 246, 0.35);
}

#reklam-matbaa.service-panel {
  padding-top: clamp(0.2rem, 1vw, 0.65rem);
}

#reklam-matbaa .service-block--vip-inner {
  padding: 1.1rem 0 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

#reklam-matbaa .service-block--vip-inner:hover {
  transform: none;
}

.reklam-matbaa__intro {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  padding: 0 0.15rem;
}

.reklam-matbaa__page-title {
  margin: 0 0 0.5rem;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
  background: linear-gradient(135deg, #f472b6 0%, #c084fc 45%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reklam-matbaa__lead {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(148, 163, 184, 0.92);
  max-width: 52ch;
}

.reklam-matbaa__box {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0.75rem 1rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(192, 132, 252, 0.22);
  background: linear-gradient(165deg, rgba(88, 28, 135, 0.2) 0%, rgba(15, 23, 42, 0.82) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 40px -20px rgba(0, 0, 0, 0.45);
}

.reklam-matbaa__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reklam-matbaa__list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.reklam-matbaa__list li:first-child {
  padding-top: 0.15rem;
}

.reklam-matbaa__list li:last-child {
  padding-bottom: 0.15rem;
  border-bottom: none;
}

.reklam-matbaa__item-title {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.45;
  color: rgba(251, 207, 232, 0.98);
}

