/* ============================================
   ORTAK SAYFA STİLLERİ (About, Contact, Support, Purchase)
   ============================================ */

/* Page Header - LIGHT THEME (landing.html hariç) */
.page-header,
.landing-page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.page-header-container,
.landing-page-header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.page-header-nav,
.landing-page-header-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.page-header-actions,
.landing-page-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  height: 32px;
  width: auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-dark);
}

.login-button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.login-button:hover {
  border-color: var(--floovon-pink);
  color: var(--floovon-pink);
}

.landing-header-cta .cta-button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  background: var(--gradient-pink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pink);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.cta-button:hover {
  box-shadow: var(--shadow-pink-lg);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .page-header-nav,
  .landing-page-header-nav {
  display: flex;
  }
}

/* Page Main */
.page-main,
.landing-page-main {
  padding-top: 72px;
}

/* Page Footer */
.page-footer,
.landing-page-footer {
  padding: 32px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.landing-page-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .landing-page-footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--text-dark);
}

/* Section Title */
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}

.section-description {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
#about-page {
  min-height: 100vh;
  background: var(--bg-light);
}

.about-hero,
.landing-about-hero {
  padding: 80px 0;
  background: var(--bg-white);
  text-align: center;
}

.about-hero-container,
.landing-about-hero-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-hero-badge,
.landing-about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(236, 9, 114, 0.05);
  border: 1px solid rgba(236, 9, 114, 0.1);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--floovon-pink);
  margin-bottom: 24px;
}

.about-hero-badge svg,
.landing-about-hero-badge svg {
  width: 16px;
  height: 16px;
}

.about-hero-title,
.landing-about-hero-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-hero-description,
.landing-about-hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .about-hero-title,
  .landing-about-hero-title {
    font-size: 48px;
  }
}

/* About Stats */
.about-stats,
.landing-about-stats {
  padding: 64px 0;
  background: var(--gradient-pink);
}

.about-stats-container,
.landing-about-stats-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .about-stats-container,
  .landing-about-stats-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  color: #ffffff;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
  color: #ffffff;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 48px;
  }
}

/* About Story */
.about-story,
.landing-about-story {
  padding: 80px 0;
  background: var(--bg-white);
}

.about-story-container,
.landing-about-story-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-story-container,
  .landing-about-story-container {
    grid-template-columns: 1fr 1fr;
  }
}

.story-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-image-placeholder {
  background: linear-gradient(135deg, rgba(236, 9, 114, 0.1), rgba(255, 107, 179, 0.1));
  border-radius: var(--radius-2xl);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--floovon-pink);
}

.story-image-placeholder svg {
  width: 48px;
  height: 48px;
}

/* About Values */
.about-values,
.landing-about-values {
  padding: 80px 0;
  background: var(--bg-light);
}

.about-values-container,
.landing-about-values-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  padding: 32px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--floovon-pink), var(--floovon-pink-dark));
  border-radius: var(--radius-lg);
  color: var(--text-white);
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.value-description {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============================================
   ABOUT PAGE — kurumsal hikaye (sade / timeline)
   ============================================ */
.about-biz-hero {
  padding: 88px 0 40px;
  background: var(--bg-white);
  text-align: center;
}

.about-biz-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-biz-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--floovon-pink);
  margin: 0 0 16px;
}

.about-biz-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.about-biz-lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.about-biz-prose {
  padding: 24px 0 64px;
  background: var(--bg-white);
}

.about-biz-prose-inner {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-secondary);
  text-align: center;
}

.about-biz-prose-inner p {
  margin: 0 0 20px;
}

.about-biz-highlight {
  margin: 32px 0 36px;
  padding: 28px 26px;
  border: none;
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, rgba(236, 9, 114, 0.07), rgba(139, 92, 246, 0.06));
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.about-biz-highlight p {
  margin: 0 0 20px;
  font-size: clamp(19px, 2.4vw, 25px);
  line-height: 1.55;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  text-align: center;
}

.about-biz-highlight p:last-child {
  margin-bottom: 0;
}

/* Hakkımızda — Dönüm noktaları (3 kart) */
.about-biz-milestones {
  padding: 56px 0 72px;
  background: var(--bg-light);
}

.about-biz-milestones-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.about-biz-milestones-title {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.about-biz-milestones-lede {
  margin: 18px 0 0;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.65;
  color: var(--text-secondary);
}

.about-biz-milestones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .about-biz-milestones-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }
}

.about-biz-milestone-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.about-biz-milestone-card:hover {
  border-color: rgba(236, 9, 114, 0.2);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.about-biz-milestone-visual {
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--border-light);
}

.about-biz-milestone-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-biz-milestone-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-biz-milestone-name {
  margin: 0 0 10px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.about-biz-milestone-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.about-biz-section-title {
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 800;
  text-align: center;
  color: var(--text-dark);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.about-biz-values {
  padding: 72px 0 88px;
  background: var(--bg-light);
}

.about-biz-values-intro {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-biz-values-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .about-biz-values-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

.about-biz-value-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: flex-start;
  height: 100%;
  padding: 24px 26px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.about-biz-value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--floovon-pink), var(--floovon-pink-dark));
  color: var(--text-white);
  flex-shrink: 0;
}

.about-biz-value-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.about-biz-value-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
#contact-page {
  min-height: 100vh;
  background: var(--bg-light);
}

.contact-hero,
.landing-contact-hero {
  padding: 80px 0;
  background: var(--bg-white);
  text-align: center;
}

.contact-hero-container,
.landing-contact-hero-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-hero-badge,
.landing-contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(236, 9, 114, 0.05);
  border: 1px solid rgba(236, 9, 114, 0.1);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--floovon-pink);
  margin-bottom: 24px;
}

.contact-hero-badge svg,
.landing-contact-hero-badge svg {
  width: 16px;
  height: 16px;
}

.contact-hero-title,
.landing-contact-hero-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.contact-hero-description,
.landing-contact-hero-description {
  font-size: 18px;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .contact-hero-title,
  .landing-contact-hero-title {
    font-size: 48px;
  }
}

/* Contact Form Section */
.contact-form-section,
.landing-contact-form-section {
  padding: 64px 0;
  background: var(--bg-white);
}

.contact-form-container,
.landing-contact-form-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-form-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.contact-form-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  min-height: 0;
  box-sizing: border-box;
}

.contact-form-info .section-title {
  margin-bottom: 0;
  text-align: center;
}

.contact-form-info .section-description {
  margin-bottom: 0;
  text-align: center;
}

.contact-form-info .response-time {
  margin-top: 4px;
  justify-content: center;
  width: 100%;
  max-width: fit-content;
}

.contact-form-wrapper {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--floovon-pink);
  box-shadow: 0 0 0 3px rgba(236, 9, 114, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  line-height: 1.5;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  background: var(--gradient-pink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pink);
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
}

.submit-btn:hover {
  box-shadow: var(--shadow-pink-lg);
  transform: translateY(-2px);
}

.submit-btn svg {
  width: 18px;
  height: 18px;
}

.response-time {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--color-success);
}

.response-time svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   SUPPORT PAGE
   ============================================ */
#support-page {
  min-height: 100vh;
  background: var(--bg-light);
}

.support-hero,
.landing-support-hero {
  padding: 80px 0;
  background: var(--bg-white);
  text-align: center;
}

.support-hero-container,
.landing-support-hero-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

