/* ==========================================================================
   ENGIZ Shipping & Logistics — Landing Page
   Design system: industrial-logistics, brand-red, RTL-first
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Color */
  --bg:        #0E1116;
  --surface:   #FFFFFF;
  --surface-2: #F5F6F8;
  --ink:       #0E1116;
  --ink-muted: #5A6472;
  --accent:    #C1121F;   /* ENGIZ brand maroon-red (sampled from logo) */
  --accent-2:  #E63946;   /* hover/soft accent */
  --accent-dk: #8C0D17;   /* deep press state */
  --line:      #E5E7EB;
  --success:   #16A34A;

  /* Typography */
  --font-ar: "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-en: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
  --section-py: clamp(64px, 9vw, 120px);

  /* Radii */
  --r-card: 14px;
  --r-btn: 8px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-1: 0 8px 24px rgba(14, 17, 22, 0.06);
  --shadow-2: 0 14px 40px rgba(14, 17, 22, 0.12);
  --shadow-accent: 0 10px 28px rgba(193, 18, 31, 0.28);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px; /* offset under sticky header */
}
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-ar);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html[lang="en"] body { font-family: var(--font-en); }

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
input, select, textarea { font: inherit; color: inherit; }

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

/* ---------- 3. Typography scale ---------- */
h1, h2, h3, h4 { margin: 0 0 .4em; font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; color: var(--ink-muted); }
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8em;
}
.tabular { font-variant-numeric: tabular-nums; }

/* ---------- 4. Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { padding-block: var(--section-py); }
section.surface-2 { background: var(--surface-2); }

.grid { display: grid; gap: var(--gutter); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-btn);
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(193, 18, 31, 0.36); }
.btn-primary:active { background: var(--accent-dk); transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }

.btn-arrow { display: inline-block; transition: transform .18s ease; }
html[dir="rtl"] .btn-arrow { transform: scaleX(-1); }
.btn:hover .btn-arrow { transform: translateX(3px); }
html[dir="rtl"] .btn:hover .btn-arrow { transform: scaleX(-1) translateX(3px); }

/* ---------- 6. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 44px; width: auto; }
.brand-name {
  display: none;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}
@media (min-width: 1024px) { .brand-name { display: inline; } }

.nav {
  display: none;
  flex: 1;
}
@media (min-width: 980px) { .nav { display: flex; gap: 28px; } }
.nav a {
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .18s;
}
.nav a:hover { color: var(--accent); }
.nav a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width .25s;
}
.nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-inline-start: auto;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 4px;
  background: var(--surface);
}
.lang-toggle button {
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink-muted);
  transition: all .18s;
}
.lang-toggle button.is-active {
  background: var(--ink);
  color: #fff;
}
.cta-header { display: none; }
@media (min-width: 720px) { .cta-header { display: inline-flex; padding: 11px 18px; font-size: 0.9rem; } }

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-btn);
  border: 1px solid var(--line);
  background: var(--surface);
  position: relative;
  z-index: 60; /* above drawer so close-button stays clickable */
}
@media (min-width: 980px) { .menu-btn { display: none; } }

/* Animated hamburger ↔ X */
.menu-icon {
  position: relative;
  width: 22px;
  height: 16px;
  display: inline-block;
}
.menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease, top .22s ease;
}
.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 7px; }
.menu-icon span:nth-child(3) { top: 14px; }
.menu-btn[aria-expanded="true"] .menu-icon span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
.menu-btn[aria-expanded="true"] .menu-icon span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .menu-icon span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  top: 76px;
  inset-inline: 0;
  height: calc(100vh - 76px);
  height: calc(100dvh - 76px); /* iOS Safari dynamic toolbar */
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 24px var(--gutter) 32px;
  transform: translateY(-110%);
  transition: transform .28s ease;
  z-index: 45;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color .18s, padding-inline-start .18s;
}
.mobile-nav a:not(.btn):hover,
.mobile-nav a:not(.btn):focus-visible { color: var(--accent); }
.mobile-nav .btn {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  padding: 16px;
  border-bottom: 0;
  font-size: 1rem;
}

/* Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 76px 0 0 0;
  background: rgba(14, 17, 22, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 44;
}
.mobile-nav-backdrop[hidden] { display: none; }
.mobile-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Hide drawer markup completely on desktop */
@media (min-width: 980px) {
  .mobile-nav,
  .mobile-nav-backdrop { display: none !important; }
}

/* Lock body scroll when drawer open */
body.no-scroll { overflow: hidden; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  background: var(--bg);
  color: #fff;
  overflow: hidden;
  padding-block: clamp(80px, 12vw, 140px) clamp(64px, 9vw, 110px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(14,17,22,0.86) 0%, rgba(14,17,22,0.55) 60%, rgba(193,18,31,0.45) 100%), url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(193,18,31,0.3) 0%, transparent 50%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 720px; }
