@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}
:root {
  --yellow: #F5C518;
  --yellow-dark: #D4A800;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --gray: #2A2A2A;
  --light-gray: #F4F4F4;
  --text-muted: #6B6B6B;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: -0.01em;
}

/* NAV */
.nav-link {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--yellow); }

.nav-link-dark { color: var(--black); }
.nav-link-dark:hover { color: var(--yellow-dark); }

/* HERO */
.hero-bg {
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.6) 100%),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&q=80') center/cover no-repeat;
  min-height: 90vh;
}
.hero-bg-about {
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600&q=80') center/cover no-repeat;
}
.hero-bg-products {
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 100%),
    url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=1600&q=80') center/cover no-repeat;
}
.hero-bg-agri {
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 100%),
    url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?w=1600&q=80') center/cover no-repeat;
}
.hero-bg-biz {
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(10,10,10,0.6) 100%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80') center/cover no-repeat;
}
.hero-bg-vehicle {
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 100%),
    url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1600&q=80') center/cover no-repeat;
}
.hero-bg-contact {
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(0,0,0,0.8) 100%),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80') center/cover no-repeat;
}
.hero-bg-insights { background: var(--yellow); }
.hero-bg-impact {
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 10%),
    url('../images/impact.png') center/cover no-repeat;
  min-height: 200vh;
}
.hero-bg-faq {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}
.hero-bg-apply {
  background: var(--white);
  border-bottom: 1px solid #E5E5E5;
}

/* BUTTONS */
.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.72rem 1.5rem;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.btn-outline-dark {
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

/* STAT CARDS */
.stat-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  padding: 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* PRODUCT CARDS */
.product-card {
  border: 1.5px solid #E8E8E8;
  border-radius: 10px;
  padding: 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  background: var(--white);
}
.product-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 30px rgba(245,197,24,0.15);
  transform: translateY(-4px);
}

/* INSIGHT CARDS */
.insight-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E8E8E8;
  transition: box-shadow 0.25s, transform 0.25s;
  background: var(--white);
}
.insight-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.insight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* FAQ */
.faq-item { border-bottom: 1px solid #E5E5E5; }
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
}
.faq-content {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-content.open { display: block; }
.faq-icon { transition: transform 0.3s; font-size: 1.25rem; color: var(--yellow); }
.faq-icon.rotated { transform: rotate(45deg); }

/* FORMS */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E0E0E0;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}
.form-label {
  display: block;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--black);
}

/* UPLOAD ZONE */
.upload-zone {
  border: 2px dashed #D0D0D0;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.upload-zone:hover {
  border-color: var(--yellow);
  background: rgba(245,197,24,0.04);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}
.animate-fade-up { animation: fadeUp 0.7s ease forwards; }
.animate-fade-up-d1 { animation: fadeUp 0.7s ease 0.1s both; }
.animate-fade-up-d2 { animation: fadeUp 0.7s ease 0.2s both; }
.animate-fade-up-d3 { animation: fadeUp 0.7s ease 0.3s both; }
.animate-fade-up-d4 { animation: fadeUp 0.7s ease 0.4s both; }
.animate-fade-in { animation: fadeIn 0.8s ease forwards; }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* YELLOW ACCENT LINE */
.section-tag {
  display: inline-block;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 0.75rem;
}
.underline-yellow {
  position: relative;
  display: inline-block;
}
.underline-yellow::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 48px; height: 3px;
  background: var(--yellow);
}

/* CTA DARK STRIP */
.glass-cta {
  position: relative;
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}
.glass-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.15));
  pointer-events: none;
}
.glass-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(245,197,24,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.glass-card {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.glass-card-inner {
  background: rgba(255,255,255,0.09);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 2.75rem 3rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}
.glass-card-inner h2 {
  color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.glass-card-inner p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}
.glass-card-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.glass-card-inner .btn-outline {
  border-color: rgba(255,255,255,0.75);
  color: rgba(255,255,255,0.95);
}

/* PILL BADGE */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}
.badge-yellow { background: var(--yellow); color: var(--black); }
.badge-dark { background: var(--dark2); color: var(--white); }
.badge-outline { border: 1px solid var(--yellow); color: var(--yellow-dark); }

/* VALUE CARDS */
.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 10px;
  background: var(--light-gray);
  transition: background 0.2s;
}
.value-card:hover { background: #EAEAEA; }

/* TIMELINE */
.pillar-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

/* TABLE */
.finance-table { width: 100%; border-collapse: collapse; }
.finance-table th {
  background: var(--dark);
  color: var(--white);
  padding: 0.875rem 1rem;
  text-align: left;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
}
.finance-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #E8E8E8;
  font-size: 0.9rem;
}
.finance-table tr:hover td { background: #FAFAFA; }

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
footer a:hover { color: var(--yellow); }

/* MOBILE NAV */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  padding: 2rem;
}
.mobile-menu.open { display: flex; }

/* DROPDOWN */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  min-width: 220px;
  z-index: 100;
  padding: 0.5rem 0;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  color: var(--black);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover {
  background: var(--light-gray);
  color: var(--yellow-dark);
}

/* FLASH */
.flash-msg {
  background: #D4EDDA;
  border: 1px solid #C3E6CB;
  color: #155724;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
}