.support-hero-badge,
.landing-support-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(236, 9, 114, 0.05);
  border: 1px solid rgba(236, 9, 114, 0.1);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--floovon-pink);
  margin-bottom: 24px;
}

.support-hero-badge svg,
.landing-support-hero-badge svg {
  width: 16px;
  height: 16px;
}

.support-hero-title,
.landing-support-hero-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .support-hero-title,
  .landing-support-hero-title {
    font-size: 48px;
  }
}

.support-search {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
  position: relative;
}

.support-search svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.support-search input {
  flex: 1;
  border: none;
  background: none;
  font-size: 16px;
  color: var(--text-dark);
  outline: none;
}

.support-search input::placeholder {
  color: var(--text-muted);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 100;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all var(--transition-fast);
  border-bottom: 1px solid var(--border-light);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(236, 9, 114, 0.05);
  color: var(--floovon-pink);
}

.search-result-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.search-no-result {
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* Support Categories */
.support-categories,
.landing-support-categories {
  padding: 0 0 64px 0;
  background: var(--bg-white);
}

.support-categories-container,
.landing-support-categories-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.category-card {
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.category-card:hover {
  box-shadow: var(--shadow-lg);
}

.category-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .category-header {
    flex-direction: column;
  }
}

.category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--floovon-pink), var(--floovon-pink-dark));
  border-radius: var(--radius-md);
  color: var(--text-white);
  flex-shrink: 0;
}

.category-icon svg {
  width: 24px;
  height: 24px;
}

.category-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.category-description {
  font-size: 14px;
  color: var(--text-secondary);
}

.category-articles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.category-articles li {
  list-style: none;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.article-link:hover {
  color: var(--floovon-pink);
}

.article-link svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.article-link:hover svg {
  color: var(--floovon-pink);
}

.see-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--floovon-pink);
  transition: gap var(--transition-fast);
}

.see-all-link:hover {
  gap: 12px;
}

.see-all-link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   PURCHASE PAGE
   ============================================ */
#purchase-page {
  min-height: 100vh;
  background: var(--bg-light);
}

/* Purchase Header - Ayrı Stil */
.purchase-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 0;
  height: 60px;
  display: flex;
  align-items: center;
}

.purchase-header .purchase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.purchase-header .purchase-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
}

.purchase-header .purchase-logo img {
  height: 28px;
  width: auto;
}

.purchase-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.purchase-header .purchase-secure-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #10b981;
}

.purchase-header .purchase-secure-badge svg {
  width: 14px;
  height: 14px;
}

.purchase-secure-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-success);
}

.purchase-secure-badge svg {
  width: 16px;
  height: 16px;
}

.purchase-main {
  padding: 3rem 0;
  min-height: calc(100vh - 72px);
}

.purchase-content {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
}

.purchase-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.purchase-progress {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.purchase-progress-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.purchase-progress-step.active {
  opacity: 1;
}

.purchase-progress-step.completed {
  opacity: 1;
}

.purchase-progress-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
  transition: all 0.3s;
}

.purchase-progress-step.active .purchase-progress-number {
  background: #2563eb;
  color: white;
}

.purchase-progress-step.completed .purchase-progress-number {
  background: #10b981;
  color: white;
}

.purchase-progress-label {
  font-weight: 500;
  color: #0f172a;
}

.purchase-progress-line {
  width: 2px;
  height: 2rem;
  background: #e2e8f0;
  margin-left: 1rem;
}

.purchase-progress-step.completed + .purchase-progress-line {
  background: #10b981;
}

.purchase-form-container {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.purchase-step {
  display: none;
}

.purchase-step.active {
  display: block;
}

.purchase-step-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.purchase-step-subtitle {
  color: #475569;
  margin-bottom: 2rem;
}

.purchase-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.purchase-pricing-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: #475569;
  font-size: 1rem;
}

.purchase-form {
  max-width: 600px;
}

.purchase-form-group {
  margin-bottom: 1.5rem;
}

.purchase-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #0f172a;
}

.purchase-form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.purchase-form-group input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.purchase-form-group input.error {
  border-color: #ef4444;
}

.purchase-form-group small {
  display: block;
  margin-top: 0.25rem;
  color: #475569;
  font-size: 0.875rem;
}

.purchase-form-error {
  display: block;
  margin-top: 0.25rem;
  color: #ef4444;
  font-size: 0.875rem;
  font-weight: 500;
}

.purchase-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.purchase-payment-methods {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.purchase-payment-method {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.purchase-payment-method:hover {
  border-color: #2563eb;
}

.purchase-payment-method.active {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.05);
}

.purchase-payment-method input {
  margin: 0;
}

.purchase-payment-form {
  margin-bottom: 2rem;
}

.purchase-bank-info {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.purchase-bank-details p {
  margin: 0.5rem 0;
  color: #475569;
}

.purchase-bank-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

.purchase-summary {
  background: #f8fafc;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.purchase-summary-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.purchase-summary-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.purchase-summary-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0f172a;
}

.purchase-summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: #475569;
}

.purchase-summary-item span:last-child {
  font-weight: 500;
  color: #0f172a;
}

.purchase-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 2px solid #e2e8f0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.purchase-step-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}

.purchase-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
}

.purchase-btn-primary {
  background: #2563eb;
  color: white;
}

.purchase-btn-primary:hover:not(:disabled) {
  background: #1d4ed8;
}

.purchase-btn-secondary {
  background: white;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}

.purchase-btn-secondary:hover {
  background: #f8fafc;
}

@media (max-width: 1024px) {
  .purchase-content {
    grid-template-columns: 1fr;
  }
  
  .purchase-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .purchase-form-container {
    padding: 1.5rem;
  }
  
  .purchase-form-row {
    grid-template-columns: 1fr;
  }
  
  .purchase-payment-methods {
    flex-direction: column;
  }
}

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

.purchase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .purchase-grid {
    grid-template-columns: 1fr 360px;
  }
}

/* Purchase Form Card */
.purchase-form-card,
.landing-purchase-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

/* Purchase Main */
body.landing-purchase-page {
  overflow-x: clip;
}

/* Satın al — aylık/yıllık toggle (landing-pricing-section dışında; dark tema uyumu) */
body.theme-dark.landing-purchase-page .landing-pricing-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

body.theme-dark.landing-purchase-page .landing-toggle-btn {
  color: var(--text-muted);
}

body.theme-dark.landing-purchase-page .landing-toggle-btn.active {
  background: var(--bg-light-secondary);
  color: var(--text-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

body.theme-light.landing-purchase-page .landing-pricing-toggle {
  background: var(--landing-slate-100, #f1f5f9);
  border: none;
}

body.theme-light.landing-purchase-page .landing-toggle-btn {
  color: var(--text-secondary);
}

body.theme-light.landing-purchase-page .landing-toggle-btn.active {
  background: var(--bg-white);
  color: var(--text-dark);
}

.landing-purchase-main {
  min-height: 100vh;
  background: var(--bg-light);
  padding: calc(72px + 2rem) 0 2rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: visible;
}

.landing-purchase-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.landing-purchase-steps {
  width: 100%;
  margin-bottom: 24px;
}

.landing-purchase-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

.landing-purchase-main--closed {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 72px);
  padding-top: calc(72px + 1.5rem);
  padding-bottom: 2rem;
}

.landing-purchase-main--closed .landing-purchase-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 0;
}

.landing-purchase-grid--closed {
  display: flex !important;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  grid-template-columns: none !important;
}

.landing-purchase-closed-panel {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--bg-white, #fff);
  border: 1px solid var(--border-light, #e5e7eb);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.landing-purchase-closed-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  color: #f59e0b;
}

.landing-purchase-closed-title {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark, #0f172a);
}

.landing-purchase-closed-text {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary, #64748b);
}

.landing-purchase-closed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.landing-purchase-form-card {
  min-width: 0;
  width: 100%;
}

.landing-purchase-sidebar.landing-sidebar-card {
  width: 100%;
}

@media (max-width: 1023px) {
  body.landing-purchase-on-confirm-step .landing-purchase-sidebar.landing-sidebar-card {
    display: none;
  }
}

@media (min-width: 1024px) {
  .landing-purchase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: start;
  }

  .landing-purchase-form-card {
    min-width: 0;
  }

  .landing-purchase-sidebar.landing-sidebar-card {
    position: -webkit-sticky;
    position: sticky;
    top: calc(72px + 1rem);
    align-self: start;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }
}

/* Purchase Steps - Yatay Progress Bar (Orchids Style) */
.purchase-steps,
.landing-purchase-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom:2rem;
  padding: 0;
}

