/* ============================================================
   Celestia — style.css · premium dark theme
   ============================================================ */
:root {
  --bg: #04050d;
  --bg-alt: #070917;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f2f4fc;
  --muted: #9aa2c0;
  --accent: #7c8cff;
  --accent-2: #b57bff;
  --teal: #5ee6d0;
  --grad: linear-gradient(100deg, #7c8cff, #b57bff);
  --grad-soft: linear-gradient(100deg, rgba(124, 140, 255, 0.16), rgba(181, 123, 255, 0.16));
  --radius: 18px;
  --container: 1140px;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  background-image:
    radial-gradient(1000px 600px at 85% -10%, rgba(181, 123, 255, 0.13), transparent 60%),
    radial-gradient(900px 550px at 0% 5%, rgba(124, 140, 255, 0.13), transparent 60%),
    radial-gradient(1100px 700px at 50% 115%, rgba(94, 230, 208, 0.07), transparent 60%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(124, 140, 255, 0.35); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.25); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
h3 { font-size: 1.14rem; margin-bottom: 8px; }

a { color: inherit; text-decoration: none; }
p { color: var(--muted); }

.grad {
  background: linear-gradient(100deg, #8e9cff, #c99bff, #7ceede, #8e9cff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 9s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 600;
  color: #aab4ff;
  background: var(--grad-soft);
  border: 1px solid rgba(124, 140, 255, 0.28);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 10px rgba(124, 140, 255, 0.9);
}

.section { padding: 110px 0; position: relative; }
.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.004));
  border-block: 1px solid var(--border);
}
.section-lead { max-width: 640px; margin-bottom: 48px; font-size: 1.08rem; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.65, 0.25, 1), transform 0.7s cubic-bezier(0.2, 0.65, 0.25, 1);
  transition-delay: var(--d, 0ms);
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .grad { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ Buttons ============ */
.btn {
  position: relative;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 32px rgba(124, 140, 255, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn-primary:hover { box-shadow: 0 14px 42px rgba(124, 140, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.28); }
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::after { transform: translateX(120%); }

.btn-ghost {
  border-color: var(--border-strong);
  color: var(--text);
  background: var(--surface);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--surface-2); border-color: rgba(124, 140, 255, 0.5); }

.btn-small {
  padding: 10px 22px;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 20px rgba(124, 140, 255, 0.35);
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(4, 5, 13, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.logo svg { filter: drop-shadow(0 0 12px rgba(124, 140, 255, 0.55)); }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a:not(.btn) {
  position: relative;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
  padding: 4px 0;
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:not(.btn):hover { color: var(--text); }
.main-nav a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 96px 0 90px;
  overflow: clip;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: float 14s ease-in-out infinite;
}
.hero::before {
  width: 480px;
  height: 480px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(181, 123, 255, 0.28), transparent 65%);
}
.hero::after {
  width: 420px;
  height: 420px;
  bottom: -140px;
  left: -140px;
  background: radial-gradient(circle, rgba(124, 140, 255, 0.24), transparent 65%);
  animation-delay: -7s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 26px) scale(1.08); }
}

.hero-inner { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 64px;
  align-items: center;
}
.lead {
  max-width: 640px;
  margin: 26px 0 38px;
  font-size: 1.13rem;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-photo { position: relative; }
.hero-photo::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(140deg, rgba(124, 140, 255, 0.75), transparent 35%, transparent 65%, rgba(181, 123, 255, 0.75));
  z-index: 0;
}
.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid transparent;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  display: block;
  background: var(--bg-alt);
}
.hero-badge {
  position: absolute;
  z-index: 2;
  left: -22px;
  bottom: 30px;
  background: rgba(10, 12, 26, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--border-strong);
  color: #fff;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  line-height: 1.35;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-badge span { font-size: 0.84rem; color: var(--muted); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  list-style: none;
  margin-top: 76px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-stats li {
  background: rgba(7, 9, 23, 0.75);
  backdrop-filter: blur(10px);
  padding: 26px 24px;
  text-align: center;
}
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats span { color: var(--muted); font-size: 0.88rem; }

/* ============ Clients marquee ============ */
.clients {
  padding: 40px 0;
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.012);
}
.clients-label {
  text-align: center;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 22px;
  color: var(--muted);
}
.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.clients-row {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
  list-style: none;
  flex-shrink: 0;
  min-width: max-content;
  color: #c3c9e2;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  opacity: 0.6;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee:hover .clients-row { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .clients-row { animation: none; }
}

