/* ============================
   davetio — design tokens
============================ */
:root {
  --coral: #FA6B5C;
  --coral-dark: #E85445;
  --orange: #FF914D;
  --yellow: #FBBC50;
  --teal: #2FBFA6;
  --teal-dark: #229C87;
  --cream: #FDEEE1;
  --cream-soft: #FFF8F1;
  --ink: #3E2E28;
  --ink-soft: #7A6A62;
  --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(62, 46, 40, 0.10);
  --shadow-pop: 0 16px 36px rgba(250, 107, 92, 0.25);
}

* { 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: #FFE4DD;
  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); }
}

@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(253, 238, 225, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(62, 46, 40, 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(--teal);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:not(.highlight):hover::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: 168px 0 90px;
  position: relative;
  overflow: hidden;
}

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

.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  margin-bottom: 20px;
}

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

.hero p.lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-trust .stat {
  display: flex;
  flex-direction: column;
}
.hero-trust .stat b {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-dark);
}
.hero-trust .stat span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Hero visual: stacked invitation cards */
.hero-visual {
  position: relative;
  height: 520px;
}

.invite-card {
  position: absolute;
  width: 250px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 26px 22px;
  color: var(--white);
  text-align: center;
}

.invite-card .tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 10px;
}

.invite-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.invite-card p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.invite-card .heart {
  font-size: 1.4rem;
  margin: 14px 0;
}

.card-1 {
  background: linear-gradient(155deg, var(--coral), var(--coral-dark));
  top: 30px;
  left: 10px;
  transform: rotate(-9deg);
  z-index: 2;
}

.card-2 {
  background: linear-gradient(155deg, var(--teal), var(--teal-dark));
  top: 90px;
  right: 0;
  transform: rotate(8deg);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.card-3 {
  background: linear-gradient(155deg, var(--orange), #E87A32);
  bottom: 10px;
  left: 60px;
  transform: rotate(5deg);
  z-index: 1;
  width: 220px;
}

/* ============================
   Marquee / logos strip
============================ */
.strip {
  background: var(--white);
  padding: 22px 0;
  border-top: 2px dashed #F3D9C6;
  border-bottom: 2px dashed #F3D9C6;
}
.strip-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-display);
  color: var(--ink-soft);
  font-size: 1rem;
}
.strip-inner span { white-space: nowrap; }
.strip-inner b { color: var(--ink); }

/* ============================
   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(--teal); 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(62, 46, 40, 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(62,46,40,0.14);
}

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

.template-preview {
  height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.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.5rem;
  margin: 10px 0;
}

.template-card:nth-child(8n+1) .template-preview { background: linear-gradient(160deg,#FA6B5C,#E85445); }
.template-card:nth-child(8n+2) .template-preview { background: linear-gradient(160deg,#2FBFA6,#1F8A76); }
.template-card:nth-child(8n+3) .template-preview { background: linear-gradient(160deg,#FF914D,#E06A24); }
.template-card:nth-child(8n+4) .template-preview { background: linear-gradient(160deg,#FBBC50,#E89B24); color:#3E2E28; }
.template-card:nth-child(8n+5) .template-preview { background: linear-gradient(160deg,#F27D9E,#D75C7F); }
.template-card:nth-child(8n+6) .template-preview { background: linear-gradient(160deg,#6FCF97,#3FA870); }
.template-card:nth-child(8n+7) .template-preview { background: linear-gradient(160deg,#7C9CF2,#5678D6); }
.template-card:nth-child(8n+8) .template-preview { background: linear-gradient(160deg,#C084F5,#9A54D6); }

.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: linear-gradient(135deg, #2A6E63 0%, #1F4E48 100%);
  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: #3E2E28;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.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.5rem;
  margin-bottom: 18px;
}
.feature-card:nth-child(6n+1) .feature-icon { background: #FFE4DD; }
.feature-card:nth-child(6n+2) .feature-icon { background: #DCF5EF; }
.feature-card:nth-child(6n+3) .feature-icon { background: #FFE9D6; }
.feature-card:nth-child(6n+4) .feature-icon { background: #FFF3D2; }
.feature-card:nth-child(6n+5) .feature-icon { background: #FDE0EA; }
.feature-card:nth-child(6n+6) .feature-icon { background: #E4E9FD; }

.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 .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: 1.1rem; letter-spacing: 2px; }
.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: #5A4536; margin-bottom: 30px; font-size: 1.1rem; }
.final-cta .btn-primary { background: var(--ink); }
.final-cta .btn-primary:hover { background: #241a16; }

/* ============================
   Footer
============================ */
.site-footer {
  background: #2A2119;
  color: rgba(255,255,255,0.75);
  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;
  border-radius: 12px;
}
.footer-brand p { margin-top: 16px; font-size: 0.92rem; max-width: 280px; line-height: 1.6; }

.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(62,46,40,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 { height: 420px; margin-top: 20px; }
  .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(62,46,40,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(--teal-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; }
}