.step-wrapper,
.landing-step-wrapper {
  display: flex;
  align-items: center;
}

.step-item,
.landing-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.landing-step-item.active {
  opacity: 1;
}

.landing-step-item.completed {
  opacity: 1;
}

.step-number,
.landing-step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-normal);
}

.landing-step-item.active .landing-step-number {
  background: var(--floovon-pink);
  border-color: var(--floovon-pink);
  color: var(--text-white);
}

.landing-step-item.completed .landing-step-number {
  background: var(--color-success);
  border-color: var(--color-success);
  color: var(--text-white);
}

.step-label,
.landing-step-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
}

.landing-step-item.active .landing-step-label {
  color: var(--floovon-pink);
}

.landing-step-item.completed .landing-step-label {
  color: var(--color-success);
}

.step-divider,
.landing-step-divider {
  width: 40px;
  height: 2px;
  background: var(--border-light);
  margin: 0 8px 24px;
}

@media (min-width: 640px) {
  .step-divider {
    width: 80px;
  }
}

/* Form Step */
.form-step h2,
.landing-form-step h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-step-desc,
.landing-form-step-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.landing-payment-secure-notice {
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: var(--bg-light-secondary);
  margin-bottom: 1.5rem;
}

.landing-payment-secure-notice p {
  margin: 0 0 0.5rem;
  font-size: 15px;
  color: var(--text-secondary);
}

.landing-payment-secure-notice p:last-child {
  margin-bottom: 0;
}

.landing-payment-secure-notice .landing-iyzico-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background-color: #1e64ff;
  border-top: none;
}

.landing-iyzico-badge {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.landing-iyzico-badge img,
.landing-iyzico-pay-logo {
  height: 28px;
  width: auto;
  max-width: 100%;
}

.landing-sidebar-iyzico {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 1rem 0;
  padding: 12px;
  border-radius: var(--radius-md);
  background-color: #1e64ff;
  cursor: default;
}

.landing-sidebar-iyzico img {
  height: 40px;
  width: auto;
  max-width: 100%;
}

.landing-sidebar-iyzico span {
  font-size: 11px;
  color: #ffffff;
  text-align: center;
}

.landing-iyzico-checkout-host {
  margin-top: 1rem;
  min-height: 420px;
}

.landing-form-step {
  display: none;
}

.landing-form-step.active {
  display: block;
}

/* Satın alma — sipariş özeti adımı: hukuki onay */
.landing-purchase-legal-block {
  margin-top: 1rem;
  padding: 0.75rem 0 0;
  border-top: 1px solid var(--border-light);
}

.landing-purchase-legal-check {
  position: relative;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.875rem 1rem;
  margin: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  font-size: 0.8125rem;
  line-height: 1.45;
  cursor: pointer;
  color: var(--text-secondary);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.landing-purchase-legal-check:hover {
  border-color: rgba(236, 9, 114, 0.35);
}

.landing-purchase-legal-check.is-error {
  border-color: var(--color-error, #ef4444);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.landing-purchase-legal-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}

.landing-purchase-legal-check-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  /* margin-top: 2px; */
  border: 2px solid var(--border-light);
  border-radius: 4px;
  background: var(--bg-white);
  position: relative;
  transition: background 0.15s ease, border-color 0.15s ease;
  pointer-events: none;
}

.landing-purchase-legal-check input[type="checkbox"]:checked + .landing-purchase-legal-check-box {
  background: var(--floovon-pink);
  border-color: var(--floovon-pink);
}

.landing-purchase-legal-check input[type="checkbox"]:checked + .landing-purchase-legal-check-box::after {
  content: '';
  position: absolute;
  left: 5px;
  /* top: 1px; */
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.landing-purchase-legal-check input[type="checkbox"]:focus-visible + .landing-purchase-legal-check-box {
  outline: 2px solid var(--floovon-pink);
  outline-offset: 2px;
}

.landing-purchase-legal-check-text {
  flex: 1;
}

.landing-purchase-legal-check a {
  color: var(--mor-primary-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-purchase-legal-error {
  display: block;
  margin-top: 0.5rem;
}

.landing-purchase-step-error {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.08);
  color: var(--color-error, #ef4444);
  font-size: 14px;
  line-height: 1.45;
}

.landing-purchase-legal-note {
  margin: 0.5rem 0 0;
  padding-left: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Plan Options */
.plan-options,
.landing-purchase-pricing-options,
.landing-plan-options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 32px;
}

.plan-option,
.landing-plan-option {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  padding: 20px;
  /* background: var(--bg-light); */
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.plan-option:hover,
.landing-plan-option:hover {
  border-color: var(--floovon-pink-soft);
}

.plan-option.selected,
.landing-plan-option.selected {
  border-color: var(--floovon-pink);
  background: var(--landing-plan-option-selected-bg, #fff8fb);
}

.plan-option input,
.landing-plan-option input {
  position: absolute;
  opacity: 0;
}

.plan-option-header,
.landing-plan-option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.plan-option-name,
.landing-plan-option-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.plan-option-badge,
.landing-plan-option-badge {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--floovon-pink);
  background: var(--landing-purchase-highlight-bg, rgba(236, 9, 114, 0.1));
  border-radius: var(--radius-full);
}

.plan-option-price,
.landing-plan-option-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.plan-option-price span,
.landing-plan-option-price span:not(.landing-plan-option-savings) {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.landing-plan-option-features {
  list-style: none;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--border-light);
  flex: 1 1 auto;
}

.landing-plan-option-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 13px;
  line-height: 1.45;
}

.landing-plan-option-feature-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(34, 197, 94, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-plan-option-feature-check svg {
  width: 11px;
  height: 11px;
  stroke: var(--color-success, #22c55e);
  stroke-width: 3;
}

.landing-plan-option-feature-text {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--text-dark);
  font-weight: 400;
}

.landing-plan-option-feature--highlight .landing-plan-option-feature-text {
  font-weight: 500;
}

.landing-plan-option-feature-badge {
  flex-shrink: 0;
  align-self: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--floovon-pink);
  background: var(--landing-purchase-highlight-bg, rgba(236, 9, 114, 0.1));
  padding: 4px 7px;
  border-radius: 100px;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .landing-plan-options {
    flex-direction: column;
  }

  .landing-plan-option {
    flex: 1 1 auto;
  }
}

.landing-plan-option-savings {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-success);
  background: var(--landing-purchase-success-bg, rgba(16, 185, 129, 0.12));
  padding: 4px 8px;
  border-radius: 100px;
  white-space: nowrap;
  margin-left: auto;
}

/* Form Fields */
.form-fields,
.landing-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

/* Kredi kartı formu için özel stil - yapı bozulmasını önle */
#card-fields.landing-form-fields {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  margin-top: 24px !important;
  margin-bottom: 32px !important;
  width: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
}

/* Kredi kartı formu gizlendiğinde - hidden class veya inline style ile */
#card-fields.landing-form-fields.hidden {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
}

/* Kredi kartı formu içindeki field'ların margin-bottom'larını koru - gap kullanıldığı için margin-bottom'a gerek yok */
#card-fields.landing-form-fields > .landing-form-field {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

#card-fields.landing-form-fields > .landing-form-field-row {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

/* landing-form-field-row içindeki field'lar için de */
#card-fields.landing-form-fields .landing-form-field-row > .landing-form-field {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.form-field,
.landing-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label,
.landing-form-field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-field input,
.landing-form-field input,
.form-field select,
.landing-form-field select {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-field input:focus,
.landing-form-field input:focus,
.form-field select:focus,
.landing-form-field select:focus {
  border-color: var(--floovon-pink);
  box-shadow: 0 0 0 3px rgba(236, 9, 114, 0.1);
}

.form-field input::placeholder,
.landing-form-field input::placeholder {
  color: var(--text-muted);
}

.landing-form-field select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background: var(--bg-white);
}

.landing-form-field input.error,
.landing-form-field select.error {
  border-color: var(--color-error, #ef4444);
}

.field-hint,
.landing-field-hint {
  font-size: 12px;
}

.field-error,
.landing-form-error {
  font-size: 12px;
  color: var(--color-error);
  margin-top: 0.25rem;
}

.landing-form-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .landing-form-field-row {
    grid-template-columns: 1fr;
  }
}

/* Form Actions */
.form-actions,
.landing-form-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}

.btn-primary,
.landing-btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  background: var(--gradient-pink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pink);
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
}

.btn-primary:hover,
.landing-btn-primary:hover {
  box-shadow: var(--shadow-pink-lg);
  transform: translateY(-2px);
}

.btn-primary svg,
.landing-btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-secondary,
.landing-btn-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.btn-secondary:hover,
.landing-btn-secondary:hover {
  background: var(--bg-light-secondary);
}

.btn-secondary svg,
.landing-btn-secondary svg {
  width: 18px;
  height: 18px;
}

/* Purchase Sidebar */
.purchase-sidebar {
  position: sticky;
  top: 104px;
}

.sidebar-card,
.landing-sidebar-card {
  background: var(--bg-white);
  border-radius: var(--radius-2xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .sidebar-card,
  .landing-sidebar-card {
    border-radius: var(--radius-lg);
  }
}

.sidebar-card h3,
.landing-sidebar-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.sidebar-plan,
.landing-sidebar-plan {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.sidebar-plan-name,
.landing-sidebar-plan-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.sidebar-plan-period,
.landing-sidebar-plan-period {
  font-size: 12px;
  color: var(--text-muted);
}

.sidebar-plan-price,
.landing-sidebar-plan-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.sidebar-total,
.landing-sidebar-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--landing-purchase-highlight-bg, rgba(236, 9, 114, 0.06));
  border-radius: var(--radius-md);
}

.sidebar-total span:first-child,
.landing-sidebar-total span:first-child,
.landing-purchase-sidebar .landing-sidebar-total span:first-child {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.sidebar-total span:last-child,
.landing-sidebar-total span:last-child,
.landing-purchase-sidebar .landing-sidebar-total span:last-child,
.landing-purchase-sidebar .landing-sidebar-total #sidebar-total {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
}

/* ============================================
   BLOG PAGE
   ============================================ */
#blog-page {
  min-height: 100vh;
  background: var(--bg-light);
}

