/* ===== Services Section ===== */
.services {
  background-color: var(--bg-color);
}

/* Header */
.srv-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.srv-label span {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--primary-color);
  font-weight: 500;
}
.srv-label p {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--body-text-color);
  font-weight: 500;
}
.srv-heading {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}
.srv-sub {
  font-size: 15px;
  color: var(--body-text-color);
  max-width: 520px;
  line-height: 1.8;
}

/* Grid */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(117, 205, 217, 0.1);
  border-left: 1px solid rgba(117, 205, 217, 0.1);
}

/* Card */
.srv-card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: var(--bg-secondary);
  border-right: 1px solid rgba(117, 205, 217, 0.1);
  border-bottom: 1px solid rgba(117, 205, 217, 0.1);
  overflow: hidden;
  transition: background 0.35s;
}
.srv-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.4s ease;
}
.srv-card:hover::after {
  width: 100%;
}
.srv-card:hover {
  background: rgba(117, 205, 217, 0.04);
}

/* Ghost number */
.srv-num {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Libre Baskerville", serif;
  color: rgba(117, 205, 217, 0.06);
  pointer-events: none;
  transition: color 0.35s;
}
.srv-card:hover .srv-num {
  color: rgba(117, 205, 217, 0.1);
}

/* Icon */
.srv-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(117, 205, 217, 0.1);
  border-radius: 10px;
  color: var(--primary-color);
  font-size: 1.15rem;
  margin-bottom: 1.4rem;
  transition: background 0.35s, transform 0.35s;
}
.srv-card:hover .srv-icon {
  background: rgba(117, 205, 217, 0.2);
  transform: scale(1.1);
}

/* Text */
.srv-card h3 {
  font-family: "Gotham";
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.7rem;
}
.srv-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--body-text-color);
  margin-bottom: 0;
}

/* Arrow link */
.srv-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 1.4rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.srv-card:hover .srv-arrow {
  opacity: 1;
  transform: translateY(0);
}
.srv-arrow i {
  font-size: 11px;
  transition: transform 0.3s;
}
.srv-arrow:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .srv-grid {
    grid-template-columns: 1fr;
  }
  .srv-card {
    padding: 2rem 1.5rem 1.5rem;
  }
  .srv-arrow {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== End Services Section ===== */
/* ===== About Us Section ===== */
.about-us {
  padding: 100px 0;
  background: var(--bg-color);
}

/* Image collage */
.about-img-wrap {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  overflow: hidden;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover .about-img-main img { transform: scale(1.04); }

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 42%;
  height: 55%;
  overflow: hidden;
  border: 4px solid var(--bg-color);
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover .about-img-secondary img { transform: scale(1.04); }

/* Floating badge */
.about-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--primary-color);
  color: var(--bg-color);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  z-index: 2;
}
.about-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.about-badge-num {
  font-family: "Libre Baskerville", serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--bg-color);
}
.about-badge-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(10,22,40,0.75);
}
.about-badge-divider {
  width: 1px;
  height: 36px;
  background: rgba(10,22,40,0.25);
}

/* Content side */
.about-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
}
.about-label span {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--primary-color);
  font-weight: 500;
}
.about-label p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--body-text-color);
  font-weight: 500;
  margin: 0;
}
.about-heading {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.about-heading em {
  font-style: italic;
  color: var(--primary-color);
}
.about-text {
  font-size: 15px;
  color: var(--body-text-color);
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* Feature list */
.about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--body-text-color);
  font-weight: 400;
}
.about-feat-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(117,205,217,0.12);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

@media (max-width: 991px) {
  .about-img-wrap { height: 380px; }
  .about-badge { left: 0; bottom: 1.5rem; }
}
@media (max-width: 767px) {
  .about-us { padding: 70px 0; }
  .about-img-wrap { height: 300px; }
  .about-badge { display: none; }
  .about-img-secondary { display: none; }
  .about-img-main { width: 100%; }
}
/* ===== End About Us ===== */

/* ===== News Section ===== */
.news {
  padding: 100px 0;
  background: var(--bg-secondary);
}

