/* DiscountPay — İşletme ön kayıt sayfası.
   Bilinçli olarak tek görünüm: koyu lacivert sahne + turuncu enerji. Konfeti
   ve kıvılcımlar koyu zeminde patlıyor; ana sitenin beyaz dilinden ayrışan
   "etkinlik" hissi. Hareket, prefers-reduced-motion'da kapanır. */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --o: var(--dp-orange, #ff5000);
  --o2: var(--dp-orange-bright, #ff7a33);
  --o-deep: var(--dp-orange-deep, #cc3d00);
  --navy: var(--dp-navy, #001e41);
  --bg: #000d1f;
  --cyan: var(--dp-reward, #56d7ff);
  --lime: var(--dp-savings, #c1f11d);
  --txt: #ffffff;
  --muted: rgba(255, 255, 255, .68);
  --glass: rgba(255, 255, 255, .06);
  --glass-bd: rgba(255, 255, 255, .12);
  --card-ink: #0f1b2d;
  --card-muted: #66707d;
  --bd: #e7e9ee;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
}

html {
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans, "Inter", system-ui, sans-serif);
  color: var(--txt);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

/* ── Sahne: aurora + ızgara + parçacık canvas'ı ── */
.stage-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 0%, #00295a 0%, var(--bg) 62%);
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  will-change: transform;
}

.aurora.a1 {
  width: 620px; height: 620px; left: -160px; top: -120px;
  background: radial-gradient(circle, var(--o) 0%, transparent 65%);
  animation: drift1 18s ease-in-out infinite alternate;
}

.aurora.a2 {
  width: 560px; height: 560px; right: -160px; top: 18%;
  background: radial-gradient(circle, #0061ff 0%, transparent 65%);
  opacity: .45;
  animation: drift2 22s ease-in-out infinite alternate;
}

.aurora.a3 {
  width: 480px; height: 480px; left: 30%; bottom: -220px;
  background: radial-gradient(circle, var(--o2) 0%, transparent 65%);
  opacity: .35;
  animation: drift1 26s ease-in-out infinite alternate-reverse;
}

@keyframes drift1 {
  to { transform: translate(120px, 80px) scale(1.15); }
}

@keyframes drift2 {
  to { transform: translate(-140px, 60px) scale(1.1); }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(80% 60% at 50% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000 20%, transparent 75%);
}

#fx {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 60;
  pointer-events: none;
}

.flash {
  position: fixed;
  inset: 0;
  z-index: 55;
  pointer-events: none;
  background: radial-gradient(circle at 50% 45%, rgba(255, 140, 60, .55), transparent 60%);
  opacity: 0;
}

.flash.go {
  animation: flash .9s ease-out;
}

@keyframes flash {
  0% { opacity: 0; }
  12% { opacity: 1; }
  100% { opacity: 0; }
}

/* ── Üst bar ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 13, 31, .55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.nav-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 1.6px;
  font-size: 17px;
}

.brand svg {
  width: 30px;
  height: 30px;
  display: block;
}

.brand b {
  color: var(--o);
  font-weight: 800;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--glass-bd);
  transition: color .2s, border-color .2s, background .2s;
}

.back:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
  background: var(--glass);
}

/* ── Hero düzeni ── */
.hero {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 84px) 22px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #ffd9c6;
  background: rgba(255, 80, 0, .16);
  border: 1px solid rgba(255, 122, 51, .38);
  padding: 8px 15px;
  border-radius: 999px;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--o);
  box-shadow: 0 0 0 0 rgba(255, 80, 0, .7);
  animation: ping 1.6s ease-out infinite;
}

@keyframes ping {
  to { box-shadow: 0 0 0 12px rgba(255, 80, 0, 0); }
}

.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -2px;
  text-wrap: balance;
}

.hero h1 .line {
  display: block;
}

.rotator {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  color: var(--o);
  min-width: 2ch;
}

.rotator span {
  display: inline-block;
  background: linear-gradient(100deg, var(--o) 0%, #ffb37a 45%, var(--o) 70%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 3.2s linear infinite;
}

.rotator span.out {
  animation: wordOut .38s var(--ease) forwards, shimmer 3.2s linear infinite;
}

.rotator span.in {
  animation: wordIn .6s var(--spring) both, shimmer 3.2s linear infinite;
}

@keyframes shimmer {
  to { background-position: -220% 0; }
}

@keyframes wordOut {
  to { transform: translateY(-60%) rotateX(80deg); opacity: 0; filter: blur(6px); }
}

@keyframes wordIn {
  from { transform: translateY(70%) rotateX(-80deg) scale(.9); opacity: 0; filter: blur(6px); }
  to { transform: none; opacity: 1; filter: none; }
}

.hero h1 em {
  display: block;
  margin-top: 12px;
  font-size: .56em;
  font-style: normal;
  letter-spacing: -1px;
  color: rgba(255, 255, 255, .55);
}

.lead {
  margin: 0;
  max-width: 50ch;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

/* Giriş animasyonu: içerik varsayılan görünür; .intro sınıfı JS ile eklenir. */
.intro [data-in] {
  animation: rise .9s var(--ease) both;
  animation-delay: calc(var(--d, 0) * 1ms);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: none; }
}

.intro .slam {
  animation: slam .8s var(--spring) both;
  animation-delay: calc(var(--d, 0) * 1ms);
}

@keyframes slam {
  0% { opacity: 0; transform: scale(1.9) rotate(-4deg); filter: blur(12px); }
  60% { opacity: 1; filter: none; }
  100% { opacity: 1; transform: none; }
}

/* ── Fayda kutucukları ── */
.perks {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.perk {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px 16px;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  transition: transform .35s var(--spring), border-color .25s, background .25s;
}

/* Tek sayıda kutucukta sonuncusu satırı boydan kaplar. */
.perk:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.perk:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 51, .5);
  background: rgba(255, 80, 0, .08);
}

.perk i {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 19px;
  color: #fff;
  background: linear-gradient(150deg, var(--o2), var(--o-deep));
  box-shadow: 0 8px 20px rgba(255, 80, 0, .35);
}

.perk strong {
  display: block;
  font-size: 14.5px;
  margin-bottom: 2px;
}

.perk span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

/* ── Sağ kolon: kart + etrafında uçuşan bildirimler ── */
.arena {
  position: relative;
  perspective: 1400px;
}

.chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border-radius: 16px;
  background: rgba(10, 25, 48, .78);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  white-space: nowrap;
  font-size: 13px;
  pointer-events: none;
  animation: bob 5s ease-in-out infinite;
  animation-delay: var(--bob, 0s);
}