.blog-hero,
.landing-blog-hero {
  padding: 80px 0;
  background: var(--bg-white);
  text-align: center;
}

.blog-hero-container,
.landing-blog-hero-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-hero-title,
.landing-blog-hero-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: normal;
}

.blog-hero-description,
.landing-blog-hero-description {
  font-size: 18px;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .blog-hero-title,
  .landing-blog-hero-title {
    font-size: 48px;
  }
}

.blog-content {
  padding: 64px 0;
}

.blog-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(236, 9, 114, 0.08), rgba(255, 107, 179, 0.06));
  display: block;
  overflow: hidden;
  padding: 0;
  line-height: 0;
  color: var(--floovon-pink);
}

.blog-card-cover-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-card-content {
  padding: 24px;
}

.blog-card-category {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--floovon-pink);
  background: rgba(236, 9, 114, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

a.blog-card-image {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.blog-card-title a:hover {
  color: var(--floovon-pink);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.blog-newsletter,
.landing-blog-newsletter {
  padding: 80px 0;
  background: var(--gradient-pink);
}

.blog-newsletter-container,
.landing-blog-newsletter-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.newsletter-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.newsletter-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-white);
  border: none;
  border-radius: var(--radius-md);
  outline: none;
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--floovon-pink);
  background: var(--bg-white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.newsletter-btn:hover {
  background: var(--bg-light);
}

/* ============================================
   BLOG YAZI DETAY (slug sayfaları)
   ============================================ */
#blog-post-page {
  min-height: 100vh;
  background: var(--bg-light);
}

.blog-post-main {
  padding-top: 72px;
  padding-bottom: 80px;
}

.blog-post-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 0;
}

.blog-post-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 24px;
}

.blog-post-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.blog-post-breadcrumb a:hover {
  color: var(--floovon-pink);
}

.blog-post-breadcrumb-sep {
  color: var(--text-muted);
  user-select: none;
}

.blog-post-breadcrumb-current {
  color: var(--text-dark);
  font-weight: 500;
}

/* Blog detay: görsel üstte tam genişlik, başlık ve özet altta */
.blog-post-hero-card {
  margin: 0 0 40px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
}

.blog-post-hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 200px;
  max-height: min(480px, 52vw);
  background: linear-gradient(135deg, rgba(236, 9, 114, 0.08), rgba(139, 92, 246, 0.06));
}

.blog-post-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-post-hero-text {
  padding: clamp(28px, 4vw, 48px) clamp(22px, 4vw, 40px) clamp(32px, 5vw, 52px);
  background: var(--bg-white);
}

.blog-post-meta-row {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.blog-post-date {
  color: inherit;
}

.blog-post-title {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.blog-post-lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.blog-post-body {
  margin: 0 auto;
  padding: 0 4px 8px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.blog-post-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 28px 0 12px;
}

.blog-post-body h2:first-child {
  margin-top: 0;
}

.blog-post-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 16px;
}

.blog-post-body ul {
  margin: 0 0 20px;
  padding-left: 1.35rem;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.75;
}

.blog-post-body li {
  margin-bottom: 8px;
}

/* Blog detay: CTA, "Tüm yazılara dön" linkinin altında; metin örnekten bağımsız */
.blog-post-banner-cta {
  margin: 32px auto 0;
  padding: 0 4px;
}

.blog-post-banner-cta-inner {
  text-align: center;
  padding: 40px 24px 44px;
  background: linear-gradient(
    120deg,
    rgba(236, 9, 114, 0.07),
    rgba(139, 92, 246, 0.06)
  );
  border-radius: var(--radius-2xl, 24px);
  border: 1px solid rgba(236, 9, 114, 0.12);
}

.blog-post-banner-cta-text {
  margin: 0 auto 24px;
  max-width: 38em;
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.55;
  font-weight: 600;
  color: var(--text-dark);
}

.blog-post-banner-cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--gradient-pink);
  color: var(--text-white);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  box-shadow: var(--shadow-pink);
  transition: all var(--transition-normal);
}

