:root {
  --bg-dark: #12151a;
  --bg-dark-alt: #191d24;
  --bg-light: #f7f5f1;
  --bg-light-alt: #efebe3;
  --text-light: #f5f3ef;
  --text-light-muted: rgba(245, 243, 239, 0.68);
  --text-dark: #1c1f24;
  --text-dark-muted: #666d75;
  --accent: #2f6fed;
  --accent-light: #4f86f7;
  --accent-dark: #1d4ed8;
  --line-light: rgba(28, 31, 36, 0.1);
  --line-dark: rgba(245, 243, 239, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1180px;
  --accent-gradient: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 55%, var(--accent-dark) 100%);
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
  --shadow-md: 0 20px 45px -20px rgba(18, 21, 26, 0.35);
  --shadow-lg: 0 30px 70px -25px rgba(18, 21, 26, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

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

.section { padding: 130px 0; position: relative; }
@media (max-width: 640px) { .section { padding: 90px 0; } }

.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-intro { margin-top: 18px; color: var(--text-dark-muted); font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 11px 22px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.btn-accent {
  background: var(--accent-gradient);
  color: var(--text-light);
  box-shadow: 0 14px 30px -12px rgba(47, 111, 237, 0.55);
}
.btn-accent:hover { filter: brightness(1.08) saturate(1.05); transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(47, 111, 237, 0.6); }

.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(245, 243, 239, 0.3);
}
.btn-ghost:hover { background: rgba(245, 243, 239, 0.1); border-color: rgba(245, 243, 239, 0.6); transform: translateY(-2px); }

/* ---------- Photo treatment ---------- */
.photo { position: relative; overflow: hidden; border-radius: var(--radius); background: #1b1e23; }
.photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) contrast(1.06) brightness(0.98);
  transition: transform 0.8s var(--ease);
}
.photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(18,21,26,0.32) 0%, rgba(18,21,26,0) 55%), linear-gradient(0deg, rgba(18,21,26,0.28), transparent 45%);
  pointer-events: none;
}

/* ---------- Progress bar ---------- */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
  z-index: 2000; transition: width 0.1s linear;
}

/* ---------- Header ---------- */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
#site-header.scrolled {
  padding: 14px 0;
  background: rgba(18, 21, 26, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.5);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark { width: 46px; height: 46px; color: var(--accent); }
.logo-mark svg { width: 100%; height: 100%; fill: currentColor; stroke: none; }
.logo-text { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.7rem; line-height: 1; letter-spacing: -0.01em; color: var(--text-light); }
.logo-text em { display: block; font-style: normal; font-weight: 500; font-size: 0.66rem; line-height: 1; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light-muted); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--text-light-muted); position: relative; padding: 4px 0; transition: color 0.3s; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-light); }
.nav-links a.active::after { width: 100%; }

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

#menu-toggle { display: none; flex-direction: column; gap: 5px; width: 26px; }
#menu-toggle span { display: block; height: 2px; width: 100%; background: var(--text-light); transition: transform 0.35s var(--ease), opacity 0.3s; }
#menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-toggle.open span:nth-child(2) { opacity: 0; }
#menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; color: var(--text-light);
}
.hero-media { position: absolute; inset: -12% 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.1) brightness(0.75); will-change: transform; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,17,21,0.75) 0%, rgba(15,17,21,0.55) 45%, rgba(15,17,21,0.92) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 90px; max-width: 780px; }
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); margin-bottom: 24px; }
.hero-sub { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--text-light-muted); max-width: 560px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-light-muted);
  transition: opacity 0.4s;
}
.scroll-cue span { width: 1px; height: 34px; background: linear-gradient(var(--text-light-muted), transparent); }
.scroll-cue svg { width: 18px; height: 18px; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(6px); opacity: 1; } }

/* ---------- Stats ---------- */
.stats-wrap { position: relative; z-index: 3; margin-top: -70px; }
.stats-card {
  background: var(--bg-dark-alt);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 44px 30px;
  color: var(--text-light);
}
.stat { text-align: center; border-right: 1px solid var(--line-dark); display: flex; flex-direction: column; gap: 6px; }
.stat:last-child { border-right: none; }
.stat-number { font-family: 'Outfit', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--accent); }
.stat-label { font-size: 0.82rem; color: var(--text-light-muted); letter-spacing: 0.02em; }

