/* PhotoPrint — palugu.com
   Farbwelt aus dem App-Icon: Indigo-Violett-Verlauf als Träger,
   Gelb/Orange/Koralle aus den Buchstabenkacheln als Akzente. */

:root {
  --indigo:      #6B7BE0;
  --indigo-deep: #5560C8;
  --violet:      #9583DC;
  --yellow:      #F5C842;
  --orange:      #F08A3C;
  --coral:       #E85D4A;
  --lime:        #C8D93F;

  --ground:       #FAFAFD;
  --surface:      #FFFFFF;
  --surface-sunk: #F1F2F9;
  --ink:          #171826;
  --ink-muted:    #5B5E7A;
  --ink-faint:    #8B8FA8;
  --line:         #E4E5F0;
  --line-strong:  #CACCE0;
  --on-dark:      #FFFFFF;
  --on-dark-soft: #DFE1F5;

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", sans-serif;
  --display: "Avenir Next", "Segoe UI", var(--sans);
  --wrap: 68rem;
  --pad: clamp(1.15rem, 4vw, 2rem);
  --radius: 14px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground:       #12131E;
    --surface:      #1A1C2B;
    --surface-sunk: #212335;
    --ink:          #ECEDF6;
    --ink-muted:    #A0A4C0;
    --ink-faint:    #757994;
    --line:         #2B2E44;
    --line-strong:  #3E4260;
    --indigo:       #8290EA;
    --indigo-deep:  #6B79DC;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

a { color: var(--indigo-deep); }
:focus-visible { outline: 3px solid var(--indigo); outline-offset: 3px; border-radius: 4px; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 20; background: var(--indigo-deep);
  color: #fff; padding: .7rem 1.1rem; border-radius: 6px; }

h1, h2, h3 { font-family: var(--display); letter-spacing: -0.02em; text-wrap: balance; margin: 0; }
p { margin: 0; }

.section-heading {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-align: center;
  margin-bottom: 2.5rem;
}

.eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--indigo-deep);
}

/* ---------- Kopf ---------- */

.site-header { background: var(--surface); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 10; }
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; padding-block: .8rem; }
.site-header__logo { height: 30px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; font-size: .95rem; }
.site-nav > a { color: var(--ink-muted); text-decoration: none; font-weight: 500; }
.site-nav > a:hover { color: var(--indigo-deep); }
.lang-switch { display: flex; gap: .4rem; }
.lang-switch a {
  font-size: .74rem; font-weight: 700; letter-spacing: .06em;
  padding: .25rem .55rem; border: 1px solid var(--line-strong);
  border-radius: 5px; text-decoration: none; color: var(--ink-muted);
}
.lang-switch a:hover { border-color: var(--indigo); color: var(--indigo-deep); }

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  color: var(--on-dark);
  padding-block: clamp(3rem, 8vw, 5.5rem);
}
.hero__inner {
  display: grid; gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 56rem) { .hero__inner { grid-template-columns: 1.05fr .95fr; } }

.hero__text { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.hero__badge {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: var(--yellow); color: #3A2A00;
  padding: .35rem .75rem; border-radius: 100px;
}
.hero__heading { font-size: clamp(2rem, 5.5vw, 3.2rem); line-height: 1.08; color: var(--on-dark); }
.hero__sub { font-size: clamp(1.05rem, 2.3vw, 1.25rem); color: var(--on-dark-soft); max-width: 34ch; }
.hero__availability { font-size: .9rem; color: var(--on-dark-soft); opacity: .85; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }
.hero__media img { border-radius: var(--radius); box-shadow: 0 18px 50px rgb(23 24 38 / .28); }

/* ---------- Store-Buttons ---------- */

.store {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--surface); color: var(--ink);
  padding: .6rem .95rem .6rem .6rem;
  border-radius: 12px; text-decoration: none;
  border: 1px solid transparent;
  box-shadow: 0 3px 12px rgb(23 24 38 / .12);
  transition: transform .15s ease, box-shadow .15s ease;
}
.store:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgb(23 24 38 / .18); }
.store__icon { width: 40px; height: 40px; border-radius: 9px; }
.store__text { display: flex; flex-direction: column; line-height: 1.25; }
.store__name { font-weight: 650; font-size: .98rem; }
.store__hint { font-size: .78rem; color: var(--ink-faint); }

/* ---------- Features ---------- */

.features { padding-block: clamp(3rem, 7vw, 4.5rem); }
.features__grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 40rem) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 60rem) { .features__grid { grid-template-columns: repeat(3, 1fr); } }
.feature {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.35rem 1.5rem;
  display: flex; flex-direction: column; gap: .45rem;
  border-top: 4px solid var(--accent, var(--indigo));
}
.feature:nth-child(1) { --accent: var(--indigo); }
.feature:nth-child(2) { --accent: var(--coral); }
.feature:nth-child(3) { --accent: var(--yellow); }
.feature:nth-child(4) { --accent: var(--orange); }
.feature:nth-child(5) { --accent: var(--lime); }
.feature__title { font-size: 1.2rem; }
.feature__kicker {
  font-size: .72rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--accent);
}
.feature__text { color: var(--ink-muted); font-size: .95rem; }

/* ---------- Video im iPhone-Rahmen ---------- */

.showcase { padding-block: clamp(2.5rem, 6vw, 4rem); background: var(--surface-sunk); }
.showcase__inner { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.showcase__kicker { font-size: clamp(1.5rem, 4vw, 2rem); }
.phone { position: relative; width: min(324px, 82vw); }
.phone__frame { position: relative; z-index: 2; width: 100%; }
.phone__video { position: absolute; z-index: 1; object-fit: cover; border-radius: 6px; }

/* ---------- Story ---------- */

.story { padding-block: clamp(3rem, 7vw, 4.5rem); }
.story__inner { display: grid; gap: clamp(1.75rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 52rem) { .story__inner { grid-template-columns: 1.1fr .9fr; } }
.story__text { display: flex; flex-direction: column; gap: 1rem; }
.story__text h2 { font-size: clamp(1.5rem, 3.6vw, 2rem); }
.story__text p { color: var(--ink-muted); }
.story__media { display: flex; justify-content: center; }
.story__media img { border-radius: 12px; max-height: 30rem; width: auto;
  border: 1px solid var(--line); box-shadow: 0 10px 32px rgb(23 24 38 / .14); }

/* ---------- Eigenschaften ---------- */

.specs { padding-block: clamp(3rem, 7vw, 4.5rem); background: var(--surface-sunk); }
.specs__inner { display: grid; gap: clamp(2rem, 5vw, 3rem); grid-template-columns: 1fr; }
@media (min-width: 58rem) { .specs__inner { grid-template-columns: 1fr 1fr; align-items: start; } }
.specs__text { display: flex; flex-direction: column; gap: .9rem; }
.specs__text h2 { font-size: clamp(1.45rem, 3.4vw, 1.9rem); }
.specs__list { margin: .5rem 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.specs__list li { position: relative; padding-left: 1.6rem; color: var(--ink-muted); font-size: .95rem; }
.specs__list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .55rem; height: .55rem; border-radius: 2px; background: var(--indigo);
}
.specs__list li:nth-child(3n+2)::before { background: var(--orange); }
.specs__list li:nth-child(3n+3)::before { background: var(--yellow); }
.specs__note { font-size: .88rem; color: var(--ink-faint); font-style: italic; }
.specs__shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.specs__shots img { border-radius: 10px; border: 1px solid var(--line); box-shadow: 0 6px 20px rgb(23 24 38 / .10); }

/* ---------- Stimmen ---------- */

.testimonials { padding-block: clamp(3rem, 7vw, 4.5rem); }
.slider {
  display: flex; gap: 1.1rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .25rem .25rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.slider:focus-visible { outline-offset: 6px; }
.slider .quote {
  flex: 0 0 min(21rem, 82vw);
  scroll-snap-align: start;
}
.slider__hint {
  text-align: center; color: var(--ink-faint);
  font-size: .9rem; letter-spacing: .3em; margin-top: .25rem;
  user-select: none;
}
@media (min-width: 74rem) { .slider__hint { display: none; } }
.quote {
  margin: 0; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.35rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.stars { color: var(--yellow); letter-spacing: .1em; font-size: .95rem; }
.quote__title { font-size: 1.05rem; }
.quote__body { margin: 0; }
.quote__body p { color: var(--ink-muted); font-size: .93rem; }
.quote__by { display: flex; gap: .5rem; align-items: baseline; margin-top: auto; padding-top: .5rem; }
.quote__author { font-weight: 650; font-size: .9rem; }
.quote__country { font-size: .8rem; color: var(--ink-faint); }

/* ---------- Presse ---------- */

.press { padding-block: clamp(2.5rem, 6vw, 4rem); background: var(--surface-sunk); }
.press__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: clamp(1.5rem, 5vw, 3.5rem);
}
.press__logo { max-height: 44px; width: auto; filter: grayscale(1) contrast(1.1); opacity: .78; transition: filter .2s, opacity .2s; }
.press__link:hover .press__logo, .press__logo:hover { filter: grayscale(0); opacity: 1; }

/* ---------- Download ---------- */

.download {
  padding-block: clamp(3rem, 7vw, 4.5rem);
  background: linear-gradient(135deg, var(--indigo-deep) 0%, var(--violet) 100%);
  color: var(--on-dark);
}
.download__inner { display: flex; flex-direction: column; align-items: center; gap: .8rem; text-align: center; }
.download__inner h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); color: var(--on-dark); }
.download__sub { color: var(--on-dark-soft); }
.download__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1rem; }

/* ---------- Fuß ---------- */

