/* ============================
   bidavet.co — design tokens
============================ */
:root {
  --coral: #E891A2;
  --coral-dark: #D06B80;
  --orange: #F2B5A0;
  --yellow: #F7D6A8;
  --teal: #7DBBB5;
  --teal-dark: #5A9A94;
  --cream: #FFF5F7;
  --cream-soft: #FFFAFB;
  --ink: #3D2A30;
  --ink-soft: #7A6068;
  --ink-deep: #1E1418;
  --white: #FFFFFF;

  --font-display: 'Baloo 2', sans-serif;
  --font-body: 'Quicksand', sans-serif;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-soft: 0 12px 30px rgba(61, 42, 48, 0.10);
  --shadow-pop: 0 16px 36px rgba(232, 145, 162, 0.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  font-weight: 500;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--coral-dark);
  background: #FFE8EE;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* ============================
   Buttons
============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-3px) scale(1.02); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-pop);
}
.btn-primary:hover { background: var(--coral-dark); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(47, 191, 166, 0.3);
}
.btn-teal:hover { background: var(--teal-dark); }

.btn-ghost {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ============================
   Decorative sparkles / blobs
============================ */
.sparkle {
  position: absolute;
  pointer-events: none;
  animation: float 5s ease-in-out infinite;
}
.sparkle svg { display: block; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(12deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow,
  .hero-phone,
  .invite-card--back,
  .sparkle {
    animation: none !important;
  }
  .hero-slide {
    transition: none !important;
  }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.35;
  z-index: 0;
}

/* ============================
   Header / Nav
============================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 245, 247, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(61, 42, 48, 0.06);
  transition: box-shadow 0.2s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img { height: 58px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  position: relative;
  padding: 6px 2px;
}

.nav-links a.highlight {
  color: var(--coral-dark);
}

.nav-links a:not(.highlight)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 3px;
  width: 0;
  background: var(--ink);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:not(.highlight):hover::after,
.nav-links a.is-active:not(.highlight)::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-login {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.lang-switch {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 999px;
  padding: 3px;
  box-shadow: var(--shadow-soft);
  gap: 2px;
}
.lang-btn {
  font-family: var(--font-display);
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-btn.active {
  background: var(--coral);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: 0.25s ease;
}

/* ============================
   Hero
============================ */
.hero {
  padding: 150px 0 72px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 12% 18%, rgba(232, 145, 162, 0.22), transparent 60%),
    radial-gradient(ellipse 55% 50% at 88% 72%, rgba(125, 187, 181, 0.28), transparent 55%),
    linear-gradient(180deg, #FFF8FA 0%, var(--cream) 55%, #F7EEF1 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow--coral {
  width: 340px;
  height: 340px;
  background: rgba(232, 145, 162, 0.35);
  top: -80px;
  left: -60px;
  animation: heroPulse 8s ease-in-out infinite;
}
.hero-glow--teal {
  width: 280px;
  height: 280px;
  background: rgba(125, 187, 181, 0.32);
  right: -40px;
  bottom: 40px;
  animation: heroPulse 9s ease-in-out infinite reverse;
}

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

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-brand {
  margin: 0 0 14px;
}
.hero-brand img {
  height: clamp(2.6rem, 5.5vw, 3.8rem);
  width: auto;
  display: block;
}

.hero h1 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--ink);
  max-width: 22ch;
}

.hero h1 .accent-coral { color: var(--coral-dark); }
.hero h1 .accent-teal { color: var(--teal-dark); }
.hero h1 .accent-orange { color: var(--orange); }

.hero p.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 38ch;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-trust {
  display: none;
}

