/* Limitsiz Hosting — Dodo Bilişim landing (scoped) */
.limitsiz-dodo {
  --dodo-orange: #ff7a18;
  --dodo-orange-dark: #e8680f;
  --dodo-navy: #14161f;
  --dodo-navy-soft: #1e212b;
  --dodo-gray: #5c6478;
  --dodo-bg: #f5f6f8;
  --dodo-radius: 18px;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #0f1222;
}

.limitsiz-dodo-hero {
  padding: 28px 0 36px;
  background: linear-gradient(180deg, #fafbfc 0%, #fff 45%);
}

.limitsiz-dodo-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 992px) {
  .limitsiz-dodo-hero__grid {
    grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
    gap: 24px;
  }
}

.limitsiz-dodo-hero__main {
  position: relative;
  overflow: hidden;
  border-radius: var(--dodo-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 18, 34, 0.08);
  border: 1px solid rgba(20, 22, 31, 0.06);
  padding: 36px 32px 40px;
  min-height: 320px;
}

.limitsiz-dodo-hero__main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(20, 22, 31, 0.07) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.45;
  pointer-events: none;
}

.limitsiz-dodo-hero__blob {
  position: absolute;
  right: -12%;
  top: 18%;
  width: 55%;
  height: 85%;
  background: radial-gradient(ellipse at 30% 30%, var(--dodo-orange) 0%, #ff9a4a 55%, transparent 70%);
  opacity: 0.92;
  pointer-events: none;
  border-radius: 50% 40% 60% 45%;
}

.limitsiz-dodo-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.limitsiz-dodo-hero__kicker {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--dodo-orange);
  margin-bottom: 10px;
}

.limitsiz-dodo-hero__title {
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dodo-navy);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.limitsiz-dodo-hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--dodo-gray);
  margin: 0 0 22px;
}

.limitsiz-dodo-hero__checks {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 20px;
}

@media (min-width: 576px) {
  .limitsiz-dodo-hero__checks {
    grid-template-columns: 1fr 1fr;
  }
}

.limitsiz-dodo-hero__checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #2a3142;
  font-weight: 500;
}

.limitsiz-dodo-hero__checks li i {
  color: var(--dodo-orange);
  margin-top: 3px;
  font-size: 15px;
}

.limitsiz-dodo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.limitsiz-dodo-btn--primary {
  background: linear-gradient(180deg, var(--dodo-orange) 0%, var(--dodo-orange-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 122, 24, 0.35);
}

.limitsiz-dodo-btn--primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(255, 122, 24, 0.42);
}

.limitsiz-dodo-hero__visual {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  text-align: center;
}

.limitsiz-dodo-hero__visual img {
  max-width: 100%;
  height: auto;
  max-height: 220px;
}

@media (min-width: 992px) {
  .limitsiz-dodo-hero__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
  }
  .limitsiz-dodo-hero__visual {
    margin-top: 0;
  }
  .limitsiz-dodo-hero__visual img {
    max-height: 260px;
  }
}

.limitsiz-dodo-hero__promo {
  border-radius: var(--dodo-radius);
  background: linear-gradient(160deg, var(--dodo-navy-soft) 0%, var(--dodo-navy) 100%);
  color: #fff;
  padding: 32px 28px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 12, 20, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.limitsiz-dodo-hero__promo::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='0.5' d='M0 40 Q40 0 80 40 T160 40'/%3E%3C/svg%3E");
  background-size: 120px 80px;
  pointer-events: none;
}

.limitsiz-dodo-hero__promo-inner {
  position: relative;
  z-index: 1;
}

.limitsiz-dodo-hero__promo-kicker {
  font-size: 14px;
  font-weight: 700;
  color: var(--dodo-orange);
  margin-bottom: 8px;
}

.limitsiz-dodo-hero__promo-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}

.limitsiz-dodo-hero__promo-text {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.88;
  margin: 0 0 20px;
}

.limitsiz-dodo-countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.limitsiz-dodo-countdown__unit {
  text-align: center;
  min-width: 44px;
}

.limitsiz-dodo-countdown__num {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dodo-orange);
  line-height: 1.1;
}

.limitsiz-dodo-countdown__lbl {
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.65;
  letter-spacing: 0.06em;
}

.limitsiz-dodo-countdown__sep {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dodo-orange);
  opacity: 0.85;
  line-height: 2rem;
}

.limitsiz-dodo-btn--block {
  width: 100%;
}

/* Stats strip */
.limitsiz-dodo-stats {
  margin-top: 8px;
  margin-bottom: 8px;
}

.limitsiz-dodo-stats__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .limitsiz-dodo-stats__row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.limitsiz-dodo-stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 18px;
  border: 1px solid rgba(20, 22, 31, 0.06);
  box-shadow: 0 10px 30px rgba(15, 18, 34, 0.05);
}

.limitsiz-dodo-stat__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 122, 24, 0.12);
  color: var(--dodo-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.limitsiz-dodo-stat__value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dodo-navy);
  line-height: 1.1;
}