.blog-post-banner-cta-btn:hover {
  box-shadow: var(--shadow-pink-lg);
  transform: translateY(-2px);
}

.blog-post-back {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 36px auto 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--floovon-pink);
  text-decoration: none;
  transition: gap var(--transition-fast);
}

.blog-post-back:hover {
  gap: 12px;
}

.blog-post-back svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   CAREERS PAGE
   ============================================ */
#careers-page {
  min-height: 100vh;
  background: var(--bg-light);
}

.careers-hero,
.landing-careers-hero {
  padding: 80px 0;
  background: var(--bg-white);
  text-align: center;
}

.careers-hero-container,
.landing-careers-hero-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

.careers-hero-badge,
.landing-careers-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(236, 9, 114, 0.05);
  border: 1px solid rgba(236, 9, 114, 0.1);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--floovon-pink);
  margin-bottom: 24px;
}

.careers-hero-title,
.landing-careers-hero-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.careers-hero-description,
.landing-careers-hero-description {
  font-size: 18px;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .careers-hero-title,
  .landing-careers-hero-title {
    font-size: 48px;
  }
}

.careers-content {
  padding: 64px 0;
}

.careers-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

@media (min-width: 768px) {
  .job-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.job-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--floovon-pink);
}

.job-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-meta svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  background: var(--gradient-pink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pink);
  transition: all var(--transition-normal);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.job-apply-btn:hover {
  box-shadow: var(--shadow-pink-lg);
  transform: translateY(-2px);
}

.careers-cta,
.landing-careers-cta {
  padding: 80px 0;
  background: var(--gradient-pink);
  text-align: center;
}

.careers-cta-container,
.landing-careers-cta-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.cta-email-btn {
  display: inline-flex;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.cta-email-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   LEGAL SAYFALAR (Privacy, Terms, Cookies)
   ============================================ */
#legal-page {
  min-height: 100vh;
  background: var(--bg-light);
}

.legal-hero,
.landing-legal-hero {
  padding: 80px 0 48px;
  background: var(--bg-white);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.legal-hero-container,
.landing-legal-hero-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-hero-title,
.landing-legal-hero-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.legal-hero-date,
.landing-legal-hero-date {
  font-size: 14px;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .legal-hero-title,
  .landing-legal-hero-title {
    font-size: 48px;
  }
}

.legal-content,
.landing-legal-content {
  padding: 48px 0 80px;
}

.legal-content-container,
.landing-legal-content-container {
  /* Destek sayfası (.support-categories-container) ile aynı üst genişlik — metin sütunu dar kalmıyor */
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .legal-content-container,
  .landing-legal-content-container {
    /* Sol: içindekiler sabit; sağ: kalan tüm genişlik (dar sütun + boş sağ şerit sorunu) */
    grid-template-columns: 280px minmax(0, 1fr);
  }
}

.legal-toc {
  position: sticky;
  top: 96px;
  align-self: start;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid var(--border-light);
}

.legal-toc h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.legal-toc ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-toc li {
  list-style: none;
}

.legal-toc a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.legal-toc a:hover {
  color: var(--floovon-pink);
  background: rgba(236, 9, 114, 0.05);
}

.legal-body {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .legal-body {
    padding: 48px;
  }
}

.legal-body section {
  margin-bottom: 48px;
  scroll-margin-top: 100px;
}

.legal-body section:last-child {
  margin-bottom: 0;
}

.legal-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--floovon-pink);
}

.legal-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-body p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-body li {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
  list-style-type: disc;
}

.legal-body li strong {
  color: var(--text-dark);
}

.legal-body a {
  color: var(--floovon-pink);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.legal-body a:hover {
  color: var(--floovon-pink-dark);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}

.cookie-table th,
.cookie-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.cookie-table th {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--text-dark);
}

.cookie-table td {
  color: var(--text-secondary);
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-btn .close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.page-mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-light);
  z-index: 200;
  padding: 24px;
  display: none;
  overflow-y: auto;
}

.page-mobile-menu.open {
  display: block;
}

.page-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-mobile-nav-link {
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  text-decoration: none;
}

.page-mobile-nav-link:hover {
  background: var(--bg-light-secondary);
}

.mobile-menu-cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.mobile-menu-cta .cta-button {
  display: block;
  width: 100%;
  padding: 14px 24px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  background: var(--gradient-pink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pink);
  text-decoration: none;
}

.mobile-login-button {
    display: block;
  width: 100%;
  padding: 14px 24px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-top: 12px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .page-mobile-menu {
    display: none !important;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
  .page-header-nav,
  .page-header-actions .login-button,
  .page-header-actions .cta-button {
    display: none;
  }
  
  .page-header-actions {
    gap: 8px;
  }

  .about-hero,
  .contact-hero,
  .support-hero,
  .blog-hero,
  .legal-hero {
    padding: 48px 0;
  }

  .about-hero-title,
  .contact-hero-title,
  .support-hero-title,
  .blog-hero-title,
  .legal-hero-title {
    font-size: 28px;
  }

  .about-biz-hero {
    padding: 48px 0 32px;
  }

  .about-biz-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 24px;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .legal-body {
    padding: 24px;
  }

  .legal-body h2 {
    font-size: 20px;
  }

  .purchase-container {
    padding: 16px;
  }

  .purchase-form-card,
  .landing-purchase-form-card {
    padding: 16px;
    border-radius: var(--radius-lg);
  }

  .purchase-steps {
    margin-bottom: 24px;
  }

  .step-divider {
    width: 24px;
  }

  .step-label {
    font-size: 10px;
  }

  .form-step h2 {
    font-size: 20px;
  }

  .legal-toc {
    position: relative;
    top: 0;
    margin-bottom: 24px;
  }
}

/* ============================================
   EKSİK CONTACT SAYFA STİLLERİ
   ============================================ */
/* Destek / iletişim kanalları — sade 3 sütun (Bizim Hesap destek düzeninden esinlenme) */
.contact-info-section {
  padding: 0 0 64px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.contact-info-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px;
  min-height: 100%;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition:
    box-shadow var(--transition-normal),
    border-color var(--transition-normal),
    transform var(--transition-normal);
  text-decoration: none;
  color: inherit;
}

.contact-info-card,
.contact-info-card * {
  text-decoration: none !important;
}

.contact-info-card:hover {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(236, 9, 114, 0.35);
  transform: translateY(-2px);
}

.contact-info-card--static {
  cursor: default;
}

.contact-info-card--static:hover {
  box-shadow: none;
  border-color: var(--border-light);
  transform: none;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--floovon-pink), var(--floovon-pink-dark));
  border-radius: 14px;
  color: var(--text-white);
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(236, 9, 114, 0.25);
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none !important;
}

.contact-info-value {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
  word-break: break-word;
  text-decoration: none !important;
  border-bottom: none !important;
}

.contact-info-meta {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.contact-illustration {
  margin-top: 32px;
  color: var(--floovon-pink);
  opacity: 0.2;
}

.contact-illustration svg {
  width: 120px;
  height: 120px;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  color: var(--color-success);
}

.success-icon svg {
  width: 32px;
  height: 32px;
}

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.send-another-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--floovon-pink);
  background: rgba(236, 9, 114, 0.1);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.send-another-btn:hover {
  background: rgba(236, 9, 114, 0.2);
}

