/* Hesaplama yazilimi - scoped, tema section{display:flex} override */
.hy,
.hy section.hy-hero,
.hy section.hy-section {
  display: block !important;
  width: 100%;
  max-width: 100%;
  flex-wrap: unset !important;
}

.hy {
  --hy-blue: #086ad8;
  --hy-ink: #262838;
  --hy-muted: #707b89;
  --hy-line: #e2e5ef;
  --hy-soft: #f5f8fc;
  --hy-ok: #148d6e;
  --hy-wa: #25d366;
  color: var(--hy-ink);
  overflow: hidden;
}

.hy .container {
  width: 100%;
}

.hy-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #f7faff 0%, #eef4fb 45%, #f8fafc 100%);
}

.hy-hero::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -30%;
  left: 40%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(8, 106, 216, 0.12), transparent 70%);
  pointer-events: none;
}

.hy-hero-inner {
  padding: 11.875rem 0 4rem;
  position: relative;
  width: 100%;
}

@media (max-width: 991px) {
  .hy-hero-inner {
    padding-top: 8.5rem;
  }
}

.hy-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hy-blue);
  margin-bottom: 14px;
}

.hy-brand span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hy-blue);
  display: inline-block;
}

.hy-hero h1 {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  color: var(--hy-ink);
  font-weight: 800;
  margin: 0 0 16px;
  max-width: 18ch;
}

.hy-hero-lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--hy-muted);
  max-width: 42ch;
  margin: 0 0 28px;
}

.hy-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hy a.hy-btn,
.hy button.hy-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  border: 2px solid transparent !important;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  cursor: pointer;
  line-height: 1.2;
  box-shadow: none;
  outline: none !important;
}

.hy a.hy-btn:hover,
.hy button.hy-btn:hover,
.hy a.hy-btn:focus,
.hy button.hy-btn:focus {
  transform: translateY(-2px);
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.hy .hy-btn-primary {
  background: var(--hy-blue) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(8, 106, 216, 0.28) !important;
}

.hy .hy-btn-primary:hover,
.hy .hy-btn-primary:focus {
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(8, 106, 216, 0.35) !important;
}

.hy .hy-btn-ghost {
  background: #fff !important;
  color: var(--hy-ink) !important;
  border-color: var(--hy-line) !important;
}

.hy .hy-btn-ghost:hover {
  border-color: var(--hy-blue) !important;
  color: var(--hy-blue) !important;
}

.hy .hy-btn-wa {
  background: var(--hy-wa) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25) !important;
}

.hy .hy-btn-wa:hover {
  color: #fff !important;
  filter: brightness(0.95);
}

.hy .hy-btn-sm {
  padding: 9px 18px;
  font-size: 0.88rem;
}

.hy .hy-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}

.hy-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

.hy-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--hy-ink);
}

.hy-trust li svg {
  flex-shrink: 0;
  color: var(--hy-ok);
}

.hy-hero-visual {
  position: relative;
  width: 100%;
}

.hy-hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(38, 40, 56, 0.16);
  display: block;
}

.hy-hero-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--hy-line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hy-ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-width: 220px;
}

.hy-hero-badge span {
  display: block;
  color: var(--hy-blue);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.hy-section {
  padding: 72px 0;
  width: 100% !important;
}

.hy-section-soft {
  background: var(--hy-soft);
}

.hy-sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  width: 100%;
}

.hy-sec-head h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--hy-ink);
  margin: 0 0 10px;
}

.hy-sec-head p {
  margin: 0;
  color: var(--hy-muted);
  line-height: 1.6;
}

.hy-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.hy-feat {
  background: #fff;
  border: 1px solid var(--hy-line);
  border-radius: 16px;
  padding: 24px 20px;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hy-feat:hover {
  border-color: #c5d8f5;
  box-shadow: 0 12px 32px rgba(8, 106, 216, 0.08);
}

.hy-feat-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eaf2ff;
  color: var(--hy-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.hy-feat h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--hy-ink);
}

.hy-feat p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--hy-muted);
}