/* Hero visual: realistic phone + screenshots */
.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-phone {
  position: relative;
  z-index: 3;
  width: min(276px, 70vw);
  animation: phoneFloat 6.5s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-phone-bezel {
  position: relative;
  padding: 7px;
  border-radius: 42px;
  background: linear-gradient(160deg, #4a4446 0%, #2a2426 48%, #3a3436 100%);
  box-shadow:
    0 22px 48px rgba(61, 42, 48, 0.16),
    0 0 0 1px rgba(255,255,255,0.12) inset,
    0 1px 0 rgba(255,255,255,0.18) inset;
}

.hero-phone-island {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 92px;
  height: 24px;
  border-radius: 999px;
  background: #0a0809;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.hero-phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 35px;
  aspect-ratio: 9 / 19.4;
  background: #FFF8F6;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.hero-phone-screen.is-dragging {
  cursor: grabbing;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: none;
  transition: opacity 0.5s ease, transform 0.35s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transform: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  background: #FFF8F6;
}

.hero-device-caption {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(61, 42, 48, 0.2);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 20px;
  background: var(--ink);
}

.hero-dot:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* legacy unused hero card hooks */
.hero-trust,
.invite-card,
.card-1, .card-2, .card-3 { display: none; }

/* ============================
   Feature strip — mirrors header
============================ */
.strip {
  position: relative;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(1.15);
  border-top: 1px solid rgba(61, 42, 48, 0.07);
  border-bottom: 1px solid rgba(61, 42, 48, 0.07);
  box-shadow: 0 8px 24px rgba(61, 42, 48, 0.05);
  padding: 0;
  margin: 0;
}
.strip-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  overflow-x: auto;
  scrollbar-width: none;
}
.strip-nav::-webkit-scrollbar { display: none; }
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  justify-content: center;
  padding: 10px 6px;
  white-space: nowrap;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.strip-item:hover { color: var(--ink); }
.strip-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  font-size: 0.88rem;
  line-height: 1;
  color: var(--coral-dark);
  background: #FFE8EE;
  flex-shrink: 0;
}
.strip-item:nth-child(2) .strip-icon { color: #5A9A94; background: #E5F4F2; }
.strip-item:nth-child(3) .strip-icon { color: #C9855A; background: #FFF0E8; }
.strip-item:nth-child(4) .strip-icon { color: #6B7FB8; background: #EEF1FB; }
.strip-item:nth-child(5) .strip-icon { color: #B8893A; background: #FFF4E0; }
.strip-icon i { font-size: 0.9rem; }
.strip-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.2;
}
.strip-text b {
  color: var(--ink);
  font-weight: 700;
}
.strip-item:hover .strip-text b {
  color: var(--coral-dark);
}

@media (max-width: 900px) {
  .strip-nav {
    justify-content: flex-start;
    gap: 8px;
    min-height: 56px;
  }
  .strip-item {
    flex: 0 0 auto;
    padding: 10px 12px;
  }
  .strip-text { font-size: 0.88rem; }
}

/* ============================
   Templates section
============================ */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab-btn {
  font-family: var(--font-display);
  background: var(--white);
  border: 2px solid transparent;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.2s ease;
  font-size: 0.95rem;
}
.tab-btn:hover { border-color: var(--ink); color: var(--ink); }
.tab-btn.active {
  background: var(--ink);
  color: var(--white);
}

.template-carousel {
  position: relative;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  touch-action: pan-y;
  animation: template-page-in 0.35s ease;
}
@keyframes template-page-in {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  box-shadow: var(--shadow-soft);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.2s ease;
}
.carousel-arrow:hover { background: var(--teal); color: var(--white); transform: translateY(-50%) scale(1.08); }
.carousel-arrow:disabled { opacity: 0.3; pointer-events: none; }
.carousel-arrow.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.carousel-arrow-left { left: -25px; }
.carousel-arrow-right { right: -25px; }

@media (max-width: 1300px) {
  .carousel-arrow-left { left: -10px; }
  .carousel-arrow-right { right: -10px; }
}
@media (max-width: 900px) {
  /* Tablet ve mobilde kaydırma (swipe) ile geçiliyor, oklara gerek yok */
  .carousel-arrow { display: none; }
}

.template-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}
.pager-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(61, 42, 48), 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.pager-dot:hover { background: var(--teal); opacity: 0.8; }
.pager-dot.active {
  width: 30px;
  background: var(--teal);
}

.template-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.template-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(61, 42, 48,0.14);
}

.template-card[data-cat="hidden"] { display: none; }

.template-preview {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 9 / 14.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 20px;
  overflow: hidden;
  isolation: isolate;
}
.template-preview .template-hover-video,
.template-preview .template-poster {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center top;
  z-index: 0;
}
.template-poster[data-key="amore"] { object-position: center top; }
.template-poster[data-key="locket"] { object-position: center top; }
.template-poster[data-key="yesil-bahce"] { object-position: center top; }
.template-poster[data-key="bej-cicekler"] { object-position: center top; }
.template-poster[data-key="polaroid"] { object-position: center top; }
.template-poster[data-key="gul-cesmesi"] { object-position: center top; }
.template-poster[data-key="zeytin-bahcesi"] { object-position: center top; }
.template-preview .template-hover-video {
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  /* Poster only hides when a hover video is actually playing — never on bare :hover */
  .template-card.is-playing .template-hover-video {
    opacity: 1;
  }
  .template-card.is-playing .template-poster {
    opacity: 0;
  }
}
.template-preview .template-poster {
  transition: opacity 0.25s ease;
}
.template-card.has-media .frame-name,
.template-card.has-media .frame-sub,
.template-card.has-media .frame-deco {
  display: none;
}
.template-preview .frame-name,
.template-preview .frame-sub,
.template-preview .frame-deco {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.template-card.has-media .template-preview {
  padding: 0 !important;
  background: #f5f0e8;
}
.template-card.has-media:nth-child(n) .template-preview {
  padding: 0 !important;
  background: #f5f0e8;
}

@media (prefers-reduced-motion: reduce) {
  .template-preview .template-hover-video { display: none !important; }
  .template-card:hover .template-poster,
  .template-card.is-playing .template-poster { opacity: 1; }
}

.template-preview .frame-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
}
.template-preview .frame-sub {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 8px;
}
.template-preview .frame-deco {
  font-size: 1.35rem;
  margin: 10px 0;
  line-height: 1;
}
.template-preview .frame-deco i {
  opacity: 0.95;
}

.template-card:nth-child(8n+1) .template-preview { background: linear-gradient(160deg,#E891A2,#D06B80); }
.template-card:nth-child(8n+2) .template-preview { background: linear-gradient(160deg,#7DBBB5,#5A9A94); }
.template-card:nth-child(8n+3) .template-preview { background: linear-gradient(160deg,#F2B5A0,#E09A82); }
.template-card:nth-child(8n+4) .template-preview { background: linear-gradient(160deg,#F7D6A8,#E8C48A); color:#3D2A30; }
.template-card:nth-child(8n+5) .template-preview { background: linear-gradient(160deg,#F2A0B0,#D06B80); }
.template-card:nth-child(8n+6) .template-preview { background: linear-gradient(160deg,#9DCFC9,#5A9A94); }
.template-card:nth-child(8n+7) .template-preview { background: linear-gradient(160deg,#E8B4C0,#C97A8E); }
.template-card:nth-child(8n+8) .template-preview { background: linear-gradient(160deg,#D4A5C0,#9A6B8A); }

.template-info {
  padding: 18px 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.template-info h4 { font-size: 1.05rem; margin-bottom: 4px; }
.template-info span { font-size: 0.82rem; color: var(--ink-soft); }
.template-info .badge {
  background: var(--cream);
  color: var(--coral-dark);
  font-size: 0.75rem;
  font-family: var(--font-display);
  padding: 6px 12px;
  border-radius: 999px;
}

.templates-more {
  text-align: center;
  margin-top: 48px;
}

/* ============================
   Custom (Kişiye Özel) section
============================ */
.custom-section {
  background: #7dbbb5;
  border-radius: var(--radius-lg);
  margin: 0 24px;
  max-width: 1200px;
  margin-inline: auto;
  padding: 80px 60px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.custom-section .eyebrow {
  background: rgba(255,255,255,0.15);
  color: var(--yellow);
}

.custom-section h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 18px;
}

.custom-section p {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  margin-bottom: 30px;
}

.custom-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 34px;
}
.custom-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.02rem;
}
.custom-list .check {
  width: 30px; height: 30px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.78rem;
}

.custom-visual {
  position: relative;
  height: 380px;
}
.custom-mock {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
  padding: 24px;
}
.custom-mock.m1 {
  width: 240px; top: 0; right: 40px;
  transform: rotate(6deg);
}
.custom-mock.m2 {
  width: 220px; bottom: 0; left: 0;
  transform: rotate(-5deg);
  background: rgba(255,255,255,0.95);
  color: var(--ink);
}
.custom-mock h4 { font-family: var(--font-display); margin-bottom: 8px; }
.custom-mock .dots { display:flex; gap:6px; margin-bottom: 14px; }
.custom-mock .dots span { width:10px; height:10px; border-radius:50%; background: var(--coral); }
.custom-mock .dots span:nth-child(2) { background: var(--yellow); }
.custom-mock .dots span:nth-child(3) { background: var(--teal); }
.custom-mock .line { height: 8px; background: rgba(255,255,255,0.3); border-radius: 4px; margin-bottom: 8px; }
.custom-mock.m2 .line { background: var(--cream); }

/* ============================
   How it works
============================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: repeating-linear-gradient(90deg, #F0C6B0 0, #F0C6B0 10px, transparent 10px, transparent 20px);
  z-index: 0;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 20px;
}
.step-card:nth-child(1) .step-num { background: var(--coral); }
.step-card:nth-child(2) .step-num { background: var(--orange); }
.step-card:nth-child(3) .step-num { background: var(--teal); }

.step-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step-card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ============================
   Features
============================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}
.feature-card:hover { transform: translateY(-6px); }

.feature-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: var(--ink);
}
.feature-card:nth-child(6n+1) .feature-icon { background: #FFE8EE; color: #D06B80; }
.feature-card:nth-child(6n+2) .feature-icon { background: #E5F4F2; color: #5A9A94; }
.feature-card:nth-child(6n+3) .feature-icon { background: #FFEDE6; color: #C9855A; }
.feature-card:nth-child(6n+4) .feature-icon { background: #FFF4E0; color: #B8893A; }
.feature-card:nth-child(6n+5) .feature-icon { background: #FDE4EA; color: #D06B80; }
.feature-card:nth-child(6n+6) .feature-icon { background: #EAF0FB; color: #6B7FB8; }

.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ============================
   Pricing
============================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
}

.price-card.featured {
  background: linear-gradient(160deg, var(--coral), var(--coral-dark));
  color: var(--white);
  transform: scale(1.05);
  box-shadow: var(--shadow-pop);
}

.price-card .plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.78rem;
  padding: 6px 16px;
  border-radius: 999px;
}

.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card .price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  margin: 18px 0 6px;
}
.price-card .price span { font-size: 1rem; font-weight: 500; }
.price-card .price-note { font-size: 0.85rem; opacity: 0.75; margin-bottom: 26px; }

.price-card ul { text-align: left; margin-bottom: 30px; display: flex; flex-direction: column; gap: 12px; }
.price-card ul li { font-size: 0.95rem; display: flex; gap: 10px; align-items: flex-start; }
.price-card ul li > i {
  color: var(--teal-dark);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.price-card .btn { width: 100%; }

/* ============================
   Testimonials
============================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.testimonial-stars {
  color: var(--yellow);
  margin-bottom: 14px;
  font-size: 0.95rem;
  display: flex;
  gap: 4px;
}
.nav-links a i,
.footer-col a i {
  font-size: 0.78em;
  margin-right: 2px;
}
.eyebrow > i {
  font-size: 0.9em;
}
.btn i {
  margin-left: 6px;
  font-size: 0.9em;
}
.testimonial-card p.quote { font-size: 1rem; color: var(--ink); margin-bottom: 22px; line-height: 1.5; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.1rem;
}
.testimonial-card:nth-child(3n+1) .author-avatar { background: var(--coral); }
.testimonial-card:nth-child(3n+2) .author-avatar { background: var(--teal); }
.testimonial-card:nth-child(3n+3) .author-avatar { background: var(--orange); }

.testimonial-author b { display: block; font-family: var(--font-display); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.82rem; color: var(--ink-soft); }

/* ============================
   FAQ
============================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 6px 26px;
  box-shadow: var(--shadow-soft);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.faq-q .icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--coral-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--coral); color: var(--white); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 22px; }

/* ============================
   Final CTA
============================ */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: var(--radius-lg);
  margin: 0 24px;
  max-width: 1200px;
  margin-inline: auto;
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}
.final-cta h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 16px; color: var(--ink); }
.final-cta p { color: var(--ink-soft); margin-bottom: 30px; font-size: 1.1rem; }
.final-cta .btn-primary { background: var(--ink); }
.final-cta .btn-primary:hover { background: var(--ink-deep); }

/* ============================
   Footer
============================ */
.site-footer {
  background: var(--ink-deep);
  color: rgba(255, 245, 247, 0.72);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo img {
  height: 46px;
  width: auto;
}
.footer-brand p { margin-top: 16px; font-size: 0.92rem; max-width: 280px; line-height: 1.6; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
  max-width: 280px;
}
.footer-contact a {
  color: rgba(255, 245, 247, 0.78);
  font-size: 0.88rem;
  line-height: 1.5;
  text-decoration: none;
}
.footer-contact a:hover { color: var(--yellow); }

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 4500;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.48);
  color: #fff;
}

.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--coral); }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* ============================
   Blog listing
============================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(61, 42, 48,0.14);
}

.blog-card-preview {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  color: var(--white);
}

.blog-card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card-body h3 { font-size: 1.2rem; }
.blog-card-body p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; line-height: 1.5; }

.reading-tag {
  align-self: flex-start;
  background: var(--cream);
  color: var(--coral-dark);
  font-family: var(--font-display);
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ============================
   Blog article
============================ */
.article-hero {
  border-radius: var(--radius-lg);
  margin: 0 24px;
  max-width: 1200px;
  margin-inline: auto;
  padding: 70px 50px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-hero .eyebrow { background: rgba(255,255,255,0.2); color: var(--white); }
.article-hero h1 { color: var(--white); font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 16px; max-width: 780px; margin-inline: auto; }
.article-hero .dek { font-size: 1.15rem; opacity: 0.92; max-width: 620px; margin: 0 auto 22px; }
.article-hero .byline { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; font-family: var(--font-display); font-size: 0.9rem; opacity: 0.88; position: relative; z-index: 2; }

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 24px;
  position: relative;
  z-index: 1;
}
.article-body h2 { font-size: 1.7rem; margin: 44px 0 16px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.25rem; margin: 30px 0 12px; }
.article-body p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; display: flex; flex-direction: column; gap: 10px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.6; }
.article-body a { color: var(--coral-dark); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(250,107,92,0.35); }
.article-body a:hover { text-decoration-color: var(--coral-dark); }

.article-table-wrap { overflow-x: auto; margin-bottom: 24px; }
.article-body table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-soft); }
.article-body th, .article-body td { padding: 14px 18px; text-align: left; font-size: 0.95rem; }
.article-body th { background: var(--ink); color: var(--white); font-family: var(--font-display); font-weight: 600; }
.article-body tr:nth-child(even) td { background: var(--cream-soft); }
.article-body td { color: var(--ink-soft); border-bottom: 1px solid #F0DFCF; }

.blog-tip {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 28px 0;
  font-size: 1rem;
  color: var(--ink);
}
.blog-tip strong { font-family: var(--font-display); }

.invite-quote {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 28px 30px;
  margin: 22px 0;
  border-left: 5px solid var(--coral);
}
.invite-quote h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 12px; color: var(--coral-dark); }
.invite-quote p { color: var(--ink); font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; line-height: 1.7; margin-bottom: 0; white-space: pre-line; }

.other-posts {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  margin: 40px 0;
}
.other-posts h3 { font-size: 1.15rem; margin-bottom: 16px; }
.other-posts-links { display: flex; flex-direction: column; gap: 12px; }
.other-posts-links a { font-family: var(--font-display); color: var(--ink); font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.other-posts-links a:hover { color: var(--coral-dark); }

/* ============================
   Reveal animation
============================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   Responsive
============================ */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { min-height: 0; margin-top: 8px; }
  .hero-brand { margin-bottom: 10px; }
  .hero h1 { max-width: none; }
  .hero-phone { width: min(240px, 64vw); }
  .custom-grid { grid-template-columns: 1fr; }
  .custom-visual { height: 300px; }
  .template-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: scale(1); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links, .nav-actions .nav-login { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0; right: 0;
    background: var(--cream-soft);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-soft);
  }
  .template-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .custom-section { padding: 50px 26px; }
  .section { padding: 70px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-hero { padding: 50px 26px; }
  .article-body { padding: 50px 20px; }
}

/* ============================
   Çerez izni banner'ı
============================ */
#cookie-consent-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(61, 42, 48,0.22);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 5000;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
#cookie-consent-banner.show { opacity: 1; transform: translateY(0); pointer-events: all; }
#cookie-consent-banner p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; flex: 1; min-width: 220px; }
#cookie-consent-banner p a { color: var(--coral-dark); text-decoration: underline; }
.cookie-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }

@media (max-width: 560px) {
  #cookie-consent-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px 20px; flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-consent-actions { justify-content: center; }
}

/* ============================
   Inner pages (legal, quote)
============================ */
.inner-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 84px;
}
.inner-page main { flex: 1; }

.inner-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 56px 0 12px;
}
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  color: var(--ink);
}
.inner-hero .dek {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

.inner-wrap { padding-bottom: 80px; }

.inner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 48px 44px;
  margin: 24px auto 0;
  max-width: 760px;
}
.inner-card.article-body {
  padding: 48px 44px;
  margin-inline: auto;
}
.inner-card.quote-card { max-width: 560px; }

.quote-form .btn { width: 100%; margin-top: 8px; }
.quote-form .field { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.quote-form input,
.quote-form textarea {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
}
.quote-form textarea { resize: vertical; min-height: 140px; }

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 8px 0 28px;
}
.contact-actions--wide {
  grid-template-columns: 1fr 1fr;
}
.contact-tile {
  display: block;
  background: var(--cream-soft);
  border: 1px solid #F0DFCF;
  border-radius: var(--radius-md);
  padding: 22px 20px 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.article-body .contact-tile,
.article-body .contact-tile:hover {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}
.contact-tile .feature-icon {
  margin-bottom: 12px;
  background: #FFE8EE;
  color: var(--coral-dark);
}
.contact-tile h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.contact-tile p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .inner-hero { padding: 40px 0 8px; }
  .inner-card,
  .inner-card.article-body { padding: 32px 22px; }
  .contact-actions,
  .contact-actions--wide { grid-template-columns: 1fr; }
  .wa-float { bottom: 92px; }
}