.contact-faq {
  padding: 48px 0;
  background: var(--bg-light);
}

.contact-faq-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.faq-quick-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.faq-link {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--floovon-pink);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.faq-link:hover {
  border-color: var(--floovon-pink);
}

/* ============================================
   EKSİK ABOUT SAYFA STİLLERİ
   ============================================ */
.about-cta {
  padding: 80px 0;
  text-align: center;
  background: var(--bg-light);
  background-image: radial-gradient(100% 120% at 50% -20%, rgba(236, 9, 114, 0.07) 0%, transparent 52%);
  border-top: 1px solid var(--border-light);
}

.about-cta-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Açık zemin — about sayfası ile uyumlu tipografi ve butonlar */
.about-cta .cta-title {
  color: var(--text-dark);
}

.about-cta .cta-description {
  color: var(--text-secondary);
}

.about-cta .cta-primary {
  color: var(--text-white);
  background: linear-gradient(135deg, var(--floovon-pink), var(--floovon-pink-dark));
  border: 2px solid transparent;
  box-shadow: var(--shadow-pink);
}

.about-cta .cta-primary:hover {
  background: linear-gradient(135deg, var(--floovon-pink-dark), var(--floovon-pink));
  border-color: transparent;
  box-shadow: var(--shadow-pink-lg);
  transform: translateY(-2px);
}

.about-cta .cta-secondary {
  color: var(--text-dark);
  background: var(--bg-white);
  border: 2px solid var(--border-light);
}

.about-cta .cta-secondary:hover {
  color: var(--floovon-pink);
  border-color: rgba(236, 9, 114, 0.35);
  background: var(--bg-white);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.cta-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-primary svg {
  width: 18px;
  height: 18px;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   EKSİK BLOG SAYFA STİLLERİ
   ============================================ */
.blog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(236, 9, 114, 0.05);
  border: 1px solid rgba(236, 9, 114, 0.1);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--floovon-pink);
  margin-bottom: 24px;
}

.blog-hero-badge-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
}

.blog-categories {
  padding: 24px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.blog-categories-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.category-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.category-btn:hover {
  color: var(--floovon-pink);
  border-color: var(--floovon-pink);
}

.category-btn.active {
  color: var(--text-white);
  background: var(--gradient-pink);
  border-color: var(--floovon-pink);
}

.blog-featured {
  padding: 64px 0;
  background: var(--bg-white);
}

.blog-featured-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  background: var(--bg-light);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .featured-post {
    grid-template-columns: 1fr 1fr;
  }
}

.featured-post-image {
  min-height: 300px;
}

.featured-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, rgba(236, 9, 114, 0.1), rgba(255, 107, 179, 0.1));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--floovon-pink);
}

.featured-image-placeholder svg {
  width: 48px;
  height: 48px;
}

.featured-post-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.post-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

.post-date svg {
  width: 14px;
  height: 14px;
}

.featured-post-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.featured-post-excerpt {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.post-author svg {
  width: 14px;
  height: 14px;
}

.post-read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

.post-read-time svg {
  width: 14px;
  height: 14px;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  background: var(--gradient-pink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pink);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.read-more-btn:hover {
  box-shadow: var(--shadow-pink-lg);
  transform: translateY(-2px);
}

.read-more-btn svg {
  width: 16px;
  height: 16px;
}

.blog-list-section {
  padding: 48px 0 80px;
  background: var(--bg-light);
}

.blog-list-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Blog ana liste: her zaman 2 sütun (tablet+), 3 sütun yok */
.blog-grid.blog-grid--2x2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .blog-grid.blog-grid--2x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid.blog-grid--2x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-grid-section {
  padding: 64px 0;
  background: var(--bg-light);
}

.blog-grid-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--floovon-pink);
}

.card-image-placeholder svg {
  width: 32px;
  height: 32px;
}

/* Görsel yok: gradient blok, ikon yok */
.card-image-placeholder--blank {
  min-height: 160px;
  background: linear-gradient(
    135deg,
    rgba(236, 9, 114, 0.08) 0%,
    rgba(139, 92, 246, 0.06) 50%,
    rgba(236, 9, 114, 0.05) 100%
  );
}

.card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--floovon-pink);
  transition: gap var(--transition-fast);
  text-decoration: none;
}

.card-link:hover {
  gap: 10px;
}

.card-link svg {
  width: 14px;
  height: 14px;
}

.load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.load-more-btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.load-more-btn:hover {
  color: var(--floovon-pink);
  border-color: var(--floovon-pink);
}

/* ============================================
   EKSİK CAREERS SAYFA STİLLERİ
   ============================================ */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--floovon-pink);
  background: var(--bg-white);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.hero-cta:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
}

.careers-culture {
  padding: 80px 0;
  background: var(--bg-white);
}

.careers-culture-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .careers-culture-container {
    grid-template-columns: 1fr 1fr;
  }
}

.culture-content {
  max-width: 560px;
}

.culture-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.culture-image-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, rgba(236, 9, 114, 0.1), rgba(255, 107, 179, 0.1));
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--floovon-pink);
}

.culture-image-placeholder svg {
  width: 48px;
  height: 48px;
}

.careers-benefits {
  padding: 80px 0;
  background: var(--bg-light);
}

.careers-benefits-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  padding: 24px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--floovon-pink), var(--floovon-pink-dark));
  border-radius: var(--radius-md);
  color: var(--text-white);
  margin-bottom: 16px;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  color: #ffffff;
}

.benefit-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.benefit-description {
  font-size: 14px;
  color: var(--text-secondary);
}

.careers-positions {
  padding: 80px 0;
  background: var(--bg-white);
}

.careers-positions-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.positions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.position-card {
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.position-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--floovon-pink);
}

.position-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.position-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.position-department {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--floovon-pink);
  background: rgba(236, 9, 114, 0.1);
  border-radius: var(--radius-full);
}

.position-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.position-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.position-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.position-location,
.position-type {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

.position-location svg,
.position-type svg {
  width: 14px;
  height: 14px;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  background: var(--gradient-pink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pink);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.apply-btn:hover {
  box-shadow: var(--shadow-pink-lg);
  transform: translateY(-2px);
}

.apply-btn svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   EKSİK SUPPORT SAYFA STİLLERİ
   ============================================ */
.support-popular {
  padding: 64px 0;
  background: var(--bg-light);
}

.support-popular-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.popular-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.popular-article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.popular-article:hover {
  border-color: var(--floovon-pink);
  box-shadow: var(--shadow-md);
}

.popular-article svg:first-child {
  width: 20px;
  height: 20px;
  color: var(--floovon-pink);
  flex-shrink: 0;
}

.popular-article span {
  flex: 1;
  font-size: 14px;
  color: var(--text-dark);
}

.popular-article svg:last-child {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.support-video {
  padding: 64px 0;
  background: var(--bg-white);
  display: none;
}

.support-video-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  display: none;
}

@media (min-width: 1024px) {
  .support-video-container {
    grid-template-columns: 1fr 1fr;
    display: none;
  }
}

.video-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .video-content {
    text-align: left;
  }
}

.video-content svg {
  width: 48px;
  height: 48px;
  color: var(--floovon-pink);
  margin-bottom: 24px;
}

.video-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.video-description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  background: var(--gradient-pink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pink);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.video-btn:hover {
  box-shadow: var(--shadow-pink-lg);
  transform: translateY(-2px);
}

.video-btn svg {
  width: 18px;
  height: 18px;
}

.video-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, rgba(236, 9, 114, 0.1), rgba(255, 107, 179, 0.1));
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--floovon-pink);
}