.hy-wizard {
  background: #fff;
  border: 1px solid var(--hy-line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(38, 40, 56, 0.07);
  width: 100%;
}

.hy-wizard-top {
  padding: 22px 28px;
  border-bottom: 1px solid var(--hy-line);
  background: linear-gradient(180deg, #fff, #fafbfd);
  width: 100%;
}

.hy-steps {
  display: flex;
  gap: 0;
  align-items: center;
  width: 100%;
}

.hy-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.hy-step + .hy-step::before {
  content: "";
  width: 100%;
  max-width: 40px;
  height: 2px;
  background: var(--hy-line);
  margin-right: 10px;
  flex-shrink: 0;
}

.hy-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--hy-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--hy-muted);
  background: #fff;
  flex-shrink: 0;
  transition: 0.2s;
}

.hy-step-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hy-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hy-step.active .hy-step-num {
  border-color: var(--hy-blue);
  background: var(--hy-blue);
  color: #fff;
}

.hy-step.active .hy-step-label {
  color: var(--hy-ink);
}

.hy-step.done .hy-step-num {
  border-color: var(--hy-ok);
  background: var(--hy-ok);
  color: #fff;
}

.hy-step.done .hy-step-label {
  color: var(--hy-ok);
}

.hy-wizard-body {
  padding: 28px;
  width: 100%;
}

.hy-panel {
  display: none;
  width: 100%;
}

.hy-panel.active {
  display: block;
  animation: hyIn 0.3s ease;
}

@keyframes hyIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hy-panel-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--hy-ink);
  margin: 0 0 18px;
}

.hy-sys-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  width: 100%;
}

.hy button.hy-sys {
  width: 100%;
  text-align: left;
  background: #fff !important;
  border: 1.5px solid var(--hy-line) !important;
  border-radius: 14px;
  padding: 16px 16px 14px;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  color: inherit;
  box-shadow: none !important;
  outline: none !important;
}

.hy button.hy-sys:hover {
  border-color: #a8c6ef !important;
  background: #fbfdff !important;
}

.hy button.hy-sys.selected {
  border-color: var(--hy-blue) !important;
  background: #f3f8ff !important;
  box-shadow: 0 0 0 3px rgba(8, 106, 216, 0.12) !important;
}

.hy button.hy-sys.selected::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--hy-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/12px no-repeat;
}

.hy-sys h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.35;
  color: var(--hy-ink);
  padding-right: 22px;
}

.hy-sys-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hy-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--hy-soft);
  color: var(--hy-muted);
}

.hy-tag.m {
  background: #fff4eb;
  color: #b85a12;
}

.hy-selected-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--hy-soft);
  border: 1px solid var(--hy-line);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 18px;
  width: 100%;
}

.hy-selected-bar small {
  display: block;
  font-size: 0.75rem;
  color: var(--hy-muted);
  margin-bottom: 2px;
}

.hy-selected-bar strong {
  font-size: 0.98rem;
  color: var(--hy-ink);
}

.hy-hint {
  font-size: 0.88rem;
  color: var(--hy-muted);
  margin: 0 0 16px;
}

.hy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-top: 24px;
  align-items: center;
  width: 100%;
}

.hy-input-grid {
  width: 100%;
}

.hy-input-grid .form-label {
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--hy-ink);
  margin-bottom: 6px;
  display: block;
}

.hy-input-grid .form-control {
  border-radius: 10px !important;
  border: 1px solid var(--hy-line) !important;
  padding: 10px 12px;
  min-height: 44px;
  width: 100%;
  background: #fff;
}

.hy-input-grid .form-control:focus {
  border-color: var(--hy-blue) !important;
  box-shadow: 0 0 0 3px rgba(8, 106, 216, 0.15) !important;
  outline: none !important;
}

.hy-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 4px;
  background: var(--hy-soft);
  border-radius: 12px;
  width: 100%;
}

.hy-tabs button {
  flex: 1;
  min-width: 100px;
  border: 0 !important;
  background: transparent !important;
  padding: 10px 12px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--hy-muted);
  cursor: pointer;
  transition: 0.2s;
  box-shadow: none !important;
}