.hero .lede {
  color: rgba(255,255,255,0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 620px;
  margin-block: 18px 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-strip {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}
.trust-strip li { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip svg { width: 18px; height: 18px; color: #fff; flex-shrink: 0; }
.trust-strip .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
}
.trust-strip .check svg { width: 13px; height: 13px; }

/* Hero entrance animation */
.fade-up { opacity: 0; transform: translateY(12px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.is-in { opacity: 1; transform: translateY(0); }

/* ---------- 8. Services / Why cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
  border-color: transparent;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(193, 18, 31, 0.08);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.96rem; margin: 0; }

/* ---------- 8b. Testimonial / social proof ---------- */
.testimonial-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .testimonial-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; } }
.testimonial-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-1);
}
.quote-mark {
  position: absolute;
  inset-inline-start: 24px;
  top: -22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: serif;
  padding-top: 16px;
}
html[dir="rtl"] .quote-mark { transform: scaleX(-1); }
.testimonial-card blockquote { margin: 0 0 22px; padding: 0; }
.testimonial-card blockquote p {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.testimonial-card figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 2px;
}
.testimonial-card figcaption span {
  color: var(--ink-muted);
  font-size: 0.92rem;
}
.testimonial-media {
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-2);
}
.testimonial-media img { width: 100%; height: 100%; object-fit: cover; }

.logos-row {
  margin-top: 56px;
  padding: 22px clamp(20px, 3vw, 32px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-around;
  box-shadow: var(--shadow-1);
}
.logos-row li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 700;
}
.logo-ico {
  display: inline-flex;
  width: 30px; height: 30px;
  color: var(--accent);
}
.logo-ico svg { width: 100%; height: 100%; }

/* ---------- 9. Tech section split ---------- */
.split {
  display: grid;
  gap: 56px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 72px; } }
.split-media {
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4 / 5;
  background: var(--surface-2);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.checklist { margin: 24px 0; }
.checklist li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.checklist li:last-child { border-bottom: 0; }
.checklist .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(193, 18, 31, 0.1);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.checklist .check svg { width: 14px; height: 14px; }
.checklist strong { display: block; color: var(--ink); margin-bottom: 2px; }
.checklist span { color: var(--ink-muted); font-size: 0.94rem; }

/* ---------- 10. Coverage stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  background: var(--bg);
  color: #fff;
  border-radius: var(--r-card);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
}
.stat-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(193,18,31,0.25) 100%);
  pointer-events: none;
}
@media (min-width: 720px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
.stat .num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #fff;
  line-height: 1;
}
.stat .label {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}
.stat .accent { color: var(--accent-2); }

/* ---------- 11. About ---------- */
.about-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.1fr 1fr; } }
.about-media {
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-2);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193, 18, 31, 0.08);
  color: var(--accent);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ---------- 12. Contact ---------- */
.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-info { padding-block: 8px; }
.contact-info ul { display: grid; gap: 22px; margin-block: 24px; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-info .ico svg { width: 18px; height: 18px; }
.contact-info strong { display: block; color: var(--ink); margin-bottom: 2px; font-size: 0.92rem; }
.contact-info a, .contact-info span { color: var(--ink-muted); }
.contact-info a:hover { color: var(--accent); }

.map-frame {
  margin-top: 24px;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 240px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-1);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-btn);
  background: var(--surface);
  transition: border-color .18s, box-shadow .18s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(193,18,31,0.12);
}
.field textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.field-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.contact-form .btn { width: 100%; justify-content: center; padding: 16px; }

/* ---------- 13. Footer ---------- */
.site-footer {
  background: var(--bg);
  color: rgba(255,255,255,0.72);
  padding-block: 64px 24px;
}
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase; }
.site-footer a { color: rgba(255,255,255,0.72); transition: color .18s; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand img {
  height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 280px; }
.footer-list li { padding: 6px 0; font-size: 0.94rem; }

.social-row { display: flex; gap: 10px; margin-top: 14px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all .2s;
}
.social-row a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.social-row svg { width: 16px; height: 16px; color: #fff; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
@media (min-width: 720px) { .footer-bottom { flex-direction: row; align-items: center; } }

/* ---------- 14. Misc ---------- */
.lang-en { display: none; }
html[lang="en"] .lang-ar { display: none; }
html[lang="en"] .lang-en { display: inline; }
html[lang="en"] .lang-en[data-block] { display: block; }

/* On EN: switch nav and form/labels to Manrope */
html[lang="en"] body { font-family: var(--font-en); }

/* Document pages (privacy, terms, thanks) */
.doc-page {
  padding-block: clamp(60px, 8vw, 96px);
  max-width: 820px;
  margin-inline: auto;
}
.doc-page h1 { margin-bottom: 8px; }
.doc-page .updated { color: var(--ink-muted); font-size: 0.92rem; margin-bottom: 32px; }
.doc-page h2 { margin-top: 36px; font-size: 1.4rem; }
.doc-page p, .doc-page li { color: var(--ink); }
.doc-page ul { padding-inline-start: 22px; list-style: disc; margin-bottom: 1em; }
.doc-page ul li { padding: 4px 0; }

.thanks-card {
  text-align: center;
  padding-block: clamp(80px, 12vw, 140px);
}
.thanks-card .check-big {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(22,163,74,0.12);
  color: var(--success);
  margin-bottom: 24px;
}
.thanks-card .check-big svg { width: 44px; height: 44px; }

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