.limitsiz-dodo-stat__label {
  font-size: 13px;
  color: var(--dodo-gray);
  margin-top: 4px;
  line-height: 1.35;
}

/* VDS: pricing table block after hero/stats */
.limitsiz-dodo > .vps-table-wrap {
  padding-top: 28px;
  padding-bottom: 16px;
}

/* VPS product page (same rhythm as VDS) */
.limitsiz-dodo.vps-sunucu-page > .vps-table-wrap {
  padding-top: 28px;
  padding-bottom: 16px;
}

/* Packages section */
.limitsiz-dodo .limitsiz-dodo-packages {
  padding-top: 48px;
  padding-bottom: 56px;
  background: var(--dodo-bg);
}

.limitsiz-dodo .limitsiz-dodo-packages .pricing-suite__header span {
  color: var(--dodo-orange);
  font-weight: 600;
}

.limitsiz-dodo .limitsiz-dodo-packages .pricing-suite__header .title {
  color: var(--dodo-navy);
  font-weight: 800;
}

.limitsiz-dodo .limitsiz-dodo-packages .pricing-suite__header p {
  color: var(--dodo-gray);
}

.limitsiz-dodo-billing-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.limitsiz-dodo-billing-label {
  font-size: 13px;
  font-weight: 600;
  color: #6a7285;
  margin: 0;
}

.dodo-billing-cycle {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: #e8eaef;
  border: 1px solid rgba(20, 22, 31, 0.06);
}

.dodo-billing-cycle .toggle-btn {
  border: none;
  background: transparent;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #4a5163;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.dodo-billing-cycle .toggle-btn.active {
  background: #fff;
  color: var(--dodo-navy);
  box-shadow: 0 4px 14px rgba(15, 18, 34, 0.12);
}

.limitsiz-dodo-loc {
  display: inline-flex;
  gap: 8px;
  padding: 5px;
  border-radius: 999px;
  background: #e8eaef;
}

.limitsiz-dodo-loc button {
  border: none;
  background: transparent;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #555b6d;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.limitsiz-dodo-loc button.active {
  background: #fff;
  color: var(--dodo-navy);
  box-shadow: 0 3px 12px rgba(15, 18, 34, 0.1);
}

.limitsiz-dodo-loc button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.limitsiz-dodo .pricing-suite__controls {
  justify-content: center;
}

.limitsiz-dodo .pricing-suite__toggle--mini .currency-btn {
  border-radius: 999px;
}

.limitsiz-dodo .packs-wrapper .pack-item.white-pack {
  border-radius: var(--dodo-radius);
  box-shadow: 0 14px 40px rgba(15, 18, 34, 0.07);
  border: 1px solid rgba(20, 22, 31, 0.08);
  position: relative;
  padding-top: 28px;
}

.limitsiz-dodo .packs-wrapper .pack-item.white-pack:hover {
  box-shadow: 0 20px 48px rgba(15, 18, 34, 0.1);
}

.limitsiz-dodo .pack-item--featured {
  border: 2px solid var(--dodo-orange) !important;
  box-shadow: 0 18px 48px rgba(255, 122, 24, 0.18) !important;
  margin-top: 16px;
}

@media (min-width: 992px) {
  .limitsiz-dodo .pack-item--featured {
    margin-top: 20px;
  }
}

.limitsiz-dodo .pack-item__ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, var(--dodo-orange) 0%, #ff9a4a 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255, 122, 24, 0.35);
}

.limitsiz-dodo .pack-item__ribbon i {
  margin-right: 6px;
}

.limitsiz-dodo .pack-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.limitsiz-dodo .pack-head-row .title {
  width: auto !important;
  flex: 1;
  min-width: 0;
}

.limitsiz-dodo .pack-dots {
  color: #b0b5c3;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
}

.limitsiz-dodo .pack-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 12px 0 16px;
}

.limitsiz-dodo .pack-discount-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--dodo-orange);
  padding: 5px 10px;
  border-radius: 8px;
}

.limitsiz-dodo .packs-wrapper .pack-item > a:not(.see-all) {
  background: linear-gradient(180deg, var(--dodo-orange) 0%, var(--dodo-orange-dark) 100%) !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}

.limitsiz-dodo .packs-wrapper .pack-item > a:not(.see-all):hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(255, 122, 24, 0.35);
}

.limitsiz-dodo .packs-wrapper .pack-item ul li .fa-check {
  color: var(--dodo-orange) !important;
}

.limitsiz-dodo .packs-wrapper .pack-item:hover .pattern span.active {
  background: var(--dodo-orange) !important;
}

.limitsiz-dodo .pricing-suite__footnote {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(20, 22, 31, 0.06);
}

.limitsiz-dodo .packs-bottom .title {
  color: var(--dodo-navy);
}

.limitsiz-dodo .packs-bottom a {
  border-color: rgba(255, 122, 24, 0.35);
  color: var(--dodo-navy);
}
