/* =============================================================
   Personal Training – Stylesheet
   v2 · 2026-06-01
   Stil: angelehnt an YourSlot – heller Pastell-Mesh-Hintergrund,
   Glas-Karten (backdrop-blur), Pillen-Buttons in Fast-Schwarz,
   große Radien, klare Schrift (Inter), dezente Indigo-Akzente.
   ============================================================= */

/* -- Schriften lokal einbinden (DSGVO) ------------------------
   Vor Live-Gang: WOFF2 nach fonts/ laden und @font-face einkommentieren.
   Bezugsquelle: https://gwfh.mranftl.com/fonts/inter?subsets=latin
   (Inter ist die freie Alternative zu Geist – sehr ähnlicher Look.)

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v13-latin-regular.woff2") format("woff2");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v13-latin-500.woff2") format("woff2");
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v13-latin-600.woff2") format("woff2");
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v13-latin-700.woff2") format("woff2");
  font-weight: 700; font-display: swap;
}
*/

/* Google Fonts CDN bewusst NICHT eingebunden (DSGVO).
   Bis die lokalen WOFF2 in fonts/ liegen, greift der System-Fallback. */

/* =============================================================
   1 · Custom Properties (YourSlot-Palette)
   ============================================================= */
:root {
  /* Flächen */
  --bg: hsl(220 30% 97%);
  --surface: hsla(0 0% 100% / 0.55);      /* Glas */
  --surface-solid: hsl(0 0% 100%);
  --surface-2: hsla(240 20% 50% / 0.06);  /* dezente Tönung */
  --card-border: hsla(0 0% 100% / 0.7);

  /* Dunkle Akzent-Sektion (YourSlot Dark-Glow) */
  --surface-dark: hsl(240 18% 7%);

  /* Primär (Buttons) – Fast-Schwarz wie YourSlot */
  --primary: hsl(240 6% 10%);
  --primary-hover: hsl(240 6% 18%);
  --on-primary: hsl(0 0% 98%);

  /* Dezenter Farbakzent (aus dem Mesh: Indigo) */
  --accent: hsl(244 62% 56%);
  --accent-hover: hsl(244 62% 48%);
  --accent-ghost: hsla(244 62% 56% / 0.10);

  /* Text */
  --text: hsl(240 10% 12%);
  --text-dim: hsl(240 6% 35%);
  --text-muted: hsl(240 5% 50%);
  --text-on-dark: hsl(0 0% 98%);
  --text-on-dark-dim: hsla(0 0% 100% / 0.72);

  /* Linien */
  --border-weak: hsla(240 10% 20% / 0.07);
  --border: hsla(240 10% 20% / 0.12);
  --border-strong: hsla(240 10% 20% / 0.20);

  /* Schrift */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, sans-serif;

  /* Maße */
  --maxw: 1180px;
  --radius: 24px;
  --radius-sm: 16px;
  --radius-pill: 999px;
  --shadow: 0 8px 32px hsla(0 0% 0% / 0.10);
  --shadow-lg: 0 24px 60px hsla(0 0% 0% / 0.14);
  --shadow-sm: 0 1px 2px hsla(0 0% 0% / 0.08);

  --nav-h: 72px;
}

/* =============================================================
   2 · Reset & Basis
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--text);
  background-color: var(--bg);
  /* Pastell-Mesh wie YourSlot – vier farbige Glows */
  background-image:
    radial-gradient(at 10% 0%,  hsla(220 85% 75% / 0.35) 0px, transparent 55%),
    radial-gradient(at 90% 10%, hsla(330 85% 80% / 0.26) 0px, transparent 55%),
    radial-gradient(at 80% 90%, hsla(180 75% 75% / 0.24) 0px, transparent 55%),
    radial-gradient(at 20% 95%, hsla(35 95% 75% / 0.20) 0px, transparent 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "rlig" 1, "calt" 1;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 0.4em;
}

