/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== VARIABLES ========== */
:root {
  --brand: #9b0a2c;
  --brand-dark: #7a0823;
  --dark: #1a1a2e;
  --gray: #f5f5f7;
  --text-light: #555;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
}

/* ========== UTILITY ========== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  transition: all .3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all .3s;
  background: transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 10px 0;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg { height: 40px; width: 40px; }
.nav-logo .logo-mark { fill: #fff; transition: fill .3s; }
.nav.scrolled .nav-logo .logo-mark { fill: var(--brand); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-title { font-size: 1.1rem; font-weight: 900; color: #fff; transition: color .3s; }
.nav-logo-sub { font-size: .5rem; font-weight: 700; letter-spacing: 3.5px; color: rgba(255,255,255,.7); transition: color .3s; }
.nav.scrolled .nav-logo-title { color: var(--dark); }
.nav.scrolled .nav-logo-sub { color: var(--text-light); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: color .3s;
  letter-spacing: .5px;
}
.nav.scrolled .nav-links a { color: var(--dark); }
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  background: var(--brand) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
}
.nav-cta:hover { background: var(--brand-dark) !important; }
.nav-lang {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px;
  transition: all .3s;
}
.nav-lang:hover { color: #fff; border-color: rgba(255,255,255,.6); }
.nav.scrolled .nav-lang { color: var(--text-light); border-color: #ddd; }
.nav.scrolled .nav-lang:hover { color: var(--brand); border-color: var(--brand); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; margin: 6px 0; transition: all .3s;
}
.nav.scrolled .nav-toggle span { background: var(--dark); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(26,26,46,.92) 0%, rgba(22,33,62,.85) 50%, rgba(15,52,96,.8) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155,10,44,.2);
  border: 1px solid rgba(155,10,44,.4);
  color: #ff6b8a;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 span {
  background: linear-gradient(135deg, #ff6b8a, var(--brand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-photo {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  border: 3px solid rgba(255,255,255,.1);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-number { font-size: 2rem; font-weight: 900; color: #fff; }
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.5); font-weight: 600; }

/* ========== SERVICES ========== */
.services { background: var(--gray); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s;
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(155,10,44,.15);
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(155,10,44,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: .88rem; color: var(--text-light); line-height: 1.5; }
.icon-svg { width: 24px; height: 24px; }

/* ========== WHY US ========== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-features { display: flex; flex-direction: column; gap: 28px; }
.why-feature { display: flex; gap: 16px; }
.why-feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(155,10,44,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-feature h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.why-feature p { font-size: .88rem; color: var(--text-light); }

/* ========== STATS BAR ========== */
.stats-bar {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  padding: 48px 0;
}
.stats-bar .container { display: flex; justify-content: space-around; text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 900; color: #fff; }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.75); font-weight: 600; }

/* ========== PROJECTS ========== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.project-card.tall { grid-row: span 2; aspect-ratio: auto; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-card:hover img { transform: scale(1.05); }
.project-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  pointer-events: none;
}
.project-label {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 2;
  color: #fff;
}
.project-label span {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff6b8a;
  margin-bottom: 2px;
}
.project-label strong { font-size: .95rem; font-weight: 800; }

/* ========== SECTORS ========== */
.sectors { background: var(--gray); }
.sectors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.sector-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid transparent;
  transition: all .3s;
}
.sector-card:hover { border-color: rgba(155,10,44,.15); box-shadow: var(--shadow); }
.sector-card-img { width: 100%; height: 200px; object-fit: cover; }
.sector-card-body { padding: 32px 36px; }
.sector-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(155,10,44,.08);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.sector-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.sector-card p { font-size: .92rem; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.sector-list { display: flex; flex-wrap: wrap; gap: 8px; }
.sector-list li {
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--gray);
  padding: 4px 12px;
  border-radius: 4px;
}

/* ========== TESTIMONIALS CAROUSEL ========== */
.car-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.car-viewport {
  overflow: hidden;
  flex: 1;
}
.car-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.testimonial-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 32px 28px;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.testimonial-card .testimonial-text {
  flex: 1;
}
.car-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background: #fff;
  color: var(--brand);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.car-btn:hover { background: var(--brand); color: #fff; }
.car-btn:disabled { opacity: .3; cursor: default; }
.car-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.car-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.car-dot.active { background: var(--brand); width: 24px; border-radius: 4px; }
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-size: .95rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
}
.testimonial-name { font-size: .85rem; font-weight: 700; }
.testimonial-location { font-size: .75rem; color: var(--text-light); }

/* ========== AREAS ========== */
.areas-section { background: var(--dark); color: #fff; }
.areas-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.areas-list li {
  background: rgba(255,255,255,.08);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  transition: all .3s;
}
.areas-list li:hover { background: var(--brand); color: #fff; }

/* ========== THUMBTACK WIDGETS ========== */
.tt-widget-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* --- Star widget --- */
#tt-review-widget-star {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 16px 28px;
  box-shadow: var(--shadow);
}
#tt-review-widget-star .tt-logo {
  height: 22px;
  width: auto;
}
#tt-review-widget-star a {
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark);
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding: 0 16px;
  white-space: nowrap;
}
#tt-review-widget-star a:hover { color: var(--brand); }
#tt-review-widget-star #tt-dynamic {
  display: flex;
  align-items: center;
  gap: 4px;
}
#tt-review-widget-star #tt-dynamic img { height: 18px; width: 18px; }
#tt-review-widget-star #tt-dynamic span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-left: 6px;
}

