/* En Baba Organizasyon — Event Technologies
   Shared, mobile-first presentation layer for event technology services. */
.et-main {
  --et-ink: #0f172a;
  --et-muted: #475569;
  --et-line: #e2e8f0;
  --et-soft: #f8fafc;
  --et-accent: #4f46e5;
  --et-accent-dark: #3730a3;
  --et-accent-soft: #eef2ff;
  --et-success-soft: #ecfdf5;
  --et-hero-glow: rgba(99, 102, 241, 0.13);
  color: var(--et-ink);
  background: #fff;
  overflow-x: clip;
}

.et-main *,
.et-main *::before,
.et-main *::after {
  box-sizing: border-box;
}

.et-shell {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 12px;
}

.et-hero {
  padding: 64px 0 56px;
  background:
    radial-gradient(circle at 85% 20%, var(--et-hero-glow), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--et-line);
}

.et-hero__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.et-kicker,
.et-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--et-accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.et-hero h1 {
  max-width: 820px;
  margin: 10px 0 16px;
  font-size: clamp(30px, 7.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 900;
  color: var(--et-ink);
}

.et-hero__lead {
  max-width: 800px;
  margin: 0;
  color: var(--et-muted);
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.75;
}

.et-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
}

.et-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.et-btn:hover {
  transform: translateY(-1px);
}

.et-btn:focus-visible,
.et-card:focus-visible,
.et-link-card:focus-visible,
.et-text-link:focus-visible,
.et-filter input:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.24);
  outline-offset: 3px;
}

.et-btn--primary {
  background: var(--et-accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(79, 70, 229, 0.2);
}

.et-btn--primary:hover {
  background: var(--et-accent-dark);
}

.et-btn--secondary {
  border-color: #cbd5e1;
  background: #fff;
  color: var(--et-ink);
}

.et-btn--secondary:hover {
  border-color: #a5b4fc;
  background: var(--et-accent-soft);
}

.et-trust-row {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.et-trust-row span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.et-hero__panel {
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.et-hero__emoji {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: var(--et-accent-soft);
  font-size: 34px;
}

.et-hero__panel-title {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 900;
}

.et-hero__panel ul,
.et-check-list,
.et-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.et-hero__panel li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-top: 1px solid #f1f5f9;
  color: var(--et-muted);
  font-size: 14px;
  line-height: 1.55;
}

.et-hero__panel li::before {
  position: absolute;
  top: 13px;
  left: 0;
  content: "✓";
  color: #059669;
  font-weight: 900;
}

.et-section {
  padding: 58px 0;
}

.et-section--soft {
  background: var(--et-soft);
}

.et-section__head {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.et-section__head--simple {
  display: block;
}

.et-section__head h2,
.et-content-card h2,
.et-two-col h2,
.et-faq-layout h2,
.et-cta__inner h2 {
  margin: 7px 0 10px;
  font-size: clamp(27px, 5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 900;
}

.et-section__head p {
  max-width: 780px;
  margin: 0;
  color: var(--et-muted);
  line-height: 1.7;
}

.et-filter {
  display: block;
  width: 100%;
}

.et-filter input {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  color: var(--et-ink);
  font: inherit;
}

.et-filter input::placeholder {
  color: #94a3b8;
}

.et-group + .et-group {
  margin-top: 38px;
}

.et-group__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.et-group__icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--et-line);
  font-size: 24px;
}

.et-group__head h3 {
  margin: 0 0 4px;
  font-size: 21px;
  font-weight: 900;
}

.et-group__head p {
  margin: 0;
  color: var(--et-muted);
  font-size: 14px;
  line-height: 1.6;
}

.et-card-grid,
.et-link-grid,
.et-content-grid,
.et-related-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.et-card,
.et-link-card,
.et-related-card,
.et-content-card {
  min-width: 0;
  border: 1px solid var(--et-line);
  border-radius: 18px;
  background: #fff;
}

.et-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.et-card:hover {
  transform: translateY(-3px);
  border-color: #c7d2fe;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.et-card__emoji {
  margin-bottom: 12px;
  font-size: 30px;
}

.et-card h4,
.et-card h3,
.et-related-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.et-card p,
.et-related-card p,
.et-content-card p {
  margin: 0;
  color: var(--et-muted);
  line-height: 1.65;
}

.et-card__link {
  margin-top: auto;
  padding-top: 16px;
  color: var(--et-accent-dark);
  font-size: 14px;
  font-weight: 900;
}

.et-filter-empty {
  margin: 24px 0 0;
  padding: 18px;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  background: #fff;
  color: var(--et-muted);
  text-align: center;
}

.et-link-card {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: var(--et-ink);
  font-weight: 800;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.et-link-card:hover {
  border-color: #c7d2fe;
  background: var(--et-accent-soft);
}

.et-link-card__icon {
  font-size: 24px;
}

.et-content-card {
  padding: 22px;
}

.et-content-card h2 {
  font-size: clamp(23px, 4vw, 31px);
}

.et-check-list {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}

.et-check-list li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  line-height: 1.6;
}

.et-check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "✓";
  color: #059669;
  font-weight: 900;
}

.et-two-col,
.et-faq-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.et-two-col > div,
.et-faq-layout > div {
  min-width: 0;
}

.et-two-col > div > p,
.et-faq-layout > div:first-child > p {
  margin: 0;
  color: var(--et-muted);
  line-height: 1.72;
}

.et-info-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--et-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.055);
}

