@font-face {
  font-family: "Helvetica Neue-Regular";
  src: url("/fonts/HelveticaNeueRoman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue-Light";
  src: url("/fonts/HelveticaNeueLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue-Medium";
  src: url("/fonts/HelveticaNeueMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue-Bold";
  src: url("/fonts/HelveticaNeueBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --accent: #f0ff00;
  --dark: #0f0f10;
  --dark-soft: #181818;
  --text: #f6f6f6;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-dark: #1f1f1f;
  --text-dark-muted: #606060;
  --header-offset: 100px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 18px 36px rgba(0, 0, 0, 0.2);
}

html {
  scroll-padding-top: var(--header-offset);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue-Regular", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--dark);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Helvetica Neue-Medium", Helvetica, Arial, sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  scroll-margin-top: var(--header-offset);
}

.section-light {
  background: #fafafa;
  color: var(--text-dark);
}

.section-dark {
  background: var(--dark);
  color: var(--text);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 720px;
}

#sunuyor .section-head,
#icerik .section-head,
#sss .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-items: center;
}

#sunuyor .section-head h2,
#icerik .section-head h2,
#sss .section-head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

#sunuyor .section-head p,
#icerik .section-head p,
#sss .section-head p {
  font-size: 1.1875rem;
}

.section-head p {
  color: var(--text-dark-muted);
  line-height: 1.7;
}

.section-dark .section-head p {
  color: var(--text-muted);
}

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(240, 255, 0, 0.7);
  font-family: "Helvetica Neue-Bold", Helvetica, Arial, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 58px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-nav a {
  position: relative;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: #ffffff;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #141414;
  box-shadow: 0 12px 25px rgba(240, 255, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(240, 255, 0, 0.25);
}

.btn-ghost {
  color: #f7f7f7;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline {
  color: var(--accent);
  border-color: rgba(240, 255, 0, 0.6);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(240, 255, 0, 0.1);
}

.btn-contact {
  min-width: 170px;
  min-height: 52px;
  padding: 0.75rem 1.4rem;
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span::before {
  top: -8px;
}

.nav-toggle span::after {
  top: 8px;
}

.nav-toggle.is-open span {
  background: transparent;
}

.nav-toggle.is-open span::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span::after {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 12, 12, 0.98);
}

.mobile-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  padding: 0 1.5rem;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-actions {
  display: flex;
  gap: 12px;
  padding: 0 1.5rem;
}

.hero {
  position: relative;
  padding: 120px 0 96px;
  overflow: hidden;
  background: radial-gradient(circle at 15% 10%, rgba(240, 255, 0, 0.18), transparent 55%),
    radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(180deg, #121212 0%, #0f0f10 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.hero-inner > :not(.hero-float) {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: "Helvetica Neue-Bold", Helvetica, Arial, sans-serif;
  font-size: clamp(2.6rem, 4.4vw, 4.3rem);
  line-height: 1.02;
  max-width: 980px;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  margin-top: 4px;
  font-size: 1.1875rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 680px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.hero-meta img {
  height: 48px;
  width: auto;
}

.hero-meta span {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-media {
  width: min(1200px, 100%);
  margin-top: 26px;
}

.video-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1200 / 676;
  cursor: pointer;
  background: #000000;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card.is-playing {
  cursor: default;
}

.video-card.is-playing::after {
  display: none;
}

.video-card.is-playing .play-button {
  display: none;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.4) 100%);
}

.play-button {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
}

.play-button::before {
  content: "";
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.play-button::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #1a1a1a;
  transform: translateX(4px);
}

.play-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
  border-radius: var(--radius-lg);
}

.hero-float {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-card {
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(55, 55, 55, 0.9), rgba(15, 15, 15, 0.9));
  box-shadow: 16px 20px 50px rgba(0, 0, 0, 0.45);
}

.float-icon {
  width: 32px;
  height: 32px;
}

.float-card--one {
  top: 170px;
  left: 10%;
  width: 72px;
  height: 72px;
}

.float-card--two {
  top: 130px;
  right: 12%;
}

.float-card--two svg {
  width: 30px;
  height: 30px;
  stroke: #d9d9d9;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.56fr);
  gap: 28px;
  align-items: stretch;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.about-content {
  background: #fafafa;
  border: none;
  padding: clamp(22px, 2.1vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

.about-title-image {
  width: min(420px, 100%);
  height: auto;
  margin-bottom: 24px;
}

.about-content > p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: clamp(1.15rem, 1.05rem + 0.35vw, 1.55rem);
  line-height: 1.5;
  color: var(--text-dark);
}

.about-content strong {
  font-family: "Helvetica Neue-Bold", Helvetica, Arial, sans-serif;
}

.about-press {
  margin-top: 10px;
}

.about-press-label {
  width: min(122px, 29%);
  margin-left: 0;
  height: auto;
}

.about-press-logos {
  margin-top: 14px;
  width: 96%;
  max-width: 96%;
  height: auto;
}

.about-highlights {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  font-size: 0.85rem;
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

#sunuyor .feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  background: linear-gradient(150deg, #ffffff 0%, #fbfbfb 55%, #f1f1f1 100%);
  border-radius: 24px;
  padding: 32px 30px;
  border: 1px solid #ececec;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 250px;
}

.feature-card--accent {
  background: linear-gradient(150deg, #f0ff00 0%, #e4ff66 100%);
  color: #1b1b1b;
  border-color: rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: transparent;
  color: #1b1b1b;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card--accent .feature-icon {
  background: transparent;
}

.feature-card h3 {
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 0.95rem;
  color: #5f5f5f;
  line-height: 1.6;
}

.feature-card--accent p {
  color: rgba(0, 0, 0, 0.65);
}

.pricing-card {
  background: linear-gradient(160deg, #1c1c1c 0%, #111111 100%);
  border-radius: 32px;
  padding: 48px;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-info h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}

.pricing-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
}

.pricing-list li::before {
  content: "";
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
  display: inline-block;
}

.pricing-offer {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 32px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.pricing-offer .btn {
  width: 100%;
  margin-top: 18px;
  padding: 1rem 1.6rem;
  font-size: 1.35rem;
}

.price-old {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.45);
}

.price-badge {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.price-title {
  font-size: 1.6rem;
  font-weight: 600;
}

.price-new {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
}

.price-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.price-note::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e5e5;
  padding: 18px 20px;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 1rem;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  font-size: 1.3rem;
  color: #1f1f1f;
  transition: transform 0.2s ease;
}

.accordion details[open] summary::after {
  transform: rotate(45deg);
}

.accordion-body {
  padding-top: 14px;
  font-size: 0.95rem;
  color: #5a5a5a;
  line-height: 1.6;
}

.accordion--program {
  gap: 0;
  border-top: 1px solid #e5e5e5;
}

.accordion--program details {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 18px 0;
  border-bottom: 1px solid #e5e5e5;
}

.accordion--program summary {
  padding: 0;
  font-weight: 400;
  font-family: "Helvetica Neue-Regular", Helvetica, Arial, sans-serif;
  justify-content: flex-start;
  font-size: 1.083rem;
}

.accordion--program summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(19, 19, 19, 0.14);
  background: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #131313;
  transform: none;
  margin-left: auto;
}

.accordion--program details[open] summary::after {
  content: "-";
  transform: none;
}

.acc-day {
  flex: 0 0 90px;
  color: rgba(19, 19, 19, 0.55);
  font-family: "Helvetica Neue-Light", Helvetica, Arial, sans-serif;
}

.acc-title {
  flex: 1;
  color: #131313;
  font-family: "Helvetica Neue-Medium", Helvetica, Arial, sans-serif;
}

.accordion-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.accordion--program .accordion-body {
  color: rgba(19, 19, 19, 0.7);
  font-size: 1.033rem;
  padding-left: calc(90px + 16px);
}

.accordion--faq details[open] {
  background: var(--accent);
  border-color: rgba(0, 0, 0, 0.08);
}

.accordion--faq details {
  border-radius: 22px;
  padding: 22px 24px;
}

.accordion--faq summary {
  font-size: 1.133rem;
}

.accordion--faq .accordion-body {
  font-size: 1.033rem;
}

.accordion--faq summary::after {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(19, 19, 19, 0.14);
  background: #ffffff;
  display: grid;
  place-items: center;
  transform: none;
}

.accordion--faq details[open] summary::after {
  content: "-";
  background: rgba(19, 19, 19, 0.08);
  transform: none;
}

.accordion--faq details[open] summary {
  color: #1f1f1f;
}

.accordion--faq details[open] .accordion-body {
  color: rgba(0, 0, 0, 0.7);
}

.footer {
  background: var(--accent);
  color: #1b1b1b;
  padding: 72px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  width: 68px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col--left {
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.footer-col--center {
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-col--right {
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: grid;
  place-items: center;
  text-decoration: none;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  stroke: #1f1f1f;
  stroke-width: 1.8;
  fill: none;
}

.footer-email {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
}

.footer-email:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-payments {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-badge {
  background: rgba(15, 15, 16, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
}

.footer-badge picture {
  display: block;
  width: auto;
}

.footer-badge img {
  display: block;
  width: min(360px, 100%);
  height: auto;
  margin: 0 auto;
}

.footer-link {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: "Helvetica Neue-Regular", Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
  text-underline-offset: 4px;
}

.footer-link:hover {
  color: rgba(0, 0, 0, 0.85);
  text-decoration: underline;
}

.footer-sep {
  color: rgba(0, 0, 0, 0.45);
}

.footer-meta {
  text-align: right;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.6);
}

body.lp-modal-open {
  overflow: hidden;
}

.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
}

.lp-modal.is-open {
  display: block;
}

.lp-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
}

.lp-modal__dialog {
  position: relative;
  width: min(940px, calc(100% - 44px));
  max-height: calc(100vh - 64px);
  margin: 32px auto;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.98) 0%, rgba(15, 15, 16, 0.98) 100%);
  border: 1px solid rgba(240, 255, 0, 0.16);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lp-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.lp-modal__header h3 {
  font-size: 1.25rem;
  color: var(--text);
}

.lp-modal__close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(240, 255, 0, 0.25);
  background: rgba(240, 255, 0, 0.08);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.lp-modal__close:hover {
  transform: translateY(-1px);
  background: rgba(240, 255, 0, 0.14);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
}

.lp-modal__close svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  stroke-width: 2.4;
  fill: none;
}

.lp-modal__body {
  padding: 18px 22px 24px;
  overflow: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
}

.lp-modal__body p {
  margin: 0 0 12px;
}

.lp-modal__body h4 {
  margin: 18px 0 8px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Helvetica Neue-Medium", Helvetica, Arial, sans-serif;
}

.lp-modal__body ul {
  margin: 8px 0 14px 18px;
  padding: 0;
}

.lp-modal__body li {
  margin-bottom: 6px;
}

.lp-modal__kv {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.lp-modal__kv-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 8px 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-modal__kv-row:last-child {
  border-bottom: none;
}

.lp-modal__kv dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Helvetica Neue-Medium", Helvetica, Arial, sans-serif;
  letter-spacing: -0.01em;
}

.lp-modal__kv dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.lp-modal__link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(240, 255, 0, 0.75);
  text-underline-offset: 4px;
}

.lp-modal__link:hover {
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .pricing-offer {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
  }
}

@media (max-width: 980px) {
  .site-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-actions {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-content {
    min-height: auto;
  }

  .hero {
    padding-top: 100px;
  }

  .float-card {
    display: none;
  }

  #sunuyor .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .section {
    padding: 70px 0;
  }

  .hero-actions,
  .mobile-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  #sunuyor .feature-grid {
    grid-template-columns: 1fr;
  }

  .about-title-image {
    width: min(320px, 100%);
    margin-bottom: 16px;
  }

  .about-content > p {
    font-size: 1.08rem;
    line-height: 1.65;
    margin-bottom: 14px;
  }

  .about-press-label {
    width: min(102px, 34%);
    margin-left: 0;
  }

  .footer-grid {
    text-align: center;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-meta {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    align-items: center;
  }

  .footer-payments {
    margin-top: 10px;
  }

  .footer-badge {
    width: 100%;
    border-radius: 18px;
    padding: 10px 14px;
  }

  .lp-modal__dialog {
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    margin: 12px auto;
    border-radius: 18px;
  }

  .lp-modal__header {
    padding: 16px 16px;
  }

  .lp-modal__body {
    padding: 16px 16px 20px;
    font-size: 0.95rem;
  }

  .lp-modal__kv-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
