/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #e31b23;
  --red-dark: #b8151c;
  --black: #0e0e0e;
  --dark: #1a1a1a;
  --grey: #f5f5f5;
  --mid-grey: #888;
  --white: #ffffff;
  --text: #222;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --transition: 0.3s ease;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.6; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-body); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; }

.accent { color: var(--red); }
.section-label {
  font-family: var(--font-display);
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--mid-grey);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.btn-large { padding: 1rem 2.5rem; font-size: 1rem; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo img { height: 42px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { background: var(--grey); color: var(--red); }

.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--red-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { height: 2.5px; width: 24px; background: var(--black); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.82) 0%, rgba(20,20,20,0.65) 60%, rgba(227,27,35,0.25) 100%);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2rem 4rem;
  color: #fff;
}
.hero-badge {
  display: inline-block;
  background: rgba(227,27,35,0.9);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero-content h1 { margin-bottom: 1.2rem; max-width: 700px; }
.hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 2rem; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--red); line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity:0.3; } 50% { opacity:1; } }

/* ===== WHY STRIP ===== */
.why-strip {
  background: var(--red);
  color: #fff;
  padding: 1rem 2rem;
}
.why-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.why-item { font-size: 0.9rem; font-weight: 500; }
.why-sep { color: rgba(255,255,255,0.4); font-size: 1.2rem; }

/* ===== SERVICES ===== */
.services-section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  text-align: left;
  margin-top: 1rem;
}
.service-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.service-card.featured { border-color: var(--red); border-width: 2px; }
.service-card.cta-card { background: var(--black); color: #fff; border-color: var(--black); }
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { color: var(--mid-grey); font-size: 0.95rem; }
.service-card.cta-card p { color: rgba(255,255,255,0.7); }
.service-list { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.service-list li { font-size: 0.9rem; color: var(--mid-grey); padding-left: 1.2rem; position: relative; }
.service-list li::before { content: "→"; position: absolute; left: 0; color: var(--red); }
.service-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== PORTFOLIO ===== */
.portfolio-section {
  padding: 6rem 2rem;
  background: var(--black);
  text-align: center;
  color: #fff;
}
.portfolio-section h2, .portfolio-section .section-label { color: #fff; }
.portfolio-section .section-sub { color: rgba(255,255,255,0.5); }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.portfolio-card { border-radius: 12px; overflow: hidden; position: relative; }
.portfolio-card.large { grid-row: span 2; }

.portfolio-img-wrap { position: relative; overflow: hidden; height: 100%; min-height: 250px; }
.portfolio-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-card:hover .portfolio-img-wrap img { transform: scale(1.06); }

.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-info { text-align: left; color: #fff; }
.portfolio-tag {
  background: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.portfolio-info h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.portfolio-info p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.portfolio-cta { margin-top: 3rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.portfolio-cta p { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* ===== ABOUT ===== */
.about-section { padding: 6rem 2rem; background: var(--grey); }
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: 10px;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
}
.about-text .section-label { margin-bottom: 0.5rem; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: #555; margin-bottom: 1rem; font-size: 1rem; }

.about-highlights { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0 2rem; }
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
}
.highlight-icon { font-size: 1.5rem; }
.about-highlight strong { display: block; font-weight: 600; margin-bottom: 0.2rem; }
.about-highlight p { color: var(--mid-grey); font-size: 0.9rem; margin: 0; }

/* ===== TEAM ===== */
.team-section {
  padding: 6rem 0 6rem;
  background: #fff;
  text-align: center;
  overflow: hidden;
}
.team-section h2, .team-section .section-label, .team-section .section-sub {
  padding: 0 2rem;
}

.team-slider {
  overflow: hidden;
  margin-top: 2.5rem;
  padding: 1rem 0;
}
.team-wrapper {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: teamScroll 22s linear infinite;
}
.team-wrapper:hover { animation-play-state: paused; }

@keyframes teamScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.team-card {
  flex: 0 0 230px;
  background: var(--grey);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.team-img-wrap { width: 100%; height: 210px; overflow: hidden; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.placeholder-img {
  background: linear-gradient(135deg, var(--black), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-img span {
  font-size: 4rem;
  font-family: var(--font-display);
  color: var(--red);
  opacity: 0.7;
}

.team-info { padding: 1rem; }
.team-info h3 { font-size: 1rem; font-weight: 700; }
.team-info p { font-size: 0.85rem; color: var(--mid-grey); margin-top: 0.2rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 6rem 2rem;
  background: var(--grey);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2rem auto 0;
}
.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: left;
  border: 1px solid #eee;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card.featured-testimonial { border-color: var(--red); border-width: 2px; }
.stars { color: #f5a623; font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-card p { color: #444; font-style: italic; font-size: 0.97rem; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--mid-grey); }

/* ===== PRICING ===== */
.pricing-section {
  background: var(--black);
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}
.pricing-inner { max-width: 750px; margin: 0 auto; }
.pricing-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.pricing-section h2 { font-size: 2.5rem; margin-bottom: 0.75rem; }
.pricing-section > .pricing-inner > p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.pricing-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.pf {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--black);
  padding: 0;
  text-align: center;
  color: #fff;
}
.how-it-works h2 { color: #fff; }
.how-it-works .section-label { color: var(--red); }
.how-it-works .section-sub { color: rgba(255,255,255,0.5); }

.hiw-inner { max-width: 1200px; margin: 0 auto; }

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 4rem;
  align-items: start;
}

/* Red connecting line */
.hiw-line {
  position: absolute;
  top: 2.2rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--red);
  z-index: 0;
}

.hiw-step { position: relative; z-index: 1; }

.hiw-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.hiw-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.hiw-step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hiw-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hiw-line { display: none; }
}

@media (max-width: 480px) {
  .hiw-steps { grid-template-columns: 1fr; }
}

/* ===== CONTACT ===== */
.contact-section { padding: 6rem 2rem; background: #fff; }
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .section-label { margin-bottom: 0.5rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: #555; margin-bottom: 2rem; }

.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-method:hover { border-color: var(--red); background: #fff8f8; }
.cm-icon { font-size: 1.5rem; }
.contact-method strong { display: block; font-weight: 600; font-size: 0.9rem; }
.contact-method span { font-size: 0.85rem; color: var(--mid-grey); }

.contact-form-wrap {
  background: var(--grey);
  padding: 2.5rem;
  border-radius: 16px;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.8rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: #fff;
  transition: border-color 0.2s;
  width: 100%;
  color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: rgba(255,255,255,0.8); padding: 4rem 2rem 0; }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { margin-bottom: 1rem; /*filter: brightness(0) invert(1);*/ }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  background: rgba(255,255,255,0.08);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s;
}
.footer-socials a:hover { background: var(--red); }

.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
.footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p, .footer-bottom a { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--red); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25d366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 2.1rem;
  z-index: 999;
  background: var(--black);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--red); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-images { max-width: 500px; margin: 0 auto 3rem; }
  .about-img-secondary { right: -1rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    display: none;
    border-bottom: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 0.8rem 1rem; width: 100%; border-radius: var(--radius); }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding-top: 6rem; }
  .hero-stats { gap: 1.2rem; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.large { grid-row: span 1; }

  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .why-strip-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .why-sep { display: none; }

  .services-grid { grid-template-columns: 1fr; }

  .hero-scroll-hint { display: none; }
}
