/* Birebir Flutter landing / info sayfa stilleri — ekstra görsel yorum yok */

:root {
  --brand-navy: #0a0e27;
  --brand-blue: #1d2671;
  --brand-indigo: #4f5dff;
  --brand-emerald: #0f6e56;
  --brand-slate: #1e293b;
  --brand-page: #f8fafc;
  --brand-gold: #c9a227;
  --section-bg: #f1f5f9;
  --footer-dark: #1e272e;
  --app-url: https://app.kilavuzakademi.tr;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--brand-page);
  color: var(--brand-slate);
  -webkit-font-smoothing: antialiased;
}

/* Material Symbols boyutu */
.ms {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
}

.hero-gradient {
  position: relative;
  background: linear-gradient(
    125deg,
    #0a0e27 0%,
    #141b42 32%,
    #1d2671 58%,
    #0f6e56 100%
  );
}

.hero-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 162, 39, 0.1) 48%,
    transparent 100%
  );
}

/* Hero dekoratif daireler (::before üstünde, içerik altında) */
.hero-blob {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 9999px;
}

.hero-blob--blue {
  top: -70px;
  right: -70px;
  width: 280px;
  height: 280px;
  background: rgba(79, 93, 255, 0.45);
  box-shadow: 0 0 80px rgba(79, 93, 255, 0.35);
}

.hero-blob--green {
  bottom: -90px;
  left: -70px;
  width: 300px;
  height: 300px;
  background: rgba(15, 110, 86, 0.42);
  box-shadow: 0 0 80px rgba(15, 110, 86, 0.28);
}

.hero-gradient > .relative {
  z-index: 2;
}