.chip .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 17px;
  color: #fff;
}

.chip b {
  display: block;
  font-size: 13px;
}

.chip small {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
}

/* Çipler kartın dört köşesine oturur: yalnızca kartın boş iç boşluğuna (padding)
   taşar, form alanlarının üstünü kapatmaz. */
.chip.c1 { left: -58px; top: -30px; --bob: 0s; }
.chip.c2 { right: -58px; top: -30px; --bob: -1.4s; }
/* Alttakiler daha aşağıda: bob animasyonu 12px yukarı çıkarıyor, notun son satırını örtmesin. */
.chip.c3 { left: -58px; bottom: -48px; --bob: -2.6s; }
.chip.c4 { right: -58px; bottom: -48px; --bob: -3.5s; }

@keyframes bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

.intro .chip {
  animation: chipIn .9s var(--spring) both, bob 5s ease-in-out infinite;
  animation-delay: calc(var(--d, 0) * 1ms), var(--bob, 0s);
}

@keyframes chipIn {
  from { opacity: 0; transform: scale(.4) translateX(var(--from, 0px)); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: none; }
}

.card {
  position: relative;
  z-index: 2;
  border-radius: 26px;
  background: #fff;
  color: var(--card-ink);
  padding: 30px 28px 26px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .08);
  transform-style: preserve-3d;
  transition: transform .5s var(--ease);
  will-change: transform;
}