p { margin: 0 0 1em; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

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

ul { margin: 0; padding: 0; list-style: none; }

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

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--primary); color: #fff; padding: 12px 18px; border-radius: 0 0 12px 0; }
.skip-link:focus { left: 0; top: 0; color: #fff; }

/* Glas-Utility */
.glass {
  background-color: var(--surface);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 1px 0 0 hsla(0 0% 100% / 0.5) inset, var(--shadow);
}

/* =============================================================
   3 · Layout
   ============================================================= */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 88px 0; }
.section--alt { background: var(--surface-2); }
.section--dark {
  background-color: var(--surface-dark);
  background-image:
    radial-gradient(at 12% 8%,  hsla(244 80% 58% / 0.42) 0px, transparent 50%),
    radial-gradient(at 88% 22%, hsla(290 70% 52% / 0.28) 0px, transparent 50%),
    radial-gradient(at 75% 95%, hsla(190 80% 48% / 0.22) 0px, transparent 55%);
  color: var(--text-on-dark);
}

.eyebrow {
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; color: var(--accent); margin: 0 0 14px;
}
.section--dark .eyebrow { color: hsl(244 80% 80%); }

.section-head { max-width: 720px; margin: 0 0 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

h2.section-title { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.02em; }

.lead { font-size: 1.16rem; color: var(--text-dim); }
.section--dark .lead { color: var(--text-on-dark-dim); }

/* =============================================================
   4 · Buttons (Pillen, YourSlot-Stil)
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 500; letter-spacing: -0.01em;
  font-size: 0.98rem; line-height: 1;
  padding: 14px 28px; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-align: center;
}
.btn:active { transform: scale(0.98); }

.btn--primary { background: var(--primary); color: var(--on-primary); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--primary-hover); color: var(--on-primary); }

.btn--ghost {
  background: var(--surface); color: var(--text);
  border-color: var(--card-border);
  backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { background: hsla(0 0% 100% / 0.8); color: var(--text); border-color: var(--border-strong); }

.section--dark .btn--ghost, .booking .btn--ghost { background: hsla(0 0% 100% / 0.10); color: #fff; border-color: hsla(0 0% 100% / 0.25); }
.section--dark .btn--ghost:hover, .booking .btn--ghost:hover { background: hsla(0 0% 100% / 0.18); color: #fff; }

.btn--lg { padding: 17px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* =============================================================
   5 · Navigation
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  background: hsla(220 30% 97% / 0.7);
  backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border-weak);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.nav__brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.18rem; letter-spacing: -0.02em; color: var(--text); }
.nav__brand:hover { color: var(--text); }
.nav__logo { height: 36px; width: auto; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-weight: 500; font-size: 0.95rem; letter-spacing: -0.01em;
  color: var(--text-dim); padding: 8px 14px; border-radius: var(--radius-pill);
  transition: background .2s ease, color .2s ease;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--text); background: hsla(240 10% 20% / 0.06); }
.nav__cta { margin-left: 8px; }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; width: 44px; height: 44px; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 26px; height: 2px; background: var(--text);
  position: relative; border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle span::before { position: absolute; top: -8px; }
.nav__toggle span::after { position: absolute; top: 8px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translateY(-8px) rotate(-45deg); }

/* =============================================================
   6 · Hero (hell, auf dem Mesh)
   ============================================================= */
.hero { position: relative; overflow: hidden; }
/* dezenter zusätzlicher Glow im Hero, optional Foto später als background-image */
.hero__media {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(at 70% 20%, hsla(244 70% 70% / 0.18) 0px, transparent 50%);
  background-size: cover; background-position: center;
}
.hero__inner { position: relative; padding: clamp(80px, 12vw, 130px) 0 clamp(64px, 9vw, 100px); max-width: 800px; }
.hero h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); color: var(--text); margin-bottom: 0.28em; letter-spacing: -0.03em; }
.hero h1 .accent {
  display: block;
  background: linear-gradient(100deg, hsl(244 62% 56%), hsl(290 65% 58%) 45%, hsl(200 80% 52%));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.hero__sub { font-size: clamp(1.1rem, 2.2vw, 1.35rem); color: var(--text-dim); max-width: 580px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--text-dim);
  background: var(--surface); border: 1px solid var(--card-border);
  backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 8px 16px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.hero__badge svg { flex: none; color: var(--accent); }

/* =============================================================
   7 · Karten / Grids (Glas)
   ============================================================= */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background-color: var(--surface); border: 1px solid var(--card-border);
  backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-radius: var(--radius); padding: 32px;
  box-shadow: 0 1px 0 0 hsla(0 0% 100% / 0.5) inset, var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 1px 0 0 hsla(0 0% 100% / 0.5) inset, var(--shadow-lg); }