/* --- Review card widget --- */
#tt-review-widget-one {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#tt-review-widget-one > img {
  height: 22px;
  width: auto;
}
#tt-review-widget-one #tt-dynamic {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
#tt-review-widget-one .tt-left img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
#tt-review-widget-one .tt-right { flex: 1; }
#tt-review-widget-one .tt-name {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 4px;
  color: var(--dark);
}
#tt-review-widget-one .tt-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 8px;
}
#tt-review-widget-one .tt-stars img { height: 15px; width: 15px; }
#tt-review-widget-one .tt-stars span {
  font-size: .75rem;
  color: var(--text-light);
  margin-left: 4px;
}
#tt-review-widget-one .tt-right p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 10px;
  font-style: italic;
}
#tt-review-widget-one .tt-right a {
  font-size: .82rem;
  font-weight: 700;
  color: var(--brand);
}
#tt-review-widget-one .tt-right a:hover { text-decoration: underline; }

/* ========== CONTACT ========== */
.contact { background: var(--gray); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.contact-info > p { font-size: .95rem; color: var(--text-light); margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(155,10,44,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-label {
  font-size: .75rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.contact-detail-value { font-size: 1rem; font-weight: 700; }
.contact-detail-value a { color: var(--dark); }
.contact-detail-value a:hover { color: var(--brand); }
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.required-star { color: var(--brand); }
.field-error { display: none; font-size: .78rem; color: #dc2626; margin-top: 4px; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #dc2626; }
.form-group.has-error .field-error { display: block; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  transition: border-color .3s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--brand); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all .3s;
}
.form-submit:hover { background: var(--brand-dark); }

/* ========== FOOTER ========== */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 60px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: 16px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo svg { height: 44px; width: 44px; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.footer-logo-title { font-size: 1.1rem; font-weight: 900; color: #fff; }
.footer-logo-sub { font-size: .5rem; font-weight: 700; letter-spacing: 3.5px; color: rgba(255,255,255,.6); }
.footer h4 {
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: .88rem; transition: color .3s; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.footer-socials a:hover { background: var(--brand); }
.footer-socials svg { width: 16px; height: 16px; fill: #fff; }
.footer-newsletter { display: flex; gap: 8px; }
.footer-newsletter input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: .85rem;
  font-family: inherit;
}
.footer-newsletter button {
  padding: 10px 16px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
}

/* ========== FLOATING CTA ========== */
.float-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 4px 20px rgba(155,10,44,.4);
  transition: all .3s;
  animation: pulse 2s infinite;
}
.float-cta:hover { background: var(--brand-dark); transform: scale(1.05); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(155,10,44,.4); }
  50% { box-shadow: 0 4px 30px rgba(155,10,44,.6); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
  .hero-text { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  .nav-links.active { display: flex; }
  .nav-links a { color: #fff !important; font-size: 1.2rem; }
  .nav-toggle { display: block; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .sectors-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar .container { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: center; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
}

/* ========== HIDDEN ELEMENTS ========== */
.hero-stats, .stats-bar { display: none !important; }