.section-gradient {
  background: linear-gradient(135deg, #0a0e27 0%, #1d2671 55%, #0f6e56 100%);
}

/* Sticky app bar gölgesi */
.site-chrome {
  background: #fff;
}

.site-header {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.site-chrome.is-scrolled .site-header,
.site-header.is-scrolled {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.logo-lockup {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(200px, 62vw);
  object-fit: contain;
  object-position: left center;
}
@media (min-width: 640px) {
  .logo-lockup {
    height: 52px;
    max-width: 240px;
  }
}

/* Eski metin wordmark — geriye uyumluluk */
.logo-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.08;
  min-width: 0;
}
.logo-wordmark__k,
.logo-wordmark__a {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-wordmark__k {
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 0.02em;
  background-image: linear-gradient(90deg, #0a0e27 0%, #141b42 42%, #1d2671 100%);
}
.logo-wordmark__a {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.22em;
  background-image: linear-gradient(90deg, #1d2671 0%, #148a6c 55%, #0f6e56 100%);
}
@media (min-width: 640px) {
  .logo-wordmark__k { font-size: 23px; letter-spacing: 0.04em; }
  .logo-wordmark__a { font-size: 12.5px; letter-spacing: 0.26em; }
}

/* —— Kampanya / reklam şeridi —— */
.promo-bar {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 36px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(
    105deg,
    rgba(10, 14, 39, 0.94) 0%,
    rgba(29, 38, 113, 0.9) 48%,
    rgba(15, 110, 86, 0.88) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  /* GPU katmanı — sticky + ilk paint’te donmayı azaltır */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.promo-bar[hidden] {
  display: none !important;
}

.promo-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 162, 39, 0.08) 50%,
    transparent 100%
  );
}

.promo-bar__viewport {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.promo-bar__track {
  display: flex;
  width: max-content;
  /* Animasyon yalnızca .is-ready sonrası — hidden → görünür geçişinde Safari donmasını önler */
  animation: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.promo-bar.is-ready .promo-bar__track {
  animation: promo-marquee 38s linear infinite;
}

@media (hover: hover) and (pointer: fine) {
  .promo-bar:hover .promo-bar__track {
    animation-play-state: paused;
  }
}

.promo-bar__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.promo-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  white-space: nowrap;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.94);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

.promo-bar__item:hover .promo-bar__cta {
  background: rgba(255, 255, 255, 0.22);
}

.promo-bar__pill {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f5e6b8;
}

.promo-bar__text {
  color: rgba(255, 255, 255, 0.92);
}

.promo-bar__text strong {
  color: #fff;
  font-weight: 800;
}

.promo-bar__sep {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
}

.promo-bar__cta {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
  transition: background 0.15s ease;
}

.promo-bar__close {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 6px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.promo-bar__close .ms {
  font-size: 18px !important;
}

.promo-bar__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.site-chrome.is-promo-dismissed .promo-bar {
  display: none !important;
}

@keyframes promo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    /* Tam iki (veya N) eşit grubun yarısı — JS en az 2 kopya üretir */
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-bar.is-ready .promo-bar__track {
    animation: none;
    transform: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .promo-bar__group[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 640px) {
  .promo-bar {
    min-height: 34px;
  }

  .promo-bar__item {
    padding: 7px 18px;
    font-size: 12px;
    gap: 8px;
  }

  .promo-bar.is-ready .promo-bar__track {
    animation-duration: 28s;
  }

  /* iOS: mask + transform metni aralıklı kaybettiriyor — mobilde maske yok */
  .promo-bar__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* Masaüstü fade kenarlar (mask güvenli) */
@media (min-width: 641px) {
  .promo-bar__viewport {
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 93%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 93%, transparent);
  }
}

/* Masaüstü orta menü — Tailwind purge’a bağlı kalmadan ortala */
.site-nav-center {
  display: none;
}

@media (min-width: 700px) {
  .site-nav-center {
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    gap: 2px;
    z-index: 5;
  }
}

.site-nav-trial {
  color: #0f6e56 !important;
  font-weight: 800 !important;
}

.site-nav-trial .ms {
  font-size: 18px !important;
  color: #0f6e56;
}

.site-nav-trial:hover {
  opacity: 0.85;
}

/* Orta menü: dar masaüstünde logo/CTA ile çakışmayı azalt */
@media (min-width: 700px) and (max-width: 1049px) {
  .site-nav-center a {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 13px;
  }

  .logo-wordmark__k {
    font-size: 20px;
    letter-spacing: 0.03em;
  }
  .logo-wordmark__a {
    font-size: 11.5px;
    letter-spacing: 0.22em;
  }
}

/* Hero min yükseklik: viewport − app bar */
.hero-min {
  min-height: calc(100vh - 64px);
  min-height: calc(100dvh - 64px);
}

@media (max-width: 699px) {
  .hero-min {
    min-height: calc(100vh - 56px);
    min-height: calc(100dvh - 56px);
  }
}

/* Hero entrance (subtle) */
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-logo-in {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-anim-logo {
  animation: hero-logo-in 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-brand-mark {
  display: block;
  width: auto;
  height: clamp(110px, 20vh, 160px);
  max-width: min(220px, 58vw);
  object-fit: contain;
  filter: brightness(0) invert(1)
    drop-shadow(0 8px 22px rgba(255, 255, 255, 0.18))
    drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

@media (min-width: 768px) {
  .hero-brand-mark {
    height: clamp(160px, 26vh, 240px);
    max-width: 280px;
  }
}

.hero-brand-copy {
  margin-top: 1.1rem;
  max-width: 22rem;
}

.hero-brand-name {
  margin: 0;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-brand-tagline {
  margin: 0.45rem 0 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.hero-anim-text {
  animation: hero-fade-up 650ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.hero-anim-delay {
  animation-delay: 220ms;
}

.hero-anim-cta {
  animation: hero-fade-up 650ms cubic-bezier(0.22, 1, 0.36, 1) 320ms both;
}

@media (prefers-reduced-motion: reduce) {
  .hero-anim-logo,
  .hero-anim-text,
  .hero-anim-cta {
    animation: none !important;
  }
}

/* How it works steps */
.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: how;
}

.how-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(10, 14, 39, 0.08);
  color: var(--brand-navy);
  font-weight: 900;
  font-size: 15px;
}

@media (min-width: 700px) {
  .how-step {
    position: relative;
    padding-right: 12px;
  }

  .how-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    left: calc(40px + 12px);
    right: 8px;
    height: 1px;
    background: linear-gradient(90deg, rgba(10, 14, 39, 0.18), rgba(10, 14, 39, 0.04));
  }
}

/* Trial form inputs on dark panel */
.trial-input {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14.5px;
  font-weight: 500;
  width: 100%;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.trial-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.trial-input option {
  color: var(--brand-slate);
  background: #fff;
}

.trial-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
}

.trial-error:not(.hidden),
.trial-success:not(.hidden) {
  display: block;
}

.compare-table table th,
.compare-table table td {
  vertical-align: middle;
}

/* Veli yorumları marquee */
.marquee-viewport {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 0 4px;
  will-change: transform;
}

.marquee-track.is-paused {
  animation-play-state: paused !important;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-33.333%);
  }
  to {
    transform: translateX(0);
  }
}

.marquee-track.left {
  animation: marquee-left linear infinite;
}

.marquee-track.right {
  animation: marquee-right linear infinite;
}

.review-card {
  width: 320px;
  height: 168px;
  flex-shrink: 0;
}

/* FAQ accordion */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease-in-out;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-item[open] .faq-answer,
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item .faq-chevron {
  transition: transform 220ms ease-in-out;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-item.is-open {
  border-color: rgba(10, 14, 39, 0.18) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06) !important;
}

/* Blog kart hover */
.blog-card {
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

/* Mobil drawer */
.mobile-drawer {
  transform: translateX(100%);
  transition: transform 220ms ease-out;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-backdrop {
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease-out;
}

.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Form focus */
.form-input:focus {
  outline: none;
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 1px var(--brand-navy);
}

/* Paketler tab */
.pkg-tab {
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
}

.pkg-tab:hover:not(.is-active):not([data-locked="true"]) {
  background: rgba(255, 255, 255, 0.12);
}

.pkg-tab.is-active {
  background: #fff;
  color: var(--brand-blue);
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.pkg-model-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

@media (hover: hover) {
  .pkg-model-card:hover {
    transform: translateY(-4px);
  }
}

/* Üç model kartı: mobilde alt alta, masaüstünde yan yana */
.pkg-models-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

@media (min-width: 700px) {
  .pkg-models-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

/* Model kartı fiyat blokları (branş + tüm dersler) */
.pkg-price-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pkg-price-label {
  margin: 0;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.pkg-price-block .pkg-price-label:not(:first-child) {
  margin-top: 4px;
}

.pkg-price-strip {
  display: flex;
  align-items: stretch;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
}

.pkg-price-strip.is-single .pkg-price-cell {
  padding: 12px 10px;
}

.pkg-price-strip.is-single .pkg-price-amount {
  font-size: 17px;
}

.pkg-price-cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 6px;
  text-align: center;
}

.pkg-price-divider {
  width: 1px;
  background: #e2e8f0;
  flex-shrink: 0;
}

.pkg-price-hours {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.pkg-price-amount {
  font-size: 15px;
  font-weight: 900;
  color: #0a0e27;
  letter-spacing: -0.02em;
}

.pkg-price-base {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: line-through;
}

.pkg-model-card[data-pkg-model="sinif"] .pkg-price-amount {
  color: #1d2671;
}

.pkg-model-card[data-pkg-model="birebir"] .pkg-price-amount {
  color: #0f6e56;
}

/* Satın alma overlay — varsayılan gizli; .is-open ile açılır */
.pkg-buy-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10, 14, 39, 0.42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.pkg-buy-backdrop.is-open {
  display: block;
}

.pkg-buy-layer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.pkg-buy-layer.is-open {
  display: flex;
}

.pkg-buy-card {
  width: 100%;
  max-width: 400px;
  max-height: min(90vh, 680px);
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 24px 56px rgba(10, 14, 39, 0.28);
  animation: pkgBuyIn 0.22s ease;
}

@keyframes pkgBuyIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.pkg-buy-card__accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #0a0e27, #1d2671 45%, #0f6e56);
  border-radius: 20px 20px 0 0;
}

.pkg-buy-card__accent.is-vip {
  background: linear-gradient(90deg, #0f6e56, #149e7a);
}

.pkg-buy-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid #f1f5f9;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.pkg-buy-close {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: #f1f5f9;
  color: var(--brand-slate);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}

.pkg-buy-close:hover {
  background: #e2e8f0;
}

.pkg-buy-card__body {
  padding: 14px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pkg-buy-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #64748b;
  margin-top: 2px;
}

.pkg-buy-select,
.pkg-buy-input {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-slate);
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pkg-buy-select:focus,
.pkg-buy-input:focus {
  border-color: rgba(29, 38, 113, 0.55);
  box-shadow: 0 0 0 3px rgba(29, 38, 113, 0.1);
}

.pkg-buy-summary {
  margin-top: 8px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid #e2e8f0;
}

.pkg-buy-submit {
  margin-top: 8px;
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  background: var(--brand-navy);
  color: #fff;
  font-weight: 800;
  font-size: 14.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(10, 14, 39, 0.2);
}

.pkg-buy-submit:hover {
  opacity: 0.95;
}

.pkg-buy-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pkg-pay-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 10px;
}

.pkg-pay-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(30, 41, 59, 0.12);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pkg-pay-option input {
  margin: 0;
  accent-color: #0f6e56;
}

.pkg-pay-option__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.pkg-pay-option__title {
  font-size: 13px;
  font-weight: 800;
  color: #0a0e27;
}

.pkg-pay-option__desc {
  font-size: 11px;
  color: #64748b;
  line-height: 1.35;
}

.pkg-pay-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #92400e;
  background: rgba(180, 83, 9, 0.12);
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.pkg-pay-option.is-active {
  border-color: rgba(15, 110, 86, 0.45);
  box-shadow: 0 0 0 3px rgba(15, 110, 86, 0.08);
}

.pkg-pay-option.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: #f8fafc;
}

@media (max-width: 699px) {
  .pkg-buy-layer.is-open {
    align-items: flex-end;
    padding: 0;
  }

  .pkg-buy-card {
    max-width: none;
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    animation: pkgBuySheet 0.24s ease;
  }

  .pkg-buy-card__accent {
    border-radius: 20px 20px 0 0;
  }

  @keyframes pkgBuySheet {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.wa-float__bubble {
  position: relative;
  max-width: min(240px, calc(100vw - 96px));
  padding: 12px 34px 12px 14px;
  border-radius: 14px 14px 4px 14px;
  background: #fff;
  color: var(--brand-slate);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  pointer-events: auto;
  transform-origin: bottom right;
  animation: wa-bubble-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.wa-float__bubble[hidden] {
  display: none;
}

.wa-float__bubble.is-hiding {
  animation: wa-bubble-out 240ms ease-in both;
}

.wa-float__text {
  margin: 0;
}

.wa-float__close {
  position: absolute;
  top: 6px;
  right: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
}

.wa-float__close:hover {
  color: #64748b;
  background: #f1f5f9;
}

.wa-float__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  pointer-events: auto;
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: wa-btn-bob 2.8s ease-in-out infinite;
}

.wa-float__btn:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55);
}

.wa-float__btn:active {
  transform: scale(0.97);
}

.wa-float__icon {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
}

.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #25d366;
  animation: wa-pulse 2.2s ease-out infinite;
  z-index: 0;
}

.wa-float__pulse--delay {
  animation-delay: 1.1s;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@keyframes wa-btn-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes wa-bubble-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes wa-bubble-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(6px) scale(0.94);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float__btn,
  .wa-float__pulse,
  .wa-float__bubble {
    animation: none !important;
  }
}

@media (max-width: 380px) {
  .wa-float {
    right: 14px;
    bottom: 14px;
  }

  .wa-float__btn {
    width: 54px;
    height: 54px;
  }
}

/* —— Site footer —— */
.site-footer {
  background: linear-gradient(165deg, #070a1a 0%, #0a0e27 42%, #12183a 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 48px 24px 28px;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 36px 28px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.3px;
}

.site-footer__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
}

.site-footer__tagline {
  margin: 14px 0 0;
  max-width: 320px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}

.site-footer__contact a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
}

.site-footer__contact a:hover {
  color: #fff;
}

.site-footer__heading {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__col > a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.site-footer__col > a:hover {
  color: #fff;
}

.site-footer__pay-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__pay-text strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.site-footer__shopier {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  color: #fff;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.site-footer__shopier:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.site-footer__shopier-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(145deg, #1a9e8f, #0f6e56);
  color: #fff;
  flex-shrink: 0;
}

.site-footer__shopier-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.site-footer__shopier-copy strong {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.site-footer__shopier-copy small {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__chip-icon {
  font-size: 16px !important;
  color: #7dd3c0;
}

.site-footer__cards {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__copy {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
}

.site-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 960px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding: 40px 20px 24px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 28px;
  }
}