@media (max-width: 640px) {
  .stats-card { grid-template-columns: 1fr; row-gap: 24px; }
  .stat { border-right: none; border-bottom: 1px solid var(--line-dark); padding-bottom: 20px; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 80px; align-items: center; }
.about-media { position: relative; }
.about-media .photo { aspect-ratio: 4/5; }
.about-media-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--accent-gradient); color: var(--text-light);
  width: 116px; height: 116px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; text-align: center; line-height: 1.25;
  box-shadow: var(--shadow-md);
}
.about-media-badge svg { width: 22px; height: 22px; fill: var(--text-light); stroke: none; }

.about-text p { color: var(--text-dark-muted); margin-bottom: 28px; max-width: 480px; }
.check-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-weight: 500; border-top: 1px solid var(--line-light); }
.check-list li:first-child { border-top: none; }
.check-list svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-media { max-width: 420px; margin: 0 auto; }
}

/* ---------- Services ---------- */
.services { background: var(--bg-light-alt); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 12px 30px -20px rgba(28,31,36,0.25);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service-card .photo { aspect-ratio: 4/3; border-radius: 0; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover .photo img { transform: scale(1.08); }
.service-body { padding: 30px 26px 32px; position: relative; }
.service-icon {
  position: absolute; top: -26px; left: 26px; width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-gradient); color: var(--text-light); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 22px -8px rgba(47,111,237,0.6);
}
.service-icon svg { width: 24px; height: 24px; }
.service-body h3 { font-size: 1.18rem; margin: 14px 0 10px; }
.service-body p { color: var(--text-dark-muted); font-size: 0.94rem; }

@media (max-width: 1080px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

.service-grid .service-card:nth-child(1) { transition-delay: 0s; }
.service-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.service-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.service-grid .service-card:nth-child(4) { transition-delay: 0.3s; }

/* ---------- Process timeline ---------- */
.process { background: var(--bg-dark); color: var(--text-light); }
.process .eyebrow { color: var(--accent-light); }
.process h2 { color: var(--text-light); }

.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-top: 10px; }
.timeline-line {
  position: absolute; top: 27px; left: 0; right: 0; height: 2px;
  background: var(--accent); transform-origin: left center; transform: scaleX(0);
  transition: transform 1.3s var(--ease);
}
.timeline-line.in-view { transform: scaleX(1); }

.timeline-step { position: relative; padding-top: 60px; }
.step-num {
  position: absolute; top: 0; left: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-dark-alt); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--accent);
}
.timeline-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.timeline-step p { color: var(--text-light-muted); font-size: 0.92rem; }

.timeline .timeline-step:nth-child(2) { transition-delay: 0.1s; }
.timeline .timeline-step:nth-child(3) { transition-delay: 0.2s; }
.timeline .timeline-step:nth-child(4) { transition-delay: 0.3s; }
.timeline .timeline-step:nth-child(5) { transition-delay: 0.4s; }

@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; gap: 46px; padding-left: 30px; }
  .timeline-line { top: 0; bottom: 0; left: 27px; right: auto; width: 2px; height: auto; transform: scaleY(0); transform-origin: top center; }
  .timeline-line.in-view { transform: scaleY(1); }
  .step-num { position: absolute; left: -30px; top: 0; width: 44px; height: 44px; }
  .timeline-step { padding-top: 0; padding-left: 40px; }
}

/* ---------- Portfolio ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.project-card .photo { aspect-ratio: 3/4; border-radius: 0; }
.project-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 20px;
  background: linear-gradient(0deg, rgba(15,17,21,0.92), transparent);
  color: var(--text-light); transform: translateY(12px); opacity: 0.9;
  transition: transform 0.5s var(--ease);
}
.project-card figcaption h3 { font-size: 1.02rem; margin-bottom: 4px; }
.project-card figcaption span { font-size: 0.78rem; color: var(--accent-light); text-transform: uppercase; letter-spacing: 0.06em; }
.project-card:hover .photo img { transform: scale(1.1); }
.project-card:hover figcaption { transform: translateY(0); }

@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ---------- Quote banner ---------- */
.quote-banner { position: relative; padding: 160px 0; color: var(--text-light); overflow: hidden; }
.quote-media { position: absolute; inset: 0; z-index: 0; }
.quote-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7) brightness(0.6); }
.quote-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,17,21,0.75), rgba(15,17,21,0.85)); }
.quote-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.quote-mark { width: 42px; height: 42px; color: var(--accent); fill: var(--accent); stroke: none; opacity: 0.9; }
.quote-content p { font-family: 'Outfit', sans-serif; font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 600; line-height: 1.4; }
.quote-author { color: var(--text-light-muted); font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testimonials { text-align: center; }
.testimonial-slider { max-width: 720px; margin: 0 auto; }
.testimonial-track { position: relative; min-height: 190px; }
.testimonial-slide {
  position: absolute; inset: 0; opacity: 0; transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); pointer-events: none;
}
.testimonial-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.testimonial-slide p { font-family: 'Outfit', sans-serif; font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 500; color: var(--text-dark); margin-bottom: 20px; }
.testimonial-slide cite { font-style: normal; font-weight: 600; }
.testimonial-slide cite span { display: block; font-weight: 400; color: var(--text-dark-muted); font-size: 0.88rem; margin-top: 2px; }