/* Kartın arkasında dönen turuncu hale */
.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 28px;
  background: conic-gradient(from var(--ang, 0deg), transparent 0 55%, var(--o) 70%, #ffc08f 78%, transparent 90%);
  filter: blur(14px);
  opacity: .85;
  animation: spin 4.5s linear infinite;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 26px;
  background: #fff;
}

@property --ang {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes spin {
  to { --ang: 360deg; }
}

.card.shake {
  animation: shake .5s cubic-bezier(.36, .07, .19, .97);
}

@keyframes shake {
  10%, 90% { translate: -2px 0; }
  20%, 80% { translate: 4px 0; }
  30%, 50%, 70% { translate: -8px 0; }
  40%, 60% { translate: 8px 0; }
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.card h2 {
  margin: 0;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -.6px;
}

.meter {
  font-size: 12px;
  font-weight: 700;
  color: var(--card-muted);
  white-space: nowrap;
}

.meter b {
  color: var(--o);
}

.card-sub {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--card-muted);
}

/* Erken erişim vurgusu: formun içinde, alanlardan hemen önce */
.early {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff5ee, #ffe4d2);
  border: 1px solid rgba(255, 80, 0, .25);
}

.early::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35%;
  left: -50%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .75), transparent);
  transform: skewX(-20deg);
  animation: sweep 4s ease-in-out 1.2s infinite;
  pointer-events: none;
}

.early i {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(150deg, var(--o2), var(--o-deep));
  box-shadow: 0 8px 18px rgba(255, 80, 0, .35);
  animation: wiggle 3.2s ease-in-out infinite;
}

.early b {
  display: block;
  margin-bottom: 1px;
  font-size: 13.5px;
  color: var(--o-deep);
}

.early span {
  font-size: 12.5px;
  line-height: 1.45;
  color: #5b4a40;
}

@keyframes wiggle {
  0%, 78%, 100% { transform: none; }
  84% { transform: rotate(-14deg) scale(1.1); }
  90% { transform: rotate(12deg) scale(1.1); }
  95% { transform: rotate(-6deg); }
}

.bar {
  height: 6px;
  border-radius: 999px;
  background: #f0f1f4;
  overflow: hidden;
  margin-bottom: 20px;
}

.bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--o), #ffb37a, var(--o));
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
  transition: width .6s var(--spring);
  box-shadow: 0 0 14px rgba(255, 80, 0, .6);
}

.field {
  position: relative;
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 650;
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  height: 50px;
  padding: 0 44px 0 14px;
  font-size: 15.5px;
  font-family: inherit;
  color: var(--card-ink);
  background: #fafbfc;
  border: 1.5px solid var(--bd);
  border-radius: 13px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.field input:focus {
  outline: none;
  background: #fff;
  border-color: var(--o);
  box-shadow: 0 0 0 4px rgba(255, 80, 0, .14);
}

.field .ok {
  position: absolute;
  right: 12px;
  bottom: 13px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: #fff;
  background: #16a34a;
  transform: scale(0);
  transition: transform .45s var(--spring);
  pointer-events: none;
}

.field.done .ok {
  transform: scale(1);
}

.field.done input {
  border-color: rgba(22, 163, 74, .45);
}

.phone {
  display: flex;
}

.phone .pre {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 650;
  color: var(--card-muted);
  background: #f3f4f7;
  border: 1.5px solid var(--bd);
  border-right: none;
  border-radius: 13px 0 0 13px;
  white-space: nowrap;
  user-select: none;
}

.phone input {
  border-radius: 0 13px 13px 0;
}

.flag {
  display: block;
  width: 21px;
  height: 14px;
  border-radius: 2px;
}

/* Bot tuzağı — görünmez; backend dolu gelirse kaydı yok sayar. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ── Gönder butonu ── */
.submit {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 56px;
  margin-top: 8px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--o2), var(--o) 45%, var(--o-deep));
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: -.2px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(255, 80, 0, .38);
  transition: transform .25s var(--spring), box-shadow .25s, filter .25s;
}

/* Parlama süpürmesi */
.submit::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  left: -60%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg);
  animation: sweep 3.2s ease-in-out infinite;
}

@keyframes sweep {
  0%, 55% { left: -60%; }
  100% { left: 130%; }
}