.video-placeholder svg {
  width: 48px;
  height: 48px;
}

.support-contact {
  padding: 80px 0;
  background: var(--bg-light);
}

.support-contact-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .contact-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-option {
  padding: 32px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all var(--transition-normal);
}

.contact-option:hover {
  box-shadow: var(--shadow-lg);
}

.contact-option.highlighted {
  border-color: var(--floovon-pink);
  box-shadow: 0 0 0 2px rgba(236, 9, 114, 0.1);
}

.option-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--floovon-pink), var(--floovon-pink-dark));
  border-radius: var(--radius-lg);
  color: var(--text-white);
}

.option-icon svg {
  width: 24px;
  height: 24px;
}

.option-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.option-description {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.option-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--floovon-pink);
  background: rgba(236, 9, 114, 0.1);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast);
  text-decoration: none;
}

.option-btn:hover {
  background: rgba(236, 9, 114, 0.2);
}

.support-hours {
  margin-top: 48px;
}

.support-hours p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

/* ============================================
   EKSİK PURCHASE SAYFA STİLLERİ
   ============================================ */
.form-field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .form-field-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .summary-info-row, .landing-summary-info-row {
    flex-direction: column;
}


}

.payment-methods {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.payment-method {
  flex: 1;
  min-width: 150px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-light);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.payment-method:hover {
  border-color: var(--floovon-pink-soft);
}

.payment-method.selected {
  border-color: var(--floovon-pink);
  background: rgba(236, 9, 114, 0.05);
}

.payment-method input,
.landing-payment-method input {
  display: none;
}

.payment-method svg,
.landing-payment-method svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
}

.payment-method.selected svg,
.landing-payment-method.selected svg {
  color: var(--floovon-pink);
}

.payment-method span,
.landing-payment-method span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.landing-payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.landing-payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-light);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.landing-payment-method:hover {
  border-color: var(--floovon-pink-soft);
}

.landing-payment-method.selected {
  border-color: var(--floovon-pink);
  background: rgba(236, 9, 114, 0.05);
}

.bank-transfer-info,
.landing-bank-transfer-info {
  display: flex;
  gap: 16px;
  padding: 20px;
  background:#3b82f60d;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

/* Kredi kartı formu ve banka transferi bilgisi için display kontrolü */
#card-fields[style*="display: none"],
#card-fields[style*="display:none"] {
  display: none !important;
  visibility: hidden !important;
}

#bank-info[style*="display: none"],
#bank-info[style*="display:none"] {
  display: none !important;
  visibility: hidden !important;
}

.bank-transfer-info svg,
.landing-bank-transfer-info svg {
  width: 24px;
  height: 24px;
  color: var(--color-info);
  flex-shrink: 0;
}

.bank-transfer-info p,
.landing-bank-transfer-info p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.bank-transfer-info .bank-note,
.landing-bank-transfer-info .landing-bank-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 0;
}

.order-summary-card,
.landing-order-summary-card {
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
}

.order-summary-card h3,
.landing-order-summary-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.order-summary-card h4,
.landing-order-summary-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.summary-row,
.landing-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.summary-label,
.landing-summary-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.summary-sublabel,
.landing-summary-sublabel {
  font-size: 12px;
  color: var(--text-muted);
}

.summary-value,
.landing-summary-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.summary-divider,
.landing-summary-divider {
  height: 1px;
  background: var(--border-light);
  margin: 16px 0;
}

.summary-info-row,
.landing-summary-info-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.landing-summary-info-row .landing-summary-info-value {
  color: var(--text-dark);
  /* text-align: right; */
}

.landing-summary-info-row--payment {
  justify-content: flex-start;
}

.landing-summary-info-row--payment #summary-payment {
  color: var(--text-dark);
  font-weight: 500;
}

.landing-summary-amount {
  font-weight: 700;
  color: var(--text-dark);
}

.summary-total,
.landing-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  margin-top: 16px;
}