.card__icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--accent-ghost); color: var(--accent); margin-bottom: 20px; }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-dim); margin-bottom: 18px; }
.card__link { margin-top: auto; font-weight: 600; font-size: 0.95rem; color: var(--accent); display: inline-flex; align-items: center; gap: 8px; }
.card__link svg { transition: transform .15s ease; }
.card__link:hover svg { transform: translateX(4px); }

.media-card { background: var(--surface); border: 1px solid var(--card-border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media-card__img { aspect-ratio: 4 / 3; background: var(--surface-2); display: grid; place-items: center; color: var(--text-muted); font-size: 0.85rem; background-size: cover; background-position: center; }
.media-card__body { padding: 26px 28px; }

/* Bild-Platzhalter */
.ph {
  background: var(--surface);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  display: grid; place-items: center; color: var(--text-muted);
  font-size: 0.82rem; text-align: center; padding: 16px; line-height: 1.5;
}

/* =============================================================
   8 · Split / Über-mich
   ============================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media { aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }

.stats { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 28px; }
.stat__num { font-weight: 700; font-size: 2.4rem; letter-spacing: -0.03em; color: var(--text); line-height: 1; }
.stat__label { font-size: 0.9rem; color: var(--text-muted); }

/* =============================================================
   9 · Ablauf / Schritte
   ============================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding-top: 8px; }
.step__num { font-weight: 700; font-size: 1.1rem; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: hsla(0 0% 100% / 0.12); border: 1px solid hsla(0 0% 100% / 0.2); color: #fff; margin-bottom: 16px; }
.section--dark .step h3 { color: #fff; }
.section--dark .step p { color: var(--text-on-dark-dim); }

/* =============================================================
   10 · Buchung / Booking-CTA (Dark-Glow)
   ============================================================= */
.booking {
  background-color: var(--surface-dark);
  background-image:
    radial-gradient(at 15% 15%, hsla(244 80% 58% / 0.45) 0px, transparent 55%),
    radial-gradient(at 85% 85%, hsla(290 70% 52% / 0.30) 0px, transparent 55%);
  color: var(--text-on-dark); border-radius: var(--radius);
  padding: clamp(36px, 6vw, 64px); text-align: center;
  border: 1px solid hsla(0 0% 100% / 0.08);
}
.booking h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); }
.booking p { color: var(--text-on-dark-dim); max-width: 560px; margin: 0 auto 28px; }
.booking__note { font-size: 0.85rem; color: hsla(0 0% 100% / 0.5); margin-top: 18px; }

.booking-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--surface-solid); }
.booking-embed iframe { width: 100%; min-height: 640px; border: 0; display: block; }

/* =============================================================
   11 · Formular
   ============================================================= */
.form { display: grid; gap: 18px; max-width: 620px; }
.form__row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-weight: 600; font-size: 0.85rem; color: var(--text-dim); letter-spacing: -0.01em; }
.field input, .field textarea, .field select {
  font-family: var(--font-sans); font-size: 1rem; color: var(--text);
  background: hsla(0 0% 100% / 0.7); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 16px; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px var(--accent-ghost); }