.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.testimonial-dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--line-light); transition: background 0.3s, transform 0.3s; }
.testimonial-dots button.active { background: var(--accent); transform: scale(1.3); }

/* ---------- Contact ---------- */
.contact { background: var(--bg-dark-alt); color: var(--text-light); }
.contact .eyebrow { color: var(--accent-light); }
.contact h2 { color: var(--text-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; }
.contact .section-intro { color: var(--text-light-muted); }

.contact-list { margin-top: 34px; display: flex; flex-direction: column; gap: 22px; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(79,134,247,0.28), rgba(47,111,237,0.08));
  color: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-list li div { display: flex; flex-direction: column; }
.contact-list li strong { font-size: 0.92rem; }
.contact-list li span { color: var(--text-light-muted); font-size: 0.92rem; }
.contact-list li.urgent strong { color: var(--accent-light); }

.contact-form {
  background: var(--bg-dark); border-radius: var(--radius); padding: 40px;
  display: flex; flex-direction: column; gap: 20px; box-shadow: var(--shadow-md); position: relative;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-size: 0.85rem; color: var(--text-light-muted); }
.contact-form input, .contact-form textarea {
  background: rgba(245,243,239,0.05); border: 1.5px solid var(--line-dark); border-radius: var(--radius-sm);
  padding: 13px 16px; color: var(--text-light); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--accent); background: rgba(245,243,239,0.08);
}
.contact-form textarea { resize: vertical; min-height: 90px; }

.form-success {
  display: none; align-items: center; gap: 10px; color: var(--accent-light);
  font-size: 0.9rem; font-weight: 500; padding-top: 4px;
}
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-success.show { display: flex; }
.contact-form.submitted .btn { display: none; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: var(--text-light-muted); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid var(--line-dark); }
.footer-brand p { margin: 16px 0 20px; font-size: 0.92rem; max-width: 280px; }
.logo-text.light { color: var(--text-light); }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center; transition: background 0.3s, border-color 0.3s;
}
.socials a:hover { background: var(--accent); border-color: var(--accent); color: var(--text-light); }
.socials svg { width: 17px; height: 17px; fill: currentColor; stroke: none; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { color: var(--text-light); font-size: 0.92rem; margin-bottom: 6px; }
.footer-col a, .footer-col span { font-size: 0.9rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent-light); }

.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 26px 24px; font-size: 0.82rem; }

@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---------- Back to top ---------- */
#back-to-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%; background: var(--accent-gradient); color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), filter 0.3s;
}
#back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-to-top:hover { filter: brightness(1.08); }
#back-to-top svg { width: 20px; height: 20px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 3000; background: rgba(15,17,21,0.94);
  display: flex; align-items: center; justify-content: center; padding: 40px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox figure { max-width: 900px; width: 100%; text-align: center; }
.lightbox img { width: 100%; max-height: 72vh; object-fit: cover; border-radius: var(--radius); }
.lightbox figcaption { color: var(--text-light-muted); margin-top: 18px; font-size: 0.92rem; }
.lightbox-close {
  position: absolute; top: 26px; right: 30px; font-size: 2rem; line-height: 1; color: var(--text-light);
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(245,243,239,0.1); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Mobile nav ---------- */
@media (max-width: 900px) {
  #menu-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 80vw);
    background: var(--bg-dark-alt); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 28px; padding: 40px;
    transform: translateX(100%); transition: transform 0.5s var(--ease);
    box-shadow: -20px 0 50px rgba(0,0,0,0.35);
  }
  .nav-links.open { transform: translateX(0); }
  .header-actions .btn-sm { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