/* ============ Cards ============ */
.grid { display: grid; gap: 24px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 140, 255, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 140, 255, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(124, 140, 255, 0.12);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid rgba(124, 140, 255, 0.3);
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #aab4ff;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.card p { font-size: 0.95rem; }

/* ============ Steps ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  counter-reset: step;
}
.step {
  position: relative;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.step:hover { transform: translateY(-5px); border-color: rgba(124, 140, 255, 0.4); }
.step-num {
  position: absolute;
  top: 6px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(124, 140, 255, 0.28);
  pointer-events: none;
}
.step h3 { margin: 4px 0 8px; }
.step p { font-size: 0.92rem; }

/* ============ Works ============ */
.work {
  position: relative;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.work:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 140, 255, 0.45);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.5);
}
.work-thumb { position: relative; height: 190px; overflow: hidden; }
.work-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 5, 13, 0.55));
}
.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.65, 0.25, 1);
}
.work:hover .work-thumb img { transform: scale(1.07); }
.work-a { background: linear-gradient(120deg, #2b3a8f, #7c8cff); }
.work-b { background: linear-gradient(120deg, #5a2b8f, #b57bff); }
.work-c { background: linear-gradient(120deg, #1f6b5e, #5ee6d0); }
.work-body { padding: 24px; }
.work-body p { font-size: 0.93rem; }

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aab4ff;
  background: var(--grad-soft);
  border: 1px solid rgba(124, 140, 255, 0.3);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 13px;
}

/* ============ Quote ============ */
.quote-band {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(124, 140, 255, 0.16), transparent 70%),
    radial-gradient(700px 320px at 50% 100%, rgba(181, 123, 255, 0.12), transparent 70%);
}
.quote-band::before {
  content: "“";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 12rem;
  line-height: 1;
  color: rgba(124, 140, 255, 0.14);
  pointer-events: none;
}
.quote-band blockquote {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 860px;
  margin: 0 auto 22px;
  line-height: 1.5;
}
.quote-author { color: var(--muted); font-size: 0.95rem; }

/* ============ Bureaux ============ */
.bureaux-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.bureaux-photo { position: relative; }
.bureaux-photo::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 5px);
  background: linear-gradient(140deg, rgba(94, 230, 208, 0.6), transparent 35%, transparent 65%, rgba(124, 140, 255, 0.6));
}
.bureaux-photo img {
  position: relative;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.5);
  display: block;
  background: var(--bg-alt);
}
.bureaux-points {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-bottom: 34px;
}
.bureaux-points li {
  color: var(--muted);
  font-size: 0.97rem;
  padding-left: 32px;
  position: relative;
}
.bureaux-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 4px 12px rgba(124, 140, 255, 0.4);
}

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.contact-list { list-style: none; display: grid; gap: 22px; }
.contact-list li { color: var(--muted); font-size: 0.97rem; }
.contact-list strong {
  display: block;
  color: #aab4ff;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 5px;
}
.contact-list a { transition: color 0.15s ease; }
.contact-list a:hover { color: var(--text); }

.contact-form {
  position: relative;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--border-strong);
  border-radius: calc(var(--radius) + 4px);
  padding: 36px;
  display: grid;
  gap: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 140, 255, 0.7), transparent);
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #c3c9e2;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  color: var(--text);
  background: rgba(4, 5, 13, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(124, 140, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(124, 140, 255, 0.18);
}
.contact-form ::placeholder { color: #565d7c; }
.form-note { font-size: 0.9rem; color: var(--teal); min-height: 1.2em; }

/* ============ Footer ============ */
.site-footer {
  position: relative;
  border-top: 1px solid var(--border);
  padding: 72px 0 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 140, 255, 0.6), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 48px;
}
.footer-grid h4 {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  color: #aab4ff;
}
.footer-grid a {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 9px;
  transition: color 0.15s ease, transform 0.15s ease;
}
.footer-grid a:hover { color: var(--text); transform: translateX(3px); }
.footer-grid p { font-size: 0.94rem; }
.logo-footer { margin-bottom: 16px; font-size: 1.15rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.84rem; }
.footer-fictif { opacity: 0.55; }

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .cards-3, .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-photo img { height: 340px; }
  .hero-badge { left: 18px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .bureaux-grid { grid-template-columns: 1fr; gap: 40px; }
  .bureaux-photo img { height: 300px; }
}

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .cards-3, .cards-4, .steps { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 60px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: 52px; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(4, 5, 13, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 14px 28px 22px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a:not(.btn) { padding: 11px 0; width: 100%; }
  .main-nav .btn { margin-top: 10px; }
}