.et-info-card h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.et-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.et-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid #c7d2fe;
  border-radius: 999px;
  background: var(--et-accent-soft);
  color: var(--et-accent-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.et-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--et-line);
  color: var(--et-muted);
  font-size: 13px;
  line-height: 1.65;
}

.et-requirement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.et-requirement-grid article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--et-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
}

.et-requirement-grid article > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--et-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.et-requirement-grid article > p {
  margin: 2px 0 0;
  color: #334155;
  line-height: 1.6;
}

.et-process {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.et-process li {
  min-width: 0;
  padding: 19px;
  border: 1px solid var(--et-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
}

.et-process strong,
.et-process span {
  display: block;
}

.et-process strong {
  margin-bottom: 7px;
  color: var(--et-accent-dark);
  font-size: 14px;
  font-weight: 900;
}

.et-process span {
  color: var(--et-muted);
  font-size: 14px;
  line-height: 1.65;
}

.et-process-list {
  counter-reset: et-step;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.et-process-list li {
  counter-increment: et-step;
  position: relative;
  padding: 16px 16px 16px 54px;
  border: 1px solid var(--et-line);
  border-radius: 14px;
  background: var(--et-soft);
  color: #334155;
  line-height: 1.55;
}

.et-process-list li::before {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  content: counter(et-step);
  background: var(--et-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.et-faq,
.et-faq-list {
  display: grid;
  gap: 10px;
}

.et-faq details,
.et-faq-list details {
  border: 1px solid var(--et-line);
  border-radius: 14px;
  background: #fff;
  overflow: clip;
}

.et-faq summary,
.et-faq-list summary {
  cursor: pointer;
  padding: 17px 48px 17px 18px;
  font-weight: 850;
  line-height: 1.45;
  list-style: none;
  position: relative;
}

.et-faq summary::-webkit-details-marker,
.et-faq-list summary::-webkit-details-marker {
  display: none;
}

.et-faq summary::after,
.et-faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  content: "+";
  transform: translateY(-50%);
  color: var(--et-accent);
  font-size: 22px;
  font-weight: 700;
}

.et-faq details[open] summary::after,
.et-faq-list details[open] summary::after {
  content: "−";
}

.et-faq details p,
.et-faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--et-muted);
  line-height: 1.7;
}

.et-related-card {
  display: block;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.et-related-card:hover {
  transform: translateY(-2px);
  border-color: #c7d2fe;
}

.et-related-card__icon {
  display: block;
  margin-bottom: 9px;
  font-size: 28px;
}

.et-text-link {
  color: var(--et-accent-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.et-cta-wrap,
.et-cta {
  padding: 0 0 64px;
}

.et-cta {
  background: #fff;
  color: var(--et-ink);
}

.et-cta__inner {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 24px;
  background: var(--et-ink);
  color: #fff;
}

.et-cta__inner h2 {
  max-width: 760px;
  color: #fff;
}

.et-cta__inner p {
  max-width: 760px;
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.et-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.et-cta__inner .et-btn--secondary {
  border-color: rgba(255,255,255,0.32);
  background: transparent;
  color: #fff;
}

.et-cta__inner .et-btn--secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}


/* Family-level visual identity: one shared template, distinct service context. */
.et-theme--games {
  --et-accent: #2563eb;
  --et-accent-dark: #1d4ed8;
  --et-accent-soft: #eff6ff;
  --et-hero-glow: rgba(37, 99, 235, 0.14);
}

.et-theme--ai {
  --et-accent: #7c3aed;
  --et-accent-dark: #6d28d9;
  --et-accent-soft: #f5f3ff;
  --et-hero-glow: rgba(124, 58, 237, 0.14);
}

.et-theme--interactive {
  --et-accent: #0f766e;
  --et-accent-dark: #115e59;
  --et-accent-soft: #f0fdfa;
  --et-hero-glow: rgba(13, 148, 136, 0.14);
}

.et-theme--corporate {
  --et-accent: #0369a1;
  --et-accent-dark: #075985;
  --et-accent-soft: #f0f9ff;
  --et-hero-glow: rgba(2, 132, 199, 0.13);
}

.et-theme--experience {
  --et-accent: #b45309;
  --et-accent-dark: #92400e;
  --et-accent-soft: #fffbeb;
  --et-hero-glow: rgba(217, 119, 6, 0.13);
}

.et-media-section {
  background: #fff;
}

.et-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.et-media-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--et-line);
  border-radius: 18px;
  background: var(--et-soft);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.et-media-card img,
.et-media-card video,
.et-media-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0f172a;
}

.et-media-card--video video,
.et-media-card--video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.et-media-card figcaption {
  padding: 12px 14px;
  color: var(--et-muted);
  font-size: 13px;
  line-height: 1.55;
}

@media (min-width: 640px) {
  .et-shell {
    padding-inline: 20px;
  }

  .et-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .et-trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .et-card-grid,
  .et-link-grid,
  .et-related-grid,
  .et-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .et-requirement-grid,
  .et-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .et-card-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .et-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .et-cta__inner {
    padding: 38px;
  }
}

@media (min-width: 900px) {
  .et-hero {
    padding: 76px 0 68px;
  }

  .et-hero__grid {
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.8fr);
    gap: 52px;
  }

  .et-section {
    padding: 76px 0;
  }

  .et-section__head {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    align-items: end;
  }

  .et-section__head--simple {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
  }

  .et-two-col {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: 42px;
  }

  .et-faq-layout {
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
    gap: 42px;
  }

  .et-requirement-grid {
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  }

  .et-process {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .et-card-grid--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .et-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
  }

  .et-cta__actions {
    justify-content: flex-end;
  }

  .et-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .et-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .et-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .et-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .et-media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .et-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .et-card-grid--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


@media (max-width: 639px) {
  .et-section {
    padding: 48px 0;
  }

  .et-hero__panel {
    padding: 20px;
    border-radius: 20px;
  }

  .et-cta {
    padding-bottom: 48px;
  }

  .et-cta__inner {
    padding: 24px 18px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .et-btn,
  .et-card,
  .et-link-card,
  .et-related-card {
    transition: none;
  }
}


.et-media-layout{
  display:grid;
  gap:24px;
}

.et-media-panel{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:24px;
  box-shadow:0 18px 45px rgba(15,23,42,.06);
  padding:22px;
}

.et-media-panel__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.et-media-panel__head h3{
  margin:6px 0 0;
  font-size:1.1rem;
}

.et-media-count{
  min-width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(79,70,229,.08);
  color:var(--et-accent, #4f46e5);
  font-weight:700;
  font-size:.95rem;
  flex-shrink:0;
}

.et-media-grid--photos,
.et-media-grid--videos{
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}

.et-media-empty{
  border:1px dashed rgba(79,70,229,.26);
  border-radius:18px;
  background:rgba(79,70,229,.04);
  padding:18px;
}

.et-media-empty strong{
  display:block;
  margin-bottom:8px;
  font-size:1rem;
}

.et-media-empty p{
  margin:0;
  color:#475569;
}

@media (min-width: 960px){
  .et-media-layout{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}


/* Rental package architecture: visible prices and operation-backed package scopes. */
.et-sales-section {
  border-block: 1px solid var(--et-line);
}

.et-sales-block + .et-sales-block {
  margin-top: 34px;
}

.et-sales-block__head {
  max-width: 820px;
  margin-bottom: 18px;
}

.et-sales-block__head h3 {
  margin: 0 0 8px;
  font-size: clamp(21px, 3.5vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.et-sales-block__head p,
.et-sales-scenario p,
.et-package-card > p,
.et-price-disclosure {
  color: var(--et-muted);
  line-height: 1.68;
}

.et-sales-block__head p,
.et-sales-scenario p,
.et-package-card > p {
  margin: 0;
}

.et-sales-scenario-grid,
.et-package-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.et-sales-scenario,
.et-package-card {
  min-width: 0;
  border: 1px solid var(--et-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.et-sales-scenario {
  padding: 20px;
}

.et-sales-scenario h4,
.et-package-card h4 {
  margin: 0;
  color: var(--et-ink);
  font-size: 17px;
  line-height: 1.35;
}

.et-sales-scenario p {
  margin-top: 9px;
  font-size: 14px;
}

.et-package-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.et-package-card__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.et-package-card__top span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--et-accent-soft);
  color: var(--et-accent-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.et-package-card > p {
  font-size: 14px;
}

.et-package-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.et-package-card li {
  position: relative;
  padding-left: 22px;
  color: #334155;
  font-size: 13px;
  line-height: 1.55;
}

.et-package-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "✓";
  color: var(--et-accent);
  font-weight: 900;
}

.et-package-card__cta {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  color: var(--et-accent-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.et-package-card__cta:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.et-package-card__cta:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.24);
  outline-offset: 3px;
  border-radius: 4px;
}

.et-price-disclosure {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--et-accent);
  background: #fff;
  font-size: 13px;
}

@media (min-width: 640px) {
  .et-sales-scenario-grid,
  .et-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .et-package-card__top {
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
  }
}

@media (min-width: 960px) {
  .et-sales-scenario-grid,
  .et-package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* 2026 rental pricing, service shortcuts and field-operation UI. */
.et-quick-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
}

.et-quick-nav a {
  display: flex;
  min-width: 0;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 11px;
  border: 1px solid var(--et-line);
  border-radius: 12px;
  background: #fff;
  color: var(--et-ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.et-quick-nav a:hover {
  border-color: #a5b4fc;
  background: var(--et-accent-soft);
  transform: translateY(-1px);
}

.et-quick-nav a:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.24);
  outline-offset: 2px;
}

#etPackages,
#etRentalTerms,
#etLogistics,
#etOperation,
#etPhotoGallery,
#etVideoGallery {
  scroll-margin-top: 110px;
}

.et-price-band {
  display: grid;
  gap: 5px;
  margin-bottom: 16px;
  padding: 14px 15px;
  border: 1px solid rgba(79, 70, 229, 0.18);
  border-radius: 16px;
  background: var(--et-accent-soft);
}

.et-price-band > span {
  color: var(--et-accent-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.et-price-band strong {
  color: var(--et-ink);
  font-size: clamp(21px, 5vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.et-price-band small {
  color: var(--et-muted);
  font-size: 12px;
  line-height: 1.5;
}

.et-rating-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 7px;
  align-items: center;
  margin: -4px 0 16px;
  padding: 10px 12px;
  border: 1px solid #fde68a;
  border-radius: 14px;
  background: #fffbeb;
  color: #78350f;
  font-size: 12px;
  line-height: 1.4;
}

.et-rating-badge strong {
  font-size: 14px;
}

.et-operation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.et-operation-card {
  display: flex;
  min-width: 0;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--et-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
}

.et-operation-card__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--et-accent-soft);
  font-size: 19px;
}

.et-operation-card > div {
  min-width: 0;
}

.et-operation-card strong {
  display: block;
  color: var(--et-ink);
  font-size: 13px;
  line-height: 1.35;
}

.et-operation-card p {
  margin: 5px 0 0;
  color: var(--et-muted);
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

@media (min-width: 640px) {
  .et-quick-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .et-quick-nav a {
    font-size: 13px;
  }

  .et-operation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .et-quick-nav {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .et-operation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Service-specific public rental terms: no internal cost breakdown is exposed. */
.et-rental-terms-section {
  background: #fff;
}

.et-rental-terms-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.et-rental-term-card {
  display: flex;
  min-width: 0;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--et-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
}

.et-rental-term-card__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--et-accent-soft);
  font-size: 19px;
}

.et-rental-term-card > div {
  min-width: 0;
}

.et-rental-term-card strong {
  display: block;
  color: var(--et-ink);
  font-size: 13px;
  line-height: 1.35;
}

.et-rental-term-card p {
  margin: 5px 0 0;
  color: var(--et-muted);
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.et-rental-terms-note {
  margin: 16px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 14px;
  background: var(--et-accent-soft);
  color: #334155;
  font-size: 13px;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .et-rental-terms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .et-rental-terms-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


.et-logistics-actions { margin-top: 16px; }

/* =========================================================
   2026-09-09 — fotoğraflı teknoloji kartları + kapsam güvencesi
========================================================= */
.et-guarantee{
  display:grid;
  grid-template-columns:38px minmax(0,1fr);
  gap:10px;
  align-items:start;
  max-width:760px;
  margin-top:14px;
  padding:12px 13px;
  border:1px solid rgba(16,185,129,.22);
  border-radius:14px;
  background:rgba(236,253,245,.78);
}
.et-guarantee__icon{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:12px;
  background:#d1fae5;
  font-size:19px;
}
.et-guarantee strong{
  display:block;
  color:#065f46;
  font-size:12px;
  font-weight:900;
  letter-spacing:.03em;
  text-transform:uppercase;
}
.et-guarantee p{
  margin:3px 0 0;
  color:#475569;
  font-size:12px;
  line-height:1.5;
}
.et-card-grid{
  align-items:start;
}
.et-card{
  align-self:start;
  min-height:0;
  height:auto;
}
.et-card__media{
  position:relative;
  display:block;
  width:100%;
  aspect-ratio:16 / 9;
  overflow:hidden;
  margin-bottom:15px;
  border:1px solid rgba(148,163,184,.18);
  border-radius:15px;
  background:#e2e8f0;
}
.et-card__media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 180ms ease,filter 180ms ease;
}
.et-card:hover .et-card__media img{
  transform:scale(1.035);
  filter:saturate(1.05);
}
.et-card__media-emoji{
  position:absolute;
  right:9px;
  bottom:9px;
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border:1px solid rgba(255,255,255,.75);
  border-radius:12px;
  background:rgba(15,23,42,.72);
  color:#fff;
  box-shadow:0 8px 20px rgba(15,23,42,.22);
  backdrop-filter:blur(8px);
  font-size:19px;
}