/* TESTIMONIAL */
.testimonial-card {
  background: var(--dark);
  color: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  color: var(--yellow);
  position: absolute;
  top: 1rem; left: 2rem;
  line-height: 1;
}

/* STEPS */
.step-circle {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  flex-shrink: 0;
}

/* PARTNER LOGOS */
.partner-bar {
  background: #F8F8F8;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  padding: 1.5rem 0;
}
.partner-logo {
  opacity: 1;
  transition: opacity 0.2s, transform 0.2s;
  filter: none;
}
.partner-logo:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

/* CHECKLIST */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.check-icon {
  width: 1.125rem; height: 1.125rem;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* SCROLL BAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ABOUT PAGE CAROUSEL */
.a-slide:nth-child(1) .a-bg { background-image: url('../images/g3.png'); }
.a-slide:nth-child(2) .a-bg { background-image: url('../images/g8.png'); }
.a-slide:nth-child(3) .a-bg { background-image: url('../images/g9.png'); }
.a-slide:nth-child(4) .a-bg { background-image: url('../images/g6.png'); }

.a-radio { display: none; }
#s1:checked ~ .a-hero .a-slides { transform: translateX(0%); }
#s2:checked ~ .a-hero .a-slides { transform: translateX(-25%); }
#s3:checked ~ .a-hero .a-slides { transform: translateX(-50%); }
#s4:checked ~ .a-hero .a-slides { transform: translateX(-75%); }
#s1:checked ~ .a-hero .dl1,
#s2:checked ~ .a-hero .dl2,
#s3:checked ~ .a-hero .dl3,
#s4:checked ~ .a-hero .dl4 { background: #F5C518; width: 20px; border-radius: 3px; }

/* MARQUEE */
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-left 30s linear infinite;
}
.marquee-track.marquee-reverse {
  animation: marquee-right 30s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem;
  flex-shrink: 0;
}
@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.marquee-track:hover { animation-play-state: paused; }


/* ── TESTIMONIALS ───────────────────────────────── */
.t-section-bg {
  position: relative;
  overflow: hidden;
}
.t-section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0) 8%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.35) 80%,
    rgba(255,255,255,0) 93%,
    rgba(255,255,255,1) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.t-card {
  border-radius: 12px;
  padding: 0.9rem 1rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.t-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}
.t-card-dark {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}
.t-card-yellow {
  background: rgba(245,197,24,0.65);
  border: 1px solid rgba(245,197,24,0.4);
}
.t-card-outline {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
}
.t-card[style*="border-left"] {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}
.t-quote {
  font-size: 1.8rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.25rem;
  font-family: Georgia, serif;
}
.t-text {
  color: rgba(255,255,255,0.92);
  font-size: 0.75rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.t-text-dark { color: rgba(0,0,0,0.85); }
.t-stars {
  color: var(--yellow);
  font-size: 0.72rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.t-stat {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.4rem 0.6rem;
  background: rgba(245,197,24,0.12);
  border-radius: 6px;
  gap: 0.4rem;
}
.t-stat-num {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.t-stat-lbl {
  color: var(--black);
  font-size: 0.68rem;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.t-author-dark { border-top: 1px solid rgba(0,0,0,0.12); }
.t-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--yellow);
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 0.78rem; color: white; }
.t-name-dark { color: var(--black); }
.t-role { font-size: 0.68rem; color: var(--yellow); margin-top: 1px; }
.t-role-dark { color: rgba(0,0,0,0.5); }
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  align-items: start;
}
.t-col { display: flex; flex-direction: column; gap: 0.75rem; }
.t-col-2 { margin-top: -1rem; }
.t-col-3 { margin-top: 0.5rem; }

/* Ticker */
.t-ticker-wrap {
  margin-top: 2rem;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.25rem;
}
.t-ticker {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: tickerScroll 25s linear infinite;
}
.t-ticker:hover { animation-play-state: paused; }
.t-ticker-item { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.t-ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); }
.t-ticker-name { color: white; font-weight: 600; font-size: 1rem; white-space: nowrap; }
.t-ticker-role { color: var(--black); font-size: 0.9rem; white-space: nowrap; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  /* Hero fixes */
  .hero-title { font-size: 2rem !important; }
  
  .hero-bg,
  .hero-bg-about,
  .hero-bg-products,
  .hero-bg-agri,
  .hero-bg-biz,
  .hero-bg-vehicle,
  .hero-bg-contact {
    min-height: 100vh;
    background-attachment: scroll !important;
  }

  /* Prevent content overflow */
  .hero-bg > div,
  .hero-bg-agri > div {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* Fix grid layouts in hero */
  .hero-bg > div > div[class*="grid"],
  .hero-bg-agri > div > div[class*="grid"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Hide side panels on mobile */
  .hero-bg > div > div > div:last-child,
  .hero-bg-agri > div > div > div:last-child {
    display: none !important;
  }

  /* Glass card fix */
  .glass-card-inner {
    padding: 1.75rem 1.25rem !important;
  }

  /* Testimonials grid */
  .t-grid {
    grid-template-columns: 1fr !important;
  }
  .t-col-2, .t-col-3 { margin-top: 0 !important; }

  /* General overflow fix */
  section, .container {
    overflow-x: hidden !important;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem !important; }
  
  .glass-card-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .glass-card-actions a,
  .glass-card-actions button {
    text-align: center !important;
    justify-content: center !important;
  }
}