.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding-block: 2rem 2.5rem; }
.site-footer__inner { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; align-items: baseline; font-size: .87rem; }
.site-footer__copy { color: var(--ink-muted); }
.site-footer__analytics { color: var(--ink-faint); font-size: .8rem; flex-basis: 100%; order: 3; }
.site-footer__nav { display: flex; gap: 1.25rem; margin-left: auto; }
.site-footer__nav a { color: var(--ink-muted); text-decoration: none; }
.site-footer__nav a:hover { color: var(--indigo-deep); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- Feature-Icons ---------- */

.feature__icon {
  width: 2.6rem; height: 2.6rem;
  display: grid; place-items: center;
  border-radius: 10px;
  color: var(--accent, var(--indigo));
  background: color-mix(in srgb, var(--accent, var(--indigo)) 13%, transparent);
  margin-bottom: .35rem;
}
.feature__icon .icon { width: 1.5rem; height: 1.5rem; }

/* ---------- Blog ---------- */

.blog-index { padding-block: clamp(2.5rem, 6vw, 4rem); }
.blog-index__heading { font-size: clamp(1.9rem, 4.5vw, 2.6rem); }
.blog-index__intro { color: var(--ink-muted); margin-top: .6rem; max-width: 52ch; }

.post-list { list-style: none; margin: 2.25rem 0 0; padding: 0; }
.post-list__item { padding-block: 1.5rem; border-top: 1px solid var(--line); }
.post-list__item:last-child { border-bottom: 1px solid var(--line); }
.post-list__date { font-size: .8rem; color: var(--ink-faint); letter-spacing: .03em; }
.post-list__title { font-size: 1.35rem; margin: .3rem 0 0; }
.post-list__title a { color: var(--ink); text-decoration: none; }
.post-list__title a:hover { color: var(--indigo-deep); }
.post-list__excerpt { color: var(--ink-muted); font-size: .95rem; margin-top: .45rem; max-width: 65ch; }

.post { padding-block: clamp(2.5rem, 6vw, 4rem); }
.post__wrap { max-width: 46rem; }
.post__header { margin-bottom: 2rem; }
.post__date { font-size: .85rem; color: var(--ink-faint); }
.post__title { font-size: clamp(1.8rem, 4.5vw, 2.5rem); line-height: 1.15; margin-top: .5rem; }
.post__body { display: flow-root; }
.post__body > * + * { margin-top: 1.05em; }
.post__body h2 { font-size: 1.5rem; margin-top: 2em; }
.post__body h3 { font-size: 1.15rem; margin-top: 1.6em; }
.post__body p, .post__body li { color: var(--ink-muted); }
.post__body strong { color: var(--ink); }
.post__body img { border-radius: 10px; border: 1px solid var(--line); }
.post__body a { color: var(--indigo-deep); }
.post__footer { margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.post__back { text-decoration: none; font-weight: 550; }
.post__back:hover { text-decoration: underline; }

/* ---------- Presse: Textwortmarken ---------- */

.press__name {
  font-family: var(--display);
  font-weight: 700; font-size: 1.5rem;
  color: var(--ink-faint); letter-spacing: -0.01em;
}

/* ---------- Vergleich LT / Pro ---------- */

.compare { padding-block: clamp(3rem, 7vw, 4.5rem); background: var(--surface-sunk); }
.compare__intro { text-align: center; color: var(--ink-muted); max-width: 56ch; margin: -1.25rem auto 2rem; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.compare__table { border-collapse: collapse; width: 100%; min-width: 34rem; font-size: .95rem; }
.compare__table th, .compare__table td { padding: .75rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare__table tbody tr:last-child th, .compare__table tbody tr:last-child td { border-bottom: none; }
.compare__table thead th {
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-faint); background: var(--surface-sunk);
}
.compare__table thead th:nth-child(3) { color: var(--indigo-deep); }
.compare__table tbody th { font-weight: 550; color: var(--ink); width: 40%; }
.compare__table td { color: var(--ink-muted); }
.compare__table td:nth-child(3) { color: var(--ink); font-weight: 500; }
.compare__note { text-align: center; font-size: .85rem; color: var(--ink-faint); margin-top: 1rem; }

/* ---------- Hilfe & Support ---------- */

.support { padding-block: clamp(2.5rem, 6vw, 4rem); }
.support__wrap { max-width: 46rem; }
.support__heading { font-size: clamp(1.9rem, 4.5vw, 2.6rem); }
.support__intro { color: var(--ink-muted); margin-top: .6rem; }

.faq { margin-top: 2.25rem; display: flex; flex-direction: column; gap: .75rem; }
.faq__item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: .25rem 1.15rem;
}
.faq__item[open] { border-color: var(--indigo); }
.faq__q {
  cursor: pointer; font-weight: 600; padding-block: .9rem;
  /* list-style-position: outside; */
}
.faq__q::marker { color: var(--indigo-deep); }
.faq__a { color: var(--ink-muted); padding-bottom: 1.1rem; font-size: .95rem; }

.contact { margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.contact h2 { font-size: 1.4rem; }
.contact p { color: var(--ink-muted); margin-top: .6rem; }
.contact__mail {
  display: inline-block; margin-top: .9rem; font-weight: 600;
  color: var(--indigo-deep); text-decoration: none;
  border-bottom: 2px solid var(--indigo);
}