/* Header */
.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.news-header-left { flex: 0 0 auto; }
.news-header-right {
  flex: 1;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

/* Grid */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.news-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Card base */
.news-card {
  background: var(--bg-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  border-bottom: 2px solid transparent;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
}

.news-card-img {
  overflow: hidden;
  flex-shrink: 0;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.05); }

/* Featured card */
.news-card--featured .news-card-img { height: 280px; }
.news-card--featured .news-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.news-card--featured .news-excerpt {
  font-size: 14px;
  color: var(--body-text-color);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

/* Small card */
.news-card--small {
  flex-direction: row;
  align-items: stretch;
}
.news-card--small .news-card-img {
  width: 160px;
  min-width: 160px;
  height: auto;
}
.news-card--small .news-title { font-size: 0.95rem; }

/* Card body */
.news-card-body {
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Meta row */
.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.news-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(117,205,217,0.1);
  color: var(--primary-color);
  border: 1px solid rgba(117,205,217,0.25);
}
.news-cat--design {
  background: rgba(77,191,163,0.1);
  color: var(--accent-color);
  border-color: rgba(77,191,163,0.25);
}
.news-cat--tech {
  background: rgba(240,168,104,0.1);
  color: var(--secondary-color);
  border-color: rgba(240,168,104,0.25);
}
.news-date {
  font-size: 11px;
  color: var(--body-text-color);
  display: flex;
  align-items: center;
  gap: 5px;
}
.news-date i { font-size: 10px; }

/* Title */
.news-title {
  font-family: "Libre Baskerville", serif;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.35;
  margin: 0;
  transition: color 0.2s;
}
.news-card:hover .news-title { color: var(--primary-color); }

/* Read more */
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary-color);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s;
}
.news-read-more:hover { gap: 12px; color: var(--primary-color); }
.news-read-more i { font-size: 10px; }

@media (max-width: 991px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-card--small { flex-direction: column; }
  .news-card--small .news-card-img { width: 100%; height: 200px; }
  .news-header { flex-direction: column; align-items: flex-start; }
  .news-header-right { max-width: 100%; }
}
@media (max-width: 576px) {
  .news { padding: 70px 0; }
  .news-card--featured .news-card-img { height: 210px; }
}
/* ===== End News Section ===== */

/* ===== Testimonials ===== */
.testimonials {
  padding: 100px 0;
  background: var(--bg-color);
  overflow: hidden;
}
.tst-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tst-card {
  background: var(--bg-secondary);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.tst-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}
.tst-quote-icon {
  color: var(--primary-color);
  font-size: 1.4rem;
  opacity: 0.6;
}
.tst-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--body-text-color);
  flex: 1;
  font-style: italic;
}
.tst-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1rem;
  border-top: 1px solid rgba(117,205,217,0.1);
}
.tst-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.tst-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 2px;
}
.tst-author span {
  font-size: 12px;
  color: var(--body-text-color);
  letter-spacing: 0.5px;
}
@media (max-width: 991px) {
  .tst-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonials { padding: 70px 0; }
}
@media (min-width: 576px) and (max-width: 991px) {
  .tst-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ===== End Testimonials ===== */

/* ===== Home Portfolio Preview ===== */
.home-portfolio {
  padding: 80px 0 0;
  background: var(--bg-color);
}
.hp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.hp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hp-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.hp-card-img {
  height: 440px;
  overflow: hidden;
}
.hp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.hp-card:hover .hp-card-img img { transform: scale(1.06); }
.hp-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: padding 0.3s;
}
.hp-card:hover .hp-card-info { padding-bottom: 2rem; }
.hp-card-cat {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
}
.hp-card-info h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 1.1rem;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.3;
}
.hp-card-info .fa-arrow-up-right-from-square {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--primary-color);
  font-size: 14px;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.3s, transform 0.3s;
}
.hp-card:hover .fa-arrow-up-right-from-square {
  opacity: 1;
  transform: translate(0, 0);
}
@media (max-width: 991px) {
  .hp-grid { grid-template-columns: 1fr; }
  .hp-card-img { height: 280px; }
}
/* ===== End Home Portfolio Preview ===== */

/* Start Work */
.work .container .brand {
  flex-basis: 50%;
  position: relative;
}
.work .container .brand h3 {
  position: absolute;
  color: #fff;
  top: 85%;
  left: 22%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
}
.work .container .brand::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 40%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 6.69%,
    rgba(0, 0, 0, 0.6) 49.62%,
    rgba(0, 0, 0, 0.8) 100%
  );
  bottom: 0;
  left: 0;
  transition: 0.3s;
}
.work .container .brand:hover::before {
  height: 50%;
}
/* End Work */
/* Start News */

