/* main campaign box */
.campaign-box {
  position: relative;
  background: #f8f8f8;
  border: 2px solid #e4001b; /* red frame */
  border-radius: 20px;
  padding: 32px 28px 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
  overflow: hidden;
}

/* subtle red glow on hover */
.campaign-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(228, 0, 27, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.campaign-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  border-color: #ff1f36;
  background: #fff7f8;
}

.campaign-box:hover::before {
  opacity: 1;
}

/* centered title */
.campaign-title {
  margin: 0 0 12px;
  font-size: 2rem;
  font-weight: 700;
  color: #111111;
  text-align: center;
  letter-spacing: 0.02em;
}

/* centered description */
.campaign-text {
  margin: 0 auto 26px;
  font-size: 1.03rem;
  line-height: 1.6;
  color: #333333;
  max-width: 820px;
  text-align: center;
}

/* grid for feature cards */
.campaign-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px 18px;
}

/* each feature card */
.feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

/* hover effect on each feature card */
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.10);
  border-color: #ffd1d7;
  background: #fffafb;
}

/* round icon on the left */
.feature-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: #28a745;
}

/* feature text */
.feature-text {
  font-size: 0.97rem;
  color: #222222;
  line-height: 1.5;
}

/* simple responsive tweaks */
@media (max-width: 768px) {
  .campaign-box {
    padding: 24px 18px 22px;
  }

  .campaign-title {
    font-size: 1.6rem;
  }

  .campaign-text {
    font-size: 0.98rem;
  }
}
/* CTA için özel varyant */
.campaign-box.cta {
  background: #fff5f6;              /* hafif pembe arka plan */
  border-color: #ff1f36;
  text-align: center;
}

/* CTA içi küçük üst yazı (opsiyonel) */
.campaign-cta-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e4001b;
  margin-bottom: 8px;
}

/* CTA açıklama paragrafı ufak farklılık */
.campaign-cta-text {
  margin: 0 auto 24px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #222222;
  max-width: 720px;
}

/* CTA buton alanı */
.campaign-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Ana CTA butonu */
.campaign-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #e4001b, #ff4b5c);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(228, 0, 27, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.campaign-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(228, 0, 27, 0.45);
  opacity: 0.95;
}

/* Responsive küçük dokunuş */
@media (max-width: 768px) {
  .campaign-cta-text {
    font-size: 0.98rem;
  }
}
/* Sol sütundaki tarif kutuları için kolon */
.tarif-column {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* XL tarif kutuları – campaign-box tabanlı varyant */
.campaign-box.tarif {
  background: #f2f2f2;              /* yumuşak gri arka plan */
  border-color: #d5d5d5;            /* daha sakin çerçeve */
  padding: 26px 24px 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Hover’da hafif yükselsin ama abartmasın */
.campaign-box.tarif:hover {
  background: #ebebeb;
  border-color: #c8c8c8;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}

/* Tarif başlığını sola yaslayalım, biraz daha küçük */
.campaign-title.tarif-title {
  text-align: left;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* Tarif metni de sola hizalı ve rahat okunur olsun */
.campaign-text.tarif-text {
  text-align: left;
  max-width: none;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: #1a1a1a;
}

/* Küçük ekranlarda */
@media (max-width: 768px) {
  .tarif-column {
    flex: 1 1 100%;
  }

  .campaign-title.tarif-title {
    font-size: 1.25rem;
  }

  .campaign-text.tarif-text {
    font-size: 1rem;
  }
}
/* XL tarif kartları */
.tarif-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px 20px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

/* sol tarafta ince renk şeridi efekti */
.tarif-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(228, 0, 27, 0.18), transparent 55%);
  opacity: 0.18;
  pointer-events: none;
}

/* içeriği overlay’den bağımsız tutmak için */
.tarif-card-inner {
  position: relative;
  z-index: 1;
}

/* hover efekti */
.tarif-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
  border-color: #ffd1d7;
  background: #fff7f8;
}

/* küçük üst etiket */
.tarif-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(228, 0, 27, 0.08);
  color: #e4001b;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* başlık */
.tarif-title {
  margin: 0 0 4px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
}

/* metin */
.tarif-text {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #222222;
}

/* fiyat satırı vurgulu */
.tarif-price-row {
  margin-top: 6px;
  font-size: 1.35rem;
  line-height: 1.6;
  color: #1a1a1a;
}

.tarif-price {
  font-weight: 700;
  color: #e4001b;
}

/* küçük ekranlar için ufak dokunuş */
@media (max-width: 768px) {
  .tarif-title {
    font-size: 1.15rem;
  }

  .tarif-text,
  .tarif-price-row {
    font-size: 0.97rem;
  }
}


/* === Sol Sütun İçin Kunden-Test Portal Kutusu — Kampanya Tasarımı ile Uyumlu === */
.portal-access-box.left-version {
    margin-top: 20px;
    padding: 22px 20px;
    border-radius: 18px;

    background: #f8f8f8;                       /* kampanya kutularına uyumlu */
    border: 2px solid #e4001b;                 /* kırmızı çerçeve */
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);  /* hafif gölge */

    width: 100%;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;

    transition: 
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

/* Hover — kampanya efekti */
.portal-access-box.left-version:hover {
    background: #fff7f8;
    border-color: #ff1f36;
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

/* Başlık */
.portal-label {
    color: #111111;
    font-size: 1.80rem;
    font-weight: 700;
}

/* Icon container */
.portal-icons {
    display: flex;
    gap: 22px;
    justify-content: center;
}

/* Her bir buton */
.portal-btn {
    width: 82px;
    padding: 12px 6px;
    border-radius: 14px;

    background: #ffffff;
    border: 1px solid #f0f0f0;                 /* campaign-box iç kartlarıyla aynı */
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

/* Hover — yine campaign tarzı */
.portal-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.10);
    border-color: #ffd1d7;      /* campaign-box hover rengi */
    background: #fffafb;
}

.portal-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.portal-btn-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333333;
}

/* Mobil */
@media (max-width: 575px) {
    .portal-access-box.left-version {
        padding: 18px;
    }
    .portal-icons {
        gap: 16px;
    }
    .portal-btn {
        width: 74px;
    }
}


.beratung-box {
  width: 330px;
  background: #dc2626 ;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  color: #fff;
  font-family: Arial, sans-serif;
  width: 100%;
}

.beratung-text {
  width: 70%;
}

.beratung-text h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.beratung-sub {
  font-size: 16px;
  display: block;
  margin: 4px 0;
  opacity: 0.9;
}

.beratung-tel a{
  font-size: 18px;
  font-weight: 700;
  margin: 6px 0 0 0;
  color: white;
}

.beratung-img img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.6);
}