.hy-tabs button.active {
  background: #fff !important;
  color: var(--hy-blue) !important;
  box-shadow: 0 2px 8px rgba(38, 40, 56, 0.08) !important;
}

.hy-result-tab {
  display: none;
  width: 100%;
}

.hy-result-tab.active {
  display: block;
}

.hy-lock {
  position: relative;
  min-height: 280px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hy-line);
  background: #fff;
  width: 100%;
}

.hy-lock-blur {
  filter: blur(14px) saturate(0.7);
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
  padding: 16px;
  transform: scale(1.02);
}

.hy-lock-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 248, 252, 0.94)),
    repeating-linear-gradient(
      -12deg,
      rgba(255, 255, 255, 0.08) 0 2px,
      rgba(8, 106, 216, 0.03) 2px 4px
    );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hy-lock-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.55), transparent 55%);
  pointer-events: none;
}

.hy-dims-frost {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hy-line);
  background: #fff;
  margin-bottom: 18px;
  min-height: 120px;
}

.hy-dims-frost .hy-lock-blur {
  padding: 14px 16px;
}

.hy-lock-card {
  text-align: center;
  max-width: 380px;
  background: #fff;
  border: 1px solid var(--hy-line);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 16px 40px rgba(38, 40, 56, 0.1);
}

.hy-lock-card svg {
  margin-bottom: 10px;
  color: var(--hy-blue);
}

.hy-lock-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--hy-ink);
}

.hy-lock-card p {
  font-size: 0.92rem;
  color: var(--hy-muted);
  margin: 0 0 16px;
  line-height: 1.55;
}

.hy-draw-svg {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: block;
  background: #fafbfd;
  border-radius: 8px;
}

.hy-table {
  font-size: 0.9rem;
  margin: 0;
}

#hyResults {
  display: none;
  width: 100%;
}

.hy-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  width: 100%;
}

.hy-pkg {
  background: #fff;
  border: 1px solid var(--hy-line);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
}

.hy-pkg:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(8, 106, 216, 0.1);
}

.hy-pkg.featured {
  border-color: var(--hy-blue);
  box-shadow: 0 16px 40px rgba(8, 106, 216, 0.14);
}

.hy-pkg-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hy-blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.hy-pkg-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 4px 0 0;
  color: var(--hy-ink);
}

.hy-pkg-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--hy-blue);
  margin: 14px 0 4px;
  line-height: 1;
}

.hy-pkg-price small {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hy-muted);
}

.hy-pkg-note {
  font-size: 0.8rem;
  color: var(--hy-muted);
  margin-bottom: 18px;
}

.hy-pkg ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}

.hy-pkg ul li {
  position: relative;
  padding: 9px 0 9px 26px;
  border-bottom: 1px solid #f0f2f7;
  font-size: 0.92rem;
  color: var(--hy-ink);
}

.hy-pkg ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23148d6e' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hy-bottom-cta {
  background: linear-gradient(135deg, #086ad8, #0a4fa3);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  color: #fff;
  width: 100%;
}

.hy-bottom-cta h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 10px;
  color: #fff;
}

.hy-bottom-cta p {
  margin: 0 auto 22px;
  opacity: 0.92;
  max-width: 480px;
}

.hy-breadcrumb {
  margin-top: 20px;
  opacity: 0.75;
  font-size: 0.85rem;
  width: 100%;
}

.hy-breadcrumb a {
  color: inherit;
}

@media (max-width: 991px) {
  .hy-feat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hy-pkg-grid {
    grid-template-columns: 1fr;
  }
  .hy-hero h1 {
    max-width: none;
  }
}

@media (max-width: 575px) {
  .hy-feat-grid {
    grid-template-columns: 1fr;
  }
  .hy-wizard-body {
    padding: 18px 14px;
  }
  .hy-wizard-top {
    padding: 16px;
  }
  .hy-step-label {
    display: none;
  }
  .hy-steps {
    justify-content: center;
    gap: 8px;
  }
  .hy-step + .hy-step::before {
    max-width: 24px;
  }
}