.news .box-news span,
.news .box-news .sec-btn {
  font-size: 14px;
  margin-top: 1rem;
}
.contact h4 {
  font-size: 24px;
  font-weight: 700;
}

.news .box-news span,
.news .box-news .sec-btn {
  font-size: 14px;
  margin-top: 1rem;
}
.news .box-news h3 {
  font-size: 17px;
}
.news .main-btn {
  width: fit-content;
}
/* End News */
/* Start Contact */
.contact {
  background: var(--bg-secondary);
}
.contact .main-btn {
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 500;
}
/* End Contact */

.partner picture {
  display: block;
  width: 200px;
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-color);
}

/* Blobs */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.blob-1 {
  width: 650px;
  height: 650px;
  background: var(--primary-color);
  top: -220px;
  left: -180px;
  opacity: 0.28;
  animation: blobFloat1 14s ease-in-out infinite;
}

.blob-2 {
  width: 420px;
  height: 420px;
  background: var(--accent-color);
  bottom: -120px;
  right: -80px;
  opacity: 0.22;
  animation: blobFloat2 18s ease-in-out infinite;
}

.blob-3 {
  width: 280px;
  height: 280px;
  background: var(--primary-color);
  top: 45%;
  left: 58%;
  opacity: 0.12;
  animation: blobFloat3 11s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(50px, 40px) scale(1.06); }
  66%      { transform: translate(-25px, 60px) scale(0.94); }
}
@keyframes blobFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-55px,-35px) scale(1.1); }
  66%      { transform: translate(35px, 45px) scale(0.9); }
}
@keyframes blobFloat3 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50%      { transform: translate(-50%,-50%) scale(1.25); }
}

/* Grain overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 90px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.hero-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--primary-color);
  display: block;
}

.hero-title {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  max-width: 820px;
}

.hero-typed-wrap {
  display: block;
  color: var(--primary-color);
  min-height: 1.1em;
}

.hero-cursor {
  display: inline-block;
  width: 3px;
  height: 0.82em;
  background: var(--primary-color);
  margin-left: 5px;
  vertical-align: middle;
  animation: cursorBlink 0.75s step-end infinite;
}
@keyframes cursorBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

.hero-subtitle {
  font-size: 17px;
  color: var(--body-text-color);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Floating tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-tag {
  padding: 6px 18px;
  border: 1px solid rgba(117, 205, 217, 0.25);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 100px;
  background: rgba(117, 205, 217, 0.06);
  backdrop-filter: blur(4px);
  transition: background 0.3s, border-color 0.3s;
}
.hero-tag:hover {
  background: rgba(117, 205, 217, 0.15);
  border-color: rgba(117, 205, 217, 0.5);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--body-text-color);
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(117, 205, 217, 0.2);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* ===== Ticker ===== */
.hero-ticker {
  position: relative;
  z-index: 2;
  background: rgba(117, 205, 217, 0.05);
  border-top: 1px solid rgba(117, 205, 217, 0.12);
  border-bottom: 1px solid rgba(117, 205, 217, 0.12);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  gap: 3rem;
  animation: ticker 30s linear infinite;
}
.ticker-inner span {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--body-text-color);
  font-weight: 500;
}
.ticker-dot {
  color: var(--primary-color) !important;
  font-size: 10px !important;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* ===== End Hero Section ===== */
@media (max-width: 991px) {
  .work .container .brand h3 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .work .container .brand {
    flex-basis: 100%;
  }
  .work .container .brand h3 {
    font-size: 2rem;
    left: 20%;
    top: 80%;
  }
  .partner picture img {
    max-width: unset !important;
    width: 200px;
  }
  /* Hero responsive */
  .blob-1 { width: 320px; height: 320px; }
  .blob-2 { width: 220px; height: 220px; }
  .blob-3 { display: none; }
  .hero-scroll { display: none; }
  .hero-actions { gap: 1rem; }
}
@media (max-width: 480px) {
  .hero-content {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero-tags { gap: 8px; }
  .hero-tag { font-size: 11px; padding: 5px 13px; }
}