.field textarea { resize: vertical; min-height: 130px; }
.field--check { flex-direction: row; align-items: flex-start; gap: 10px; }
.field--check input { width: auto; margin-top: 4px; }
.field--check label { font-weight: 400; font-size: 0.92rem; color: var(--text-dim); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* =============================================================
   12 · Kontakt-Infos
   ============================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-list { display: grid; gap: 18px; margin-top: 10px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item svg { flex: none; color: var(--accent); margin-top: 3px; }
.contact-item a { color: var(--text); }
.contact-item a:hover { color: var(--accent); }

/* =============================================================
   13 · FAQ
   ============================================================= */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: var(--surface); border: 1px solid var(--card-border);
  backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-radius: var(--radius-sm); padding: 4px 24px; margin-bottom: 12px; box-shadow: var(--shadow-sm);
}
.faq summary { font-weight: 600; font-size: 1.06rem; padding: 18px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--accent); line-height: 1; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 18px; color: var(--text-dim); margin: 0; }

/* =============================================================
   14 · Footer
   ============================================================= */
.footer { background: var(--surface-dark); color: var(--text-on-dark-dim); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; letter-spacing: -0.01em; }
.footer a { color: var(--text-on-dark-dim); }
.footer a:hover { color: #fff; }
.footer__links { display: grid; gap: 10px; }
.footer__brand { font-weight: 700; font-size: 1.3rem; color: #fff; margin-bottom: 12px; letter-spacing: -0.02em; }
.footer__bottom { border-top: 1px solid hsla(0 0% 100% / 0.1); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: 0.85rem; color: hsla(0 0% 100% / 0.5); }
.footer__bottom a { color: hsla(0 0% 100% / 0.5); }
.footer__bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* Platzhalter-Markierung */
.todo { background: hsla(45 100% 60% / 0.18); color: hsl(38 80% 32%); border: 1px dashed hsl(42 80% 50%); padding: 1px 7px; border-radius: 6px; font-size: 0.88em; font-weight: 500; }
.section--dark .todo, .booking .todo, .footer .todo { color: hsl(45 100% 78%); background: hsla(45 100% 70% / 0.14); border-color: hsla(45 100% 70% / 0.4); }

/* =============================================================
   15 · Cookie-Banner
   ============================================================= */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300; border-radius: var(--radius); }
.cookie-banner[hidden] { display: none; }
.cookie-banner__inhalt {
  max-width: var(--maxw); margin: 0 auto; padding: 22px 24px;
  background: hsla(240 18% 10% / 0.92); color: var(--text-on-dark);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsla(0 0% 100% / 0.12); border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.cookie-banner__titel { font-size: 1.1rem; color: #fff; margin-bottom: 6px; }
.cookie-banner__text { font-size: 0.92rem; color: var(--text-on-dark-dim); margin-bottom: 16px; max-width: 760px; }
.cookie-banner__text a { color: hsl(244 80% 80%); }
.cookie-banner__buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.cookie-banner__button {
  background: hsla(0 0% 100% / 0.1); color: #fff; border: 1px solid hsla(0 0% 100% / 0.25);
  padding: 12px 24px; font-size: 0.95rem; font-weight: 500; font-family: var(--font-sans);
  letter-spacing: -0.01em; cursor: pointer; border-radius: var(--radius-pill); flex: 1; min-width: 160px;
  transition: background .2s ease;
}
.cookie-banner__button:hover { background: hsla(0 0% 100% / 0.2); }

/* =============================================================
   16 · Utilities & Animation
   ============================================================= */
.center { text-align: center; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   17 · Responsive
   ============================================================= */
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split__media { aspect-ratio: 4 / 3; max-height: 420px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }

  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: hsla(220 30% 97% / 0.96); border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: 16px 24px 24px; transform: translateY(-120%); transition: transform .25s ease; box-shadow: var(--shadow-lg);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__link { padding: 12px 14px; font-size: 1rem; }
  .nav__cta { margin: 8px 0 0; }
  .nav__toggle { display: block; }

  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
