:root {
  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --bg-surface: #1a1a26;
  --accent: #b5f23d;
  --accent-dim: #8ab82e;
  --accent2: #ff4f4f;
  --text: #f0f0f8;
  --text-muted: #8888aa;
  --border: rgba(255, 255, 255, 0.07);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --font-text: "DM Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-dark);
}

body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}


/* ── NAVBAR ── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.95), transparent);
  transition: background 0.3s;
}

.navbar .logo {
  margin-left: 2%;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(12px);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
  padding: 0px;
  margin: 0px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover{
  color: var(--accent-dim);
}

.logo {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--accent);
  text-decoration: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
}

.nav-icon {
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-icon:hover {
  color: var(--text);
}

.login-button {
  display: flex;
  justify-content: center;
}

.login-button button:hover {
  color: #8ab82e;
}

.login-button button {
  width: 100%;
  padding: 13px 0;
  background: transparent;
  border: 0px;
  border-radius: 5px;
  color: #f0ece4;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  cursor: pointer;
  padding: 8px;
}

.btn-login {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 7px 22px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-login:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-right: -rem;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO SECTION ── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: -61px;
  /*vh diganti px biar ukurannya fixed, ga tergantung viewport*/
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active .hero-bg {
  transform: scale(1);
}

.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 15, 0.96) 0%,
    rgba(10, 10, 15, 0.7) 45%,
    rgba(10, 10, 15, 0.1) 100%
  );
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 100px;
  /* margin-top: 5vh; */
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.badge-rank {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 90px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 16px;
}

.hero-desc {
  font-family: var(--font-text);
  font-size: 14px;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.star-row {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
}

.star-row i {
  font-size: 18px;
  color: var(--accent);
}

.star-row i.empty {
  color: var(--border);
  filter: brightness(2);
}

.hero-actions {
  display: flex;
  gap: 12px;
  /* margin-bottom: 20%; */
}

.btn-watch {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #0a0a0f;
  border: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-watch:hover {
  background: #cdf54e;
  transform: translateY(-2px);
  color: #0a0a0f;
}

.btn-trailer {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  backdrop-filter: blur(4px);
}

.btn-trailer:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* Hero thumbnails */

.hero-thumbs {
  position: absolute;
  right: 60px;
  bottom: 100px;
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hero-thumb {
  width: 140px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0.5;
}

.hero-thumb.active {
  border-color: var(--accent);
  opacity: 1;
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero nav controls */

.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 60px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
  /* margin-top: 20px; */
}

.ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-progress {
  display: flex;
  align-items: center;
  gap: 8px;
}

.progress-bar-hero {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 5s linear;
}

.slide-counter {
  font-family: var(--font-display);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.3);
}

/* ── SECTIONS ── */

section {
  padding: 20px 0;
  background-color: var(--bg-card);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--text);
}

.see-all {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.see-all:hover {
  color: var(--accent);
}

/* ── FEATURED BANNER ── */

.featured-banner {
  margin: 0 200px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 200px;
  cursor: pointer;
}

.featured-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-banner:hover img {
  transform: scale(1.03);
}

.featured-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}


/* ── ANIME CARD CAROUSEL ── */

.cards-scroll-wrapper {
  position: relative;
}

.cards-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 60px 20px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-top: 20px;
}

.cards-scroll::-webkit-scrollbar {
  display: none;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(20, 20, 30, 0.9);
  border: 1.5px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.scroll-btn:hover {
  background: var(--bg-surface);
  border-color: var(--accent);
  color: var(--accent);
}

.scroll-btn.prev {
  left: 10px;
}

.scroll-btn.next {
  right: 10px;
}

.anime-card {
  min-width: 160px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s;
  position: relative;
  background: var(--bg-card);
  flex-shrink: 0;
}

.anime-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.anime-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.anime-card-info {
  padding: 10px 10px 12px;
}

.anime-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.anime-card-meta {
  font-family: var(--font-text);
  font-size: 11px;
  color: var(--text-muted);
}

.anime-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--accent2);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.anime-card-badge.sub {
  background: var(--accent);
  color: #0a0a0f;
}

.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.anime-card:hover .card-hover-overlay {
  opacity: 1;
}

.play-icon-big {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0a0a0f;
  margin-bottom: calc(230px - 52px - 40px);
}

/* ── TRENDING BADGE ── */

/* Section terluar */

.trending-anime {
  /* background: var(--bg-card); */
  background-image: linear-gradient(to bottom, var(--bg-dark), var(--bg-card));
}

.trending-num-1 {
  position: absolute;
  bottom: 55px;
  left: 1px;
  font-family: "Montserrat", sans-serif;
  font-size: 80px;
  font-weight: bolder;
  line-height: 1;
  color: var(--accent-dim);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 1);
}

.trending-num {
  position: absolute;
  bottom: 55px;
  left: 1px;
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  font-weight: bolder;
  line-height: 1;
  color: var(--accent-dim);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 1);
}

/* NEW ANIME */
.new-anime {
  background: var(--bg-card);
  /* background-image: linear-gradient(to bottom, var(--bg-dark), var(--bg-card)); */
}

/* ── SUBSCRIPTION ── */

.subscription {
  text-align: center;
  background: var(--bg-card);
  padding: 80px 0;
  text-decoration: none;
}

.subscription-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.subscription .title {
  margin-bottom: 50px;
}

.subscription .section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 2px;
}

.subscription .brand-name {
  color: var(--accent);
}
.subscription .plus {
  color: var(--text);
}

/* ── SUB CARDS ── */
.subscription-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.sub-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
  z-index: 2;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.sub-card-link {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    z-index: 1;
}

.sub-card:hover {
  border-color: rgba(181, 242, 61, 0.3);
  transform: translateY(-4px);
}

.sub-card.featured {
  background: var(--bg-surface);
  border: 2px solid var(--accent);
  position: relative;
  box-shadow: 0 20px 60px rgba(181, 242, 61, 0.12);
}

.sub-card.featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 70px rgba(181, 242, 61, 0.18);
}

.sub-card-header {
  margin-bottom: 20px;
}

.sub-card-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1;
}

.sub-card-desc {
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.sub-price-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.sub-price-main {
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: var(--text);
}

.sub-currency {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
}

.sub-amount {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--text);
  letter-spacing: 1px;
}

.sub-card.featured .sub-amount {
  color: var(--accent);
}

.sub-price-bulanan {
  font-family: var(--font-text);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.sub-price-tahunan {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

.sub-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.sub-features li {
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.sub-features li i {
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.brand-name {
  color: var(--accent-dim);
}

.plus {
  color: white;
}

.subscription h1 {
  font-size: 10vh;
}

.subscription .title h1 {
  text-align: center;
}

.subscription .genre-pills {
  justify-content: center;
}

.genre-pill {
  padding: 10px 20px;
  margin: 10px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.genre-pill:hover,
.genre-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0f;
}

/* ── FAQ ── */

.faq-section {
  background: var(--bg-card);
  padding: 70px 0;
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-title {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.faq-item {
  border-radius: 10px;
  background: var(--bg-surface);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--accent);
  color: #0a0a0f;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  font-family: var(--font-text);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

/* ── FOOTER ── */

footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 50px 60px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  font-size: 28px;
}

.footer-brand p {
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 220px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  font-family: var(--font-text);
  font-size: 12px;
  color: var(--text-muted);
}

/* ── MOBILE OFFCANVAS NAV ── */

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(12, 12, 18, 0.98);
  backdrop-filter: blur(16px);
  z-index: 2000;
  padding: 30px 28px;
  transition: left 0.35s ease;
  border-right: 1px solid var(--border);
}

.mobile-nav.open {
  left: 0;
}

.mobile-nav .logo {
  font-size: 26px;
  margin-bottom: 40px;
  display: block;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav ul li {
  margin-bottom: 8px;
}

.mobile-nav ul li a {
  display: block;
  padding: 12px 16px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
}

.mobile-nav ul li a:hover {
  background: var(--bg-surface);
  color: var(--text);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  display: none;
}

.mobile-overlay.open {
  display: block;
}

.close-nav {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
}

/* ── SEARCH BAR ── */

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.97);
  z-index: 1500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-box {
  width: 100%;
  max-width: 620px;
  padding: 0 20px;
}

.search-input {
  width: 100%;
  background: var(--bg-surface);
  border: 2px solid var(--accent);
  color: var(--text);
  padding: 16px 20px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  outline: none;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.close-search {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
}

.close-search:hover {
  color: var(--text);
}

/* ── SCROLL REVEAL ── */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
  .navbar {
    padding: 16px 20px;
  }
  .nav-links,
  .btn-login {
    display: none;
  }
  .login-button{
    display: none;
  }
  .nav-links-login{
    display: none;
  }
  .navbar-login .logo {
  margin-left: 0px;
}
  .hamburger {
    display: flex;
  }
  .hero-content {
    padding: 0 20px 80px;
    margin-left: 20px;
  }
  .hero-title {
    font-size: 42px;
  }
  .hero-thumbs {
    display: none;
  }
  .hero-controls {
    left: 20px;
    bottom: 20px;
  }
  .hero-progress {
    display: none;
  }
  .section-header {
    padding: 0 20px;
  }
  .cards-scroll {
    padding: 0 20px 20px;
  }
  .subscription-wrapper {
    padding: 0 20px;
  }
  .subscription-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sub-card.featured {
    order: -1;
  }
  .sub-amount {
    font-size: 42px;
  }
  .genre-pills {
    padding: 0 20px;
  }
  .featured-banner {
    margin: 0 20px 40px;
    height: 200px;
  }
  .featured-banner-title {
    font-size: 26px;
  }
  footer {
    padding: 40px 20px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .faq-inner {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-desc {
    -webkit-line-clamp: 2;
    display: -webkit-box;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .banner-actions {
    flex-direction: column;
  }
}