.submit:hover {
  filter: brightness(1.06);
  box-shadow: 0 18px 40px rgba(255, 80, 0, .5);
}

.submit:active {
  transform: scale(.97);
}

/* Üç alan dolunca buton "ateşlenir" */
.submit.ready {
  animation: glow 1.6s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 14px 30px rgba(255, 80, 0, .38), 0 0 0 0 rgba(255, 80, 0, .55); }
  50% { box-shadow: 0 18px 44px rgba(255, 80, 0, .6), 0 0 0 10px rgba(255, 80, 0, 0); }
}

.submit .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.submit .spin {
  display: none;
  width: 22px;
  height: 22px;
  margin: 0 auto;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  animation: rot .7s linear infinite;
}

.submit.loading {
  pointer-events: none;
}

.submit.loading .label {
  display: none;
}

.submit.loading .spin {
  display: block;
}

@keyframes rot {
  to { transform: rotate(360deg); }
}

.error {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 11px;
  font-size: 13.5px;
  font-weight: 600;
  color: #b42318;
  background: #fef3f2;
}

.error.show {
  display: block;
}

.note {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #9aa3ae;
}

.note a {
  color: var(--card-muted);
}

/* ── Başarı ekranı ── */
.success {
  text-align: center;
  padding: 6px 0 2px;
}

.card.flip {
  animation: flip .9s var(--ease);
}

@keyframes flip {
  0% { transform: rotateY(0); }
  45% { transform: rotateY(90deg) scale(.94); }
  55% { transform: rotateY(-90deg) scale(.94); }
  100% { transform: rotateY(0); }
}

.s-icon {
  width: 72px;
  height: 72px;
  margin: 6px auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 34px;
  color: #fff;
  background: linear-gradient(150deg, var(--o2), var(--o-deep));
  box-shadow: 0 14px 30px rgba(255, 80, 0, .4);
}

.success.play .s-icon {
  animation: pop .7s var(--spring) .3s both;
}

.success.play h2 {
  animation: rise .6s var(--ease) .45s both;
}

.success.play p {
  animation: rise .6s var(--ease) .55s both;
}

.success h2 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.8px;
  overflow-wrap: anywhere;
}

.success p {
  margin: 0 auto;
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--card-muted);
}

@keyframes pop {
  0% { transform: scale(0) rotate(-40deg); }
  100% { transform: none; }
}

.s-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.s-actions > * {
  flex: 1;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
}

.btn-ghost {
  color: var(--card-ink);
  background: #f3f4f7;
  border: none;
}

.btn-ghost:hover {
  background: #e9ebf0;
}

.btn-o {
  color: #fff;
  background: var(--o);
  border: none;
}

.btn-o:hover {
  background: var(--o-deep);
}

/* ── Ön kayıttan sonra şeridi ── */
.after {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 22px 80px;
}

.after h3 {
  margin: 0 0 22px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step {
  padding: 22px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-bd);
}

.step .n {
  font-size: 13px;
  font-weight: 800;
  color: var(--o);
}

.step strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 17px;
}

.step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.foot {
  position: relative;
  z-index: 10;
  padding: 24px 22px 34px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.foot nav {
  margin-top: 8px;
}

.foot a {
  margin: 0 9px;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

.foot a:hover {
  color: var(--o2);
}

/* ── Responsive ── */
@media (max-width: 1180px) {
  /* Sağda kenar boşluğu daralıyor; sağ çipler taşıp kırpılmasın. */
  .chip.c2,
  .chip.c4 { right: -14px; }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  /* Mobilde form en üstte: ziyaretçi ilk ekranda formu görsün. */
  .arena {
    order: -1;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .chip { display: none; }
  .steps { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 560px) {
  .perks { grid-template-columns: minmax(0, 1fr); }
  .card { padding: 24px 18px 20px; }
  .brand span { display: none; }
  .s-actions { flex-direction: column; }
  /* Dikey flex'te flex:1 (basis 0) yüksekliği ezer; butonlar 48px kalsın. */
  .s-actions > * { flex: 0 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
