/* === Global Reset & Base === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter,system-ui,Segoe UI,Roboto,sans-serif;
  background:#f9fafb;
  color:#111827;
  line-height:1.6;
}

/* === Hero === */
.hero{
  background:linear-gradient(135deg,#7C3AED 0%,#3B82F6 100%);
  color:#fff;
  text-align:center;
  padding:6rem 1rem 4rem;
}
.hero h1{
  font-size:clamp(2rem,6vw,3rem);
  font-weight:700;
}
.hero .lead{
  max-width:600px;
  margin:1rem auto 2rem;
  font-size:1.125rem;
  opacity:.95;
}
.hero-actions a{
  margin:.5rem;
}

/* === Layout === */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:2rem 1rem;
}

/* === Services Grid === */
.services{
  display:grid;
  gap:2rem;
}
@media(min-width:768px){
  .services{grid-template-columns:repeat(3,1fr);}
}

/* === Cards === */
.card{
  background:#fff;
  border-radius:1rem;
  padding:2rem;
  box-shadow:0 6px 20px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  transition:transform .2s ease, box-shadow .2s ease;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,.1);
}
.card .icon{
  font-size:2.5rem;
  margin-bottom:.5rem;
}
.card h2{font-size:1.5rem;margin-bottom:.5rem;}
.card p{margin-bottom:1rem;color:#374151;}
.card ul{margin-bottom:1.5rem;padding-left:1.2rem;}
.card li{margin-bottom:.3rem;}

/* === Buttons === */
.btn{
  display:inline-block;
  font-weight:600;
  padding:.7rem 1.4rem;
  border-radius:.6rem;
  text-decoration:none;
  transition:background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn-primary{
  background:#7C3AED;
  color:#fff;
  box-shadow:0 3px 8px rgba(0,0,0,.15);
}
.btn-primary:hover{background:#6d28d9;}

.btn-secondary{
  background:transparent;
  color:#fff;
  border:2px solid #fff;
}
.btn-secondary:hover{
  background:#fff;
  color:#7C3AED;
}

.btn-outline{
  border:2px solid #7C3AED;
  color:#7C3AED;
}
.btn-outline:hover{
  background:#7C3AED;
  color:#fff;
}

.btn-success{
  background:#22c55e;
  color:#fff;
}
.btn-success:hover{background:#16a34a;}

/* === Header/Footer === */
header.site-header {
  text-align:center;
  padding:1rem;
  background:#fff;
}
footer.site-footer{
  font-size:.875rem;
  color:#6b7280;
}

/* ===== Header ===== */
.site-header {
  background:linear-gradient(135deg,#7C3AED 0%,#3B82F6 100%);
  color:#fff;
  position:sticky;top:0;z-index:50;
}
.header-container{
  display:flex;justify-content:space-between;align-items:center;
  max-width:1200px;margin:0 auto;padding:1rem;
}
.logo-container{
  font-size:1.4rem;font-weight:700;color:#fff;text-decoration:none;
}
.logo-container span{color:#d1d5db;font-weight:700;}

.desktop-menu{display:none;gap:1rem;}
.desktop-menu a{
  display:flex;align-items:center;gap:.4rem;
  color:#fff;text-decoration:none;font-weight:500;font-size:.95rem;
  padding:.5rem .8rem;border-radius:.4rem;
  transition:background .2s;
}
.desktop-menu a:hover{background:rgba(255,255,255,.15);}
.desktop-menu img{display:block;}

.burger{
  width:2rem;height:2rem;display:flex;flex-direction:column;
  justify-content:space-around;background:none;border:0;cursor:pointer;
}
.burger span{
  display:block;height:2px;background:#fff;border-radius:2px;
  transition:.3s;
}

/* ===== Mobile Menü ===== */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  color: #111827;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
  transform-origin: top;
  animation: slideDown .25s ease forwards;
}

.mobile-menu a {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  transition: background .2s;
}
.mobile-menu a:hover {
  background: #f3f4f6;
}

/* Burger-Menü Animation */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

/* Wenn offen → anzeigen */
.mobile-menu.open {
  display: flex !important;
}

@media (min-width: 768px) {
  .desktop-menu { display: flex; }
  .burger { display: none; }
  .mobile-menu { display: none; } /* OHNE !important – sonst blockiert es JS */
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === EXIF Cleaner Specific === */
.dropzone {
  border:2px dashed #d1d5db;
  border-radius:1rem;
  padding:2rem;
  text-align:center;
  background:#fff;
  transition:border-color .3s ease,background .3s ease;
  cursor:pointer;
}
.dropzone:hover {
  border-color:#7C3AED;
  background:#f9fafb;
}
.dz-emoji{font-size:3rem;margin-bottom:.5rem;}
.canvas {
  max-width:100%;
  border-radius:1rem;
  background:#000;
}
.actions {
  margin-top:1rem;
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  justify-content:center;
}
.table-wrap{overflow-x:auto;max-height:300px;}
table{width:100%;border-collapse:collapse;font-size:.9rem;}
table th,table td{border-bottom:1px solid #e5e7eb;padding:.4rem .6rem;text-align:left;}
table th{color:#7C3AED;}
.loader {
  position:fixed;inset:0;
  background:rgba(255,255,255,.85);
  display:flex;flex-direction:column;justify-content:center;align-items:center;
  z-index:1000;
}
.spinner {
  width:48px;height:48px;
  border:4px solid #e5e7eb;border-top-color:#7C3AED;
  border-radius:50%;animation:spin 1s linear infinite;
}
@keyframes spin {to{transform:rotate(360deg)}}
.toast {
  position:fixed;bottom:1rem;left:50%;transform:translateX(-50%);
  background:#7C3AED;color:#fff;padding:.8rem 1.2rem;
  border-radius:.6rem;font-size:.9rem;box-shadow:0 4px 10px rgba(0,0,0,.15);
  z-index:999;
}

/* === Footer === */
.site-footer {
  background: #111827;
  color: #d1d5db;
  padding: 2rem 1rem;
  margin-top: 3rem;
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.site-footer .logo-footer {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.site-footer .logo-footer span {
  color: #7C3AED;
}
.site-footer .tagline {
  font-size: .95rem;
  opacity: .8;
  margin-top: .25rem;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.2rem 0 0;
  padding: 0;
}
.footer-nav a {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.footer-nav a:hover { color: #fff; }

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  font-size: .85rem;
  opacity: .7;
}

@media(min-width:768px){
  .site-footer .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer-nav ul { margin: 0; }
}

/* === Legal Pages === */
.legal-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
}
.legal-text h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: .5rem;
  color: #111827;
}
.legal-text p {
  margin-bottom: 1rem;
}
.legal-text a {
  color: #3B82F6;
  text-decoration: underline;
}
.legal-text a:hover {
  color: #2563EB;
}

/* === FAQ Section === */
.faq {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.faq h2 {
  margin-top: 2.5rem;
  font-size: 1.75rem;
  color: #111827;
}

/* Einzelne Fragebox */
.faq-item {
  background: #fff;
  border-radius: .6rem;
  box-shadow: 0 3px 8px rgba(0,0,0,.06);
  margin: 1rem 0;
  padding: 1rem 1.2rem;
  transition: box-shadow .2s ease, background .2s ease;
}
.faq-item:hover {
  box-shadow: 0 5px 12px rgba(0,0,0,.08);
}

/* Frage-Zeile */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;       /* deutlicher fett */
  font-size: 1.2rem;      /* größer als Antwort */
  line-height: 1.4;
  color: #111827;
  transition: color .3s;
}
.faq-question::after {
  content: "▸";           /* Pfeil Icon */
  font-size: 1.2rem;
  color: #7C3AED;
  transition: transform .3s ease;
}

/* Geöffnete Frage */
.faq-item.open .faq-question {
  color: #7C3AED;         /* Brandfarbe */
}
.faq-item.open .faq-question::after {
  transform: rotate(90deg);
}

/* Antwort smooth */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: #374151;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: .3rem;
}
.faq-item.open .faq-answer {
  max-height: 500px; /* genug Platz */
}

/* === EXIF Cleaner – App Look === */

.app-main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Einleitung */
.tool-intro {
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.tool-intro h2 {
  font-size: 1.6rem;
  margin-bottom: .75rem;
  color: #111827;
}
.tool-intro ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
  line-height: 1.6;
}
.tool-intro .muted {
  color: #6b7280;
  font-size: .95rem;
}

/* Dropzone */
.dropzone {
  text-align: center;
  background: #f9fafb;
  border: 2px dashed #d1d5db;
  border-radius: .75rem;
  padding: 2.5rem 1rem;
  cursor: pointer;
  transition: border-color .3s, background .3s;
  margin-bottom: 2rem;
}
.dropzone:hover {
  background: #f3f4f6;
  border-color: #7C3AED;
}
.dz-emoji {
  font-size: 2rem;
  margin-bottom: .5rem;
}
.dropzone h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .25rem;
}
.dropzone .muted { color: #6b7280; }
.dropzone .supported { font-size: .9rem; color: #4b5563; margin-top: .25rem; }
.dropzone .btn-ghost {
  margin-top: 1rem;
}

/* Workspace */
.workspace {
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  padding: 1.5rem;
}
.preview-wrap {
  text-align: center;
  margin-bottom: 1rem;
}
.canvas {
  max-width: 100%;
  border-radius: .5rem;
  background: #f9fafb;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.actions .btn {
  min-width: 140px;
}

/* EXIF-Details */
.exif-inline summary {
  cursor: pointer;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.exif-inline summary::after {
  content: "▸";
  transition: transform .3s;
}
.exif-inline[open] summary::after { transform: rotate(90deg); }
.table-wrap {
  overflow-x: auto;
  margin-top: .75rem;
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.table-wrap td, .table-wrap th {
  border-bottom: 1px solid #e5e7eb;
  padding: .4rem .6rem;
  text-align: left;
}

/* === MODAL BASE === */
dialog.modal {
  border: none;
  padding: 0;            /* entfernt Standard-Innenabstand */
  background: transparent; /* macht den Dialog selbst durchsichtig */
  max-width: none;
}

dialog.modal::backdrop {
  background: rgba(0,0,0,0.5); /* Overlay */
}

/* === MODAL CONTENT === */
.modal-content {
  background: #fff;
  border-radius: 1rem;
  max-width: 700px;
  width: 95%;
  margin: 5vh auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: scaleIn .25s ease;
}

@keyframes scaleIn {
  from {transform: scale(.95) translateY(10px); opacity: 0;}
  to   {transform: scale(1) translateY(0); opacity: 1;}
}

/* === HEADER === */
.modal-header {
  background: #7C3AED;
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header .icon-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
  padding: 0;
  transition: opacity .2s;
}
.modal-header .icon-btn:hover {opacity: .8;}

/* === BODY === */
.modal-body {
  padding: 1rem 1.5rem;
  max-height: 60vh;
  overflow-y: auto;
}
.modal-body .hint {
  font-size: .9rem;
  color: #6b7280;
  margin-top: .75rem;
}

/* TABLE STYLING */
.table-wrap {overflow-x: auto;}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  border: 1px solid #e5e7eb;
}
.table-wrap th, .table-wrap td {
  padding: .6rem .8rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}
.table-wrap th {
  background: #f9fafb;
  font-weight: 600;
}
.table-wrap tr:hover td {background: #f3f4f6;}

/* === FOOTER === */
.modal-footer {
  padding: .75rem 1.5rem;
  background: #f9fafb;
  text-align: right;
}
.modal-footer .btn {min-width: 100px;}

/* === App Footer === */
.app-footer {
  display: flex;
  justify-content: center;   /* Inhalt zentrieren */
  text-align: center;        /* Text in der Mitte */
  font-size: .9rem;
  color: #6b7280;
  margin: 3rem auto 2rem;
  line-height: 1.5;
  max-width: 1200px;         /* optional, für gleiche Breite wie Container */
  padding: 0 1rem;
}

.app-footer .privacy {
  max-width: 700px;          /* Lesbare Breite */
}

.app-footer strong {
  color: #111827;
}

/* === SECURE LINK FORM === */

.styled-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  font-size: 1rem;
  color: #111827;
  margin-bottom: 0.3rem;
}

.form-group .helper-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.styled-input {
  padding: 0.75rem 1rem;
  border: 2px solid #d1d5db;
  border-radius: 0.6rem;
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}

.styled-input:focus {
  outline: none;
  border-color: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.error-message-inline {
  color: #b3261e;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.btn-primary {
  background: #7C3AED;
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
  border-radius: 0.6rem;
  border: none;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}

.btn-primary:hover {
  background: #6d28d9;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

/* Card-Container */
.card {
  background: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Responsiv */
@media (min-width: 768px) {
  .btn-primary {
    width: auto;
  }
}
@media (max-width: 767px) {
  .btn-primary {
    width: 100%;
  }
}

/* === Ergebnisbereich für Secure Links === */
.result {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  text-align: center;
}

.link-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .75rem;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  transition: box-shadow .2s, transform .2s;
}
.link-box:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.link-label {
  font-size: .95rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: .2rem;
}
.link-desc {
  font-size: .85rem;
  color: #6b7280;
}
.link-value {
  font-size: .95rem;
  color: #1f2937;
  word-break: break-word;
}

.qr-code {
  max-width: 90px;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
}

.copy-btn {
  background: #7C3AED;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  padding: .5rem .9rem;
  border-radius: .5rem;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.copy-btn:hover { background: #6d28d9; }

.copy-message {
  background: #7C3AED;
  color: #fff;
  font-weight: 600;
  padding: .5rem 1rem;
  border-radius: .5rem;
  font-size: .85rem;
  text-align: center;
  margin-top: .5rem;
  display: none;
}

/* Spinner standardmäßig ausblenden */
#loadingSpinner {
  display: none;
}


/* === Private Notes Page === */

#messageForm textarea {
  width: 100%;
  min-height: 180px;
  font-size: 1rem;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: .5rem;
  resize: vertical;
}

#charCount {
  font-size: .85rem;
  color: #666;
  margin-top: .25rem;
}

#errorMessage {
	color: #b3261e;
}

.error-message {
  color: #b3261e;
  margin-top: .5rem;
  display: block;
}

#copySuccess {
	color: #5cbe51;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
}
.loader .spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #ddd;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: .5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === Step Boxes === */
.step-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.step-box {
  background: #f8f9fa;
  border: 1px solid #e3e6ea;
  border-radius: .75rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,.05);
}
.step-box h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

/* === Result Card === */
#result .card,
#result > div {
  background: #fff;
  border: 1px solid #e3e6ea;
  border-radius: .75rem;
  padding: 1.25rem;
  margin-top: 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
#noteLink {
  width: 100%;
  margin-top: .5rem;
  padding: .5rem .75rem;
  border-radius: .5rem;
  border: 1px solid #ccc;
  font-size: .95rem;
}
.actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.actions .btn {
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: .5rem;
  padding: .4rem .8rem;
  cursor: pointer;
  font-size: .9rem;
}
.actions .btn-ghost {
  background: #f1f3f5;
  color: #333;
}
.muted {
  font-size: .85rem;
  color: #666;
}

/* === OTP / Email Field === */
#otp-email-section input[type="email"] {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid #ccc;
  border-radius: .5rem;
  font-size: 1rem;
  margin: .5rem 0;
  transition: border-color .2s, box-shadow .2s;
}

#otp-email-section input[type="email"]:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0,123,255,.2);
  outline: none;
}

.custom-checkbox {
	margin-bottom: .5rem;
}


/* --- Secure Note Form --- */
.note-form {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.note-form textarea {
  width: 100%;
  resize: vertical;
  min-height: 160px;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.2s ease;
}

.note-form textarea:focus {
  outline: none;
  border-color: var(--accent-color, #7C3AED);
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.15);
}

.note-form .muted {
  font-size: 0.9rem;
  color: #6b7280;
}

.note-form .error-message {
  color: #dc2626;
  font-weight: 500;
  font-size: 0.95rem;
}

.note-form .custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.note-form .custom-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
}

.note-form .custom-checkbox label {
  font-size: 0.95rem;
  line-height: 1.4;
}

.otp-email-section {
  display: none;
}

.otp-email-section.active {
  display: block;
}

.otp-email-section input[type="email"] {
  width: 100%;
  padding: 0.65rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.note-form .btn.btn-primary {
  align-self: flex-start;
}

.note-form .security-notice {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
  margin-top: 0.75rem;
}



/* --- OTP Verification Section --- */
.otp-section {
  max-width: 400px;
  margin: 3rem auto;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.otp-section h1 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.otp-section .otp-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #4b5563;
  margin-bottom: 1rem;
}

.otp-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.otp-form input[type="text"] {
  width: 100%;
  padding: 0.75rem;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 0.2rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.2s ease;
}

.otp-form input[type="text"]:focus {
  outline: none;
  border-color: var(--accent-color, #7C3AED);
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.15);
}

.otp-form button {
  width: 100%;
  font-size: 1rem;
  padding: 0.75rem 1rem;
}

.cancel-link {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--accent-color, #7C3AED);
  transition: color 0.2s ease;
}

.cancel-link:hover {
  color: #5b21b6;
}

@media (max-width: 480px) {
  .otp-section {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }

  .otp-form input[type="text"] {
    font-size: 1rem;
  }
}

/* --- Info Section (Explanation & Benefits) --- */
.info-section {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-header h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-header p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

.info-block h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-color, #7C3AED);
  margin-bottom: 0.5rem;
}

.info-block p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .info-section {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .info-header h1 {
    font-size: 1.5rem;
  }

  .info-block h2 {
    font-size: 1.1rem;
  }
}


/* --- Steps Section --- */
.steps {
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.steps-header h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.steps-header p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 900px;
  margin-top: 1rem;
}

.step-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.step-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color, #7C3AED);
  margin-bottom: 0.5rem;
}

.step-box p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .steps {
    padding: 2rem 1.5rem;
  }

  .steps-header h2 {
    font-size: 1.4rem;
  }

  .step-box {
    padding: 1.25rem;
  }
}

/* --- Micro Footer SEO Snippet --- */
.micro-footer {
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.micro-footer p {
  font-size: 0.9rem;
  color: #F3F4F6; /* heller Grauton für gute Lesbarkeit */
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.micro-footer a {
  color: #ffffff; /* klare Lesbarkeit auf dem Verlauf */
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.micro-footer a:hover {
  opacity: 0.8; /* dezenter Hover statt Farbwechsel */
}

@media (prefers-color-scheme: dark) {
  .micro-footer p {
    color: #E5E7EB;
  }
  .micro-footer a {
    color: #fff;
  }
}