.summary-total span:first-child,
.landing-summary-total span:first-child {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.summary-total span:last-child,
.landing-summary-total span:last-child {
  font-size: 24px;
  font-weight: 700;
  color: var(--floovon-pink);
}

.sidebar-tax,
.landing-sidebar-tax {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

.sidebar-tax span,
.landing-sidebar-tax span {
  color: var(--text-secondary);
}

.sidebar-benefits,
.landing-sidebar-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.sidebar-benefit,
.landing-sidebar-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.sidebar-benefit span,
.landing-sidebar-benefit span {
  color: var(--text-secondary);
}

.landing-sidebar-benefit a,
.landing-sidebar-guarantee a {
  color: var(--mor-primary-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sidebar-benefit svg,
.landing-sidebar-benefit svg {
  width: 16px;
  height: 16px;
  color: var(--color-success);
  flex-shrink: 0;
}

.sidebar-guarantee,
.landing-sidebar-guarantee {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--landing-purchase-info-bg, var(--bg-light-secondary));
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.sidebar-guarantee svg,
.landing-sidebar-guarantee svg {
  width: 20px;
  height: 20px;
  color: var(--floovon-pink);
  flex-shrink: 0;
}

.sidebar-guarantee p,
.landing-sidebar-guarantee p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.purchase-loading {
  text-align: center;
  padding: 48px;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  border: 3px solid var(--border-light);
  border-top-color: var(--floovon-pink);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Modern Success Checkmark Animation */
.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  position: relative;
}

.success-checkmark .checkmark-svg {
  width: 100%;
  height: 100%;
  transform: scale(0);
  animation: scale-in 0.3s ease-out 0.3s forwards;
}

.success-checkmark .checkmark-circle {
  fill: none;
  stroke: var(--color-success);
  stroke-width: 3;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark .checkmark-check {
  fill: none;
  stroke: var(--color-success);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke-check 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes scale-in {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes stroke-circle {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes stroke-check {
  100% {
    stroke-dashoffset: 0;
  }
}

.purchase-loading p {
  font-size: 16px;
  color: var(--text-secondary);
  }

/* ============================================
   HELP ARTICLE SAYFASI
   ============================================ */

#help-article-page {
  min-height: 100vh;
  background: var(--bg-light);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Destek detaylarında header geçiş animasyonunu kapat:
   konu değişimlerinde sayfa ilk boyamada "sekme/zıplama" yapmasın. */
#help-article-page .landing-header,
#help-article-page .landing-header * {
  transition: none !important;
}

/* Header stabil kalsın ama etkileşimli öğelerde hover animasyonu devam etsin */
#help-article-page .landing-header .landing-nav a,
#help-article-page .landing-header .login-button,
#help-article-page .landing-header .cta-button,
#help-article-page .landing-header .landing-theme-toggle,
#help-article-page .landing-header .landing-nav-toggle,
#help-article-page .landing-header .landing-header-menu-group a {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease !important;
}

.help-article-main {
  padding-top: 72px;
  padding-bottom: 80px;
}

.help-article-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .help-article-wrapper {
    grid-template-columns: 280px 1fr;
  }
}

.help-left-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .help-left-sidebar {
    display: block;
    position: sticky;
    top: 96px;
    align-self: start;
  }

  .help-left-sidebar-scroll {
    max-height: calc(100vh - 420px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 10px;
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
    padding: 10px;
  }

  .help-left-sidebar-scroll::-webkit-scrollbar {
    width: 6px;
  }

  .help-left-sidebar-scroll::-webkit-scrollbar-track {
    background: transparent;
  }

  .help-left-sidebar-scroll::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 3px;
  }

  .help-left-sidebar-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #9ca3af;
  }

  .help-left-sidebar-scroll::-webkit-scrollbar-button {
    display: none;
  }
}

.back-to-support {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--floovon-pink);
  background: rgba(236, 9, 114, 0.1);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.back-to-support:hover {
  background: rgba(236, 9, 114, 0.15);
}

.back-to-support svg {
  width: 18px;
  height: 18px;
}

.sidebar-section {
  margin-bottom: 24px;
}

.sidebar-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  margin-bottom: 8px;
}

.sidebar-section-title.active {
  color: var(--floovon-pink);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  list-style: none;
}

.sidebar-links a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  border-left: 3px solid transparent;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.sidebar-links a:hover {
  background: rgba(236, 9, 114, 0.08);
  color: var(--text-dark);
  border-left-color: rgba(236, 9, 114, 0.35);
}

.sidebar-links a.active {
  background: rgba(236, 9, 114, 0.1);
  color: var(--floovon-pink);
  border: 1px solid transparent;
  border-left-color: var(--floovon-pink);
  font-weight: 500;
}

.sidebar-help-card {
  margin-top: 32px;
  padding: 20px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  text-align: center;
}

.sidebar-help-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.sidebar-help-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.sidebar-help-btn {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  background: var(--gradient-pink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pink);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.sidebar-help-btn:hover {
  box-shadow: var(--shadow-pink-lg);
  transform: translateY(-2px);
}

.help-article-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.help-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

.help-breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.help-breadcrumb a:hover {
  color: var(--floovon-pink);
}

.help-breadcrumb svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.help-article-content {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .help-article-content {
    padding: 48px;
  }
}

.article-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.article-category-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(236, 9, 114, 0.1);
  color: var(--floovon-pink);
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* Dark temada pembe zeminli yardımcı alanlarda okunurluk için yumuşak border */
body.theme-dark #help-article-page .back-to-support,
body.theme-dark #help-article-page .sidebar-links a.active,
body.theme-dark #help-article-page .article-category-badge {
  border-color: #ad306a85;
}

.article-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .article-header h1 {
    font-size: 40px;
  }
}

.article-meta {
  display: none;
}

.article-body {
  margin-bottom: 32px;
}

.article-intro {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.article-image {
  margin: 24px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 16px;
}

.article-body p {
  font-size: 16px;
  color: var(--help-article-body-p-color);
  line-height: 1.8;
  margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.article-body li {
  font-size: 16px;
  color: var(--help-article-body-p-color);
  line-height: 1.8;
  margin-bottom: 8px;
}

.article-body li strong {
  color: var(--text-dark);
}

.article-tip,
.article-warning,
.article-success,
.landing-article-tip,
.landing-article-warning,
.landing-article-success {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  margin: 24px 0;
}

.article-tip,
.landing-article-tip {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--color-info);
}

.article-tip svg,
.landing-article-tip svg {
  color: var(--color-info);
  flex-shrink: 0;
}

.article-warning,
.landing-article-warning {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid var(--color-warning);
}

.article-warning svg,
.landing-article-warning svg {
  color: var(--color-warning);
  flex-shrink: 0;
}

.article-success,
.landing-article-success {
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid var(--color-success);
}

.article-success svg,
.landing-article-success svg {
  color: var(--color-success);
  flex-shrink: 0;
}

.article-tip div,
.article-warning div,
.article-success div,
.landing-article-tip div,
.landing-article-warning div,
.landing-article-success div {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

.article-footer {
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.article-helpful {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  text-align: center;
}

/* Makale yardımcı oldu mu? alanı kaldırıldı (support/blog) */
#help-article-page .article-helpful,
#blog-post-page .article-helpful {
  display: none !important;
}

@media (min-width: 640px) {
  .article-helpful {
    flex-direction: row;
    justify-content: center;
  }
}

.article-helpful span {
  font-size: 14px;
  color: var(--text-secondary);
}

.helpful-buttons {
  display: flex;
  gap: 12px;
}

.helpful-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.helpful-btn:hover {
  border-color: var(--floovon-pink);
  color: var(--floovon-pink);
}

.helpful-btn svg {
  width: 18px;
  height: 18px;
}

.article-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: none;
}

.nav-prev,
.nav-next {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  min-width: 0;
  text-decoration: none;
}

.nav-prev:hover,
.nav-next:hover {
  border-color: var(--floovon-pink);
  background: rgba(236, 9, 114, 0.05);
}

.nav-prev {
  justify-content: flex-start;
}

.nav-prev:empty,
.nav-prev[href=""],
.nav-prev[href="#"] {
  display: none !important;
}

.nav-next {
  justify-content: flex-end;
  text-align: right;
}

.nav-prev > div,
.nav-next > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.nav-prev span,
.nav-next span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-prev strong,
.nav-next strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.nav-prev svg,
.nav-next svg {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
}

/* ============================================
   GENERAL RESPONSIVE FIXES
   ============================================ */
#about-page,
#contact-page,
#support-page,
#purchase-page,
#blog-page,
#blog-post-page,
#legal-page,
#help-article-page {
  overflow-x: hidden;
  max-width: 100%;
}

/* ============================================
   CSS VARIABLES (landing.css'den geliyor)
   ============================================ */
:root {
  --floovon-pink: #ec0972;
  --floovon-pink-light: #f43d96;
  --floovon-pink-dark: #c7075f;
  --floovon-pink-soft: #ff6bb3;
  
  --bg-light: #f8fafc;
  --bg-light-secondary: #f1f5f9;
  --bg-white: #ffffff;
  --bg-dark: #0f172a;
  --bg-dark-secondary: #1e293b;
  --bg-dark-tertiary: #334155;
  
  --text-dark: #2e3237;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-white: #ffffff;
  
  --border-light: #e2e8f0;
  --border-dark: #334155;
  
  --color-success: #10b981;
  --color-error: #ef4444;
  --color-warning: #f59e0b;
  --color-info: #3b82f6;
  
  --landing-purchase-highlight-bg: rgba(236, 9, 114, 0.06);
  --landing-plan-option-selected-bg: #fff8fb;
  --landing-purchase-info-bg: var(--bg-light-secondary);
  --landing-purchase-accent-text: var(--floovon-pink);
  --landing-purchase-success-bg: rgba(16, 185, 129, 0.12);
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-pink: 0 4px 14px rgba(236, 9, 114, 0.3);
  --shadow-pink-lg: 0 10px 30px rgba(236, 9, 114, 0.25);
  
  --gradient-pink: linear-gradient(135deg, #ec0972 0%, #ff6bb3 100%);
  --gradient-pink-dark: linear-gradient(135deg, #c7075f 0%, #ec0972 100%);
  --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;
}

/* Satın al — tema token’ları (body.theme-dark / body.theme-light landing-styles içinde override) */
body.theme-dark .purchase-header {
  background: var(--bg-white);
  border-bottom-color: var(--border-light);
}

body.theme-dark .purchase-secure-badge {
  background: var(--landing-purchase-success-bg, rgba(16, 185, 129, 0.15));
  color: var(--color-success);
}
