/*!
 * Oklaro - design stylesheet
 * Mobile-first Philippine online casino promotional website
 * All custom classes use the "v2a4-" prefix for namespace isolation.
 * Palette: #1B263B (bg) | #00FFFF (cyan) | #E0FFFF (light cyan)
 *          #EE82EE (violet) | #DA70D6 (orchid) | #F8F9FA (text)
 * Root font-size: 62.5% => 1rem = 10px for easy rem math.
 */

:root {
  --v2a4-bg: #1B263B;
  --v2a4-bg-deep: #141d2e;
  --v2a4-bg-soft: #243349;
  --v2a4-card: #2a3b56;
  --v2a4-primary: #00FFFF;
  --v2a4-secondary: #E0FFFF;
  --v2a4-accent: #EE82EE;
  --v2a4-accent-2: #DA70D6;
  --v2a4-text: #F8F9FA;
  --v2a4-muted: #a7b3c7;
  --v2a4-border: rgba(0, 255, 255, 0.16);
  --v2a4-glow: 0 0 18px rgba(0, 255, 255, 0.35);
  --v2a4-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --v2a4-radius: 14px;
  --v2a4-radius-sm: 10px;
  --v2a4-gradient: linear-gradient(135deg, #00FFFF 0%, #DA70D6 100%);
  --v2a4-gradient-soft: linear-gradient(135deg, #243349 0%, #1B263B 100%);
}

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

html { font-size: 62.5%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "PingFang SC", sans-serif;
  background: var(--v2a4-bg);
  background-image: radial-gradient(circle at 12% 10%, rgba(0,255,255,0.08), transparent 45%),
                    radial-gradient(circle at 90% 30%, rgba(238,130,238,0.10), transparent 40%),
                    radial-gradient(circle at 50% 95%, rgba(218,112,214,0.10), transparent 55%);
  color: var(--v2a4-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--v2a4-primary); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.v2a4-no-scroll { overflow: hidden; }

/* ---------- Layout helpers ---------- */
.v2a4-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.4rem; }
.v2a4-wrapper { width: 100%; }
.v2a4-section { padding: 3.2rem 0 2.4rem; position: relative; }
.v2a4-section-alt { background: linear-gradient(180deg, rgba(36,51,73,0.65), rgba(27,38,59,0)); }

.v2a4-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 1.2rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--v2a4-primary);
  padding: 0.4rem 1rem; border: 1px solid var(--v2a4-border);
  border-radius: 999px; background: rgba(0,255,255,0.05);
}
.v2a4-h2 {
  font-size: 2.2rem; font-weight: 800; line-height: 2.8rem;
  margin: 1rem 0 0.6rem; letter-spacing: -0.01em;
  background: var(--v2a4-gradient); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.v2a4-h3 { font-size: 1.7rem; font-weight: 700; margin: 1.2rem 0 0.5rem; color: var(--v2a4-secondary); }
.v2a4-lead { color: var(--v2a4-muted); font-size: 1.45rem; line-height: 1.7rem; }
.v2a4-section-head { margin-bottom: 1.6rem; }

/* ---------- Buttons ---------- */
.v2a4-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1rem 1.8rem; border-radius: 999px; font-weight: 800; font-size: 1.4rem;
  min-height: 44px; transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
  text-align: center;
}
.v2a4-btn-primary {
  background: var(--v2a4-gradient); color: #0d1726;
  box-shadow: var(--v2a4-glow);
}
.v2a4-btn-primary:hover { transform: translateY(-2px) scale(1.02); }
.v2a4-btn-ghost {
  background: rgba(255,255,255,0.06); color: var(--v2a4-text);
  border: 1px solid var(--v2a4-border);
}
.v2a4-btn-ghost:hover { background: rgba(0,255,255,0.10); }
.v2a4-link-text {
  color: var(--v2a4-primary); font-weight: 700; border-bottom: 1px dashed rgba(0,255,255,0.4);
  padding-bottom: 1px; cursor: pointer;
}
.v2a4-link-text:hover { color: var(--v2a4-accent); border-bottom-color: var(--v2a4-accent); }
.v2a4-promo-inline {
  color: var(--v2a4-accent); font-weight: 800; cursor: pointer;
  background: rgba(238,130,238,0.10); padding: 0 0.4rem; border-radius: 6px;
}

/* ---------- Header ---------- */
.v2a4-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(20, 29, 46, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--v2a4-border);
}
.v2a4-header-inner {
  max-width: 430px; margin: 0 auto; padding: 0.7rem 1.2rem;
  display: flex; align-items: center; gap: 0.8rem; min-height: 56px;
}
.v2a4-logo { display: flex; align-items: center; gap: 0.6rem; flex: 1; min-width: 0; }
.v2a4-logo-img { width: 30px; height: 30px; border-radius: 8px; box-shadow: var(--v2a4-glow); }
.v2a4-logo-text { font-size: 1.9rem; font-weight: 900; letter-spacing: 0.04em;
  background: var(--v2a4-gradient); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; }
.v2a4-logo-tag { font-size: 1rem; color: var(--v2a4-muted); margin-left: 0.2rem; }

.v2a4-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.v2a4-btn-login {
  padding: 0.7rem 1.2rem; font-size: 1.3rem; font-weight: 800; min-height: 40px;
  border-radius: 999px; background: rgba(255,255,255,0.08); color: var(--v2a4-text);
  border: 1px solid var(--v2a4-border);
}
.v2a4-btn-register {
  padding: 0.7rem 1.2rem; font-size: 1.3rem; font-weight: 800; min-height: 40px;
  border-radius: 999px; background: var(--v2a4-gradient); color: #0d1726;
  box-shadow: 0 0 12px rgba(0,255,255,0.35);
}
.v2a4-menu-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--v2a4-border);
  display: inline-flex; align-items: center; justify-content: center; color: var(--v2a4-primary);
}

/* ---------- Mobile slide-in menu ---------- */
.v2a4-menu-overlay {
  position: fixed; inset: 0; background: rgba(5,10,18,0.65);
  opacity: 0; visibility: hidden; transition: opacity 0.25s ease; z-index: 9998;
}
.v2a4-overlay-show { opacity: 1; visibility: visible; }
.v2a4-menu {
  position: fixed; top: 0; right: -86%; width: 86%; max-width: 320px;
  height: 100%; background: var(--v2a4-bg-deep);
  border-left: 1px solid var(--v2a4-border); z-index: 9999;
  transform: translateX(0); transition: transform 0.28s ease;
  padding: 1.6rem; overflow-y: auto;
}
.v2a4-menu:not(.v2a4-menu-open) { transform: translateX(100%); }
.v2a4-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem; }
.v2a4-menu-title { font-size: 1.6rem; font-weight: 800; color: var(--v2a4-secondary); }
.v2a4-menu-close { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); color: var(--v2a4-accent); display: inline-flex; align-items: center; justify-content: center; }
.v2a4-menu-list { list-style: none; }
.v2a4-menu-list li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.v2a4-menu-list a {
  display: flex; align-items: center; gap: 0.9rem; padding: 1.1rem 0.4rem;
  color: var(--v2a4-text); font-size: 1.45rem; font-weight: 600;
}
.v2a4-menu-list a i { color: var(--v2a4-primary); font-size: 1.7rem; width: 22px; text-align: center; }
.v2a4-menu-list a:hover { color: var(--v2a4-primary); }
.v2a4-menu-cta { margin-top: 1.4rem; display: grid; gap: 0.7rem; }

/* ---------- Hero / Carousel ---------- */
.v2a4-main { padding-top: 72px; }
.v2a4-carousel { position: relative; overflow: hidden; border-radius: 0 0 22px 22px; }
.v2a4-carousel-track { display: flex; transition: transform 0.45s ease; }
.v2a4-slide { position: relative; min-width: 100%; }
.v2a4-slide img { width: 100%; height: 220px; object-fit: cover; }
.v2a4-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,29,46,0.10) 0%, rgba(20,29,46,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem;
}
.v2a4-slide-title { font-size: 2rem; font-weight: 900; color: var(--v2a4-secondary); margin-bottom: 0.4rem; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.v2a4-slide-desc { font-size: 1.3rem; color: var(--v2a4-text); margin-bottom: 0.9rem; }
.v2a4-carousel-prev, .v2a4-carousel-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(20,29,46,0.7); color: var(--v2a4-primary);
  display: inline-flex; align-items: center; justify-content: center; z-index: 5;
  border: 1px solid var(--v2a4-border);
}
.v2a4-carousel-prev { left: 8px; } .v2a4-carousel-next { right: 8px; }
.v2a4-carousel-dots { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; z-index: 5; }
.v2a4-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: all 0.2s; }
.v2a4-dot-active { background: var(--v2a4-primary); width: 22px; border-radius: 999px; }

/* ---------- Trust badges strip ---------- */
.v2a4-trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem;
  background: var(--v2a4-bg-soft); border: 1px solid var(--v2a4-border);
  border-radius: var(--v2a4-radius); padding: 1rem; margin-top: 1.4rem;
}
.v2a4-trust-item { text-align: center; }
.v2a4-trust-item i { color: var(--v2a4-primary); font-size: 2rem; }
.v2a4-trust-item span { display: block; font-size: 1.1rem; color: var(--v2a4-muted); margin-top: 0.2rem; }

/* ---------- H1 hero block ---------- */
.v2a4-hero-block { padding: 2.4rem 0 0.6rem; text-align: center; }
.v2a4-hero-h1 {
  font-size: 2.6rem; font-weight: 900; line-height: 3rem; margin-bottom: 0.8rem;
  background: var(--v2a4-gradient); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.v2a4-hero-sub { color: var(--v2a4-muted); font-size: 1.4rem; margin-bottom: 1.2rem; }
.v2a4-hero-cta { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Game grid ---------- */
.v2a4-cat-block { margin-bottom: 2.2rem; }
.v2a4-cat-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.v2a4-cat-title { display: flex; align-items: center; gap: 0.7rem; font-size: 1.7rem; font-weight: 800; color: var(--v2a4-secondary); }
.v2a4-cat-title i { color: var(--v2a4-accent); font-size: 2rem; }
.v2a4-cat-more { font-size: 1.25rem; color: var(--v2a4-primary); font-weight: 700; cursor: pointer; }

.v2a4-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.v2a4-game {
  display: block; background: var(--v2a4-card); border: 1px solid var(--v2a4-border);
  border-radius: var(--v2a4-radius-sm); padding: 0.6rem; text-align: center;
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s; cursor: pointer; overflow: hidden;
}
.v2a4-game:hover { transform: translateY(-3px); border-color: var(--v2a4-primary); box-shadow: var(--v2a4-glow); }
.v2a4-game-img-wrap {
  position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #2a3b56, #1B263B);
}
.v2a4-game-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.v2a4-game-img-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.45));
}
.v2a4-game-name {
  font-size: 1.15rem; font-weight: 600; margin-top: 0.5rem; color: var(--v2a4-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.v2a4-game-tag {
  position: absolute; top: 4px; left: 4px; z-index: 2;
  font-size: 0.95rem; font-weight: 800; padding: 0.1rem 0.5rem; border-radius: 6px;
  background: var(--v2a4-gradient); color: #0d1726;
}

/* ---------- Generic cards ---------- */
.v2a4-card {
  background: var(--v2a4-card); border: 1px solid var(--v2a4-border);
  border-radius: var(--v2a4-radius); padding: 1.4rem; box-shadow: var(--v2a4-shadow);
}
.v2a4-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.v2a4-feature-card {
  background: var(--v2a4-card); border: 1px solid var(--v2a4-border);
  border-radius: var(--v2a4-radius); padding: 1.2rem; text-align: center;
}
.v2a4-feature-card i { font-size: 2.6rem; color: var(--v2a4-primary); margin-bottom: 0.4rem; }
.v2a4-feature-card.material { }
.v2a4-feature-card h4 { font-size: 1.35rem; margin-bottom: 0.3rem; color: var(--v2a4-secondary); }
.v2a4-feature-card p { font-size: 1.2rem; color: var(--v2a4-muted); line-height: 1.5rem; }

/* ---------- Steps list ---------- */
.v2a4-steps { list-style: none; counter-reset: step; display: grid; gap: 0.8rem; }
.v2a4-steps li {
  counter-increment: step; position: relative; padding: 1rem 1rem 1rem 3.4rem;
  background: var(--v2a4-card); border: 1px solid var(--v2a4-border); border-radius: var(--v2a4-radius-sm);
}
.v2a4-steps li::before {
  content: counter(step); position: absolute; left: 0.8rem; top: 50%; transform: translateY(-50%);
  width: 2rem; height: 2rem; border-radius: 50%; background: var(--v2a4-gradient); color: #0d1726;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem;
}
.v2a4-steps li strong { color: var(--v2a4-secondary); }

/* ---------- RTP table ---------- */
.v2a4-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.25rem; }
.v2a4-rtp-table th, .v2a4-rtp-table td { padding: 0.7rem 0.5rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); }
.v2a4-rtp-table th { color: var(--v2a4-primary); font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.05em; }
.v2a4-rtp-bar { height: 6px; border-radius: 999px; background: rgba(255,255,255,0.1); overflow: hidden; }
.v2a4-rtp-bar span { display: block; height: 100%; background: var(--v2a4-gradient); }

/* ---------- FAQ accordion ---------- */
.v2a4-faq-item { background: var(--v2a4-card); border: 1px solid var(--v2a4-border); border-radius: var(--v2a4-radius-sm); margin-bottom: 0.7rem; overflow: hidden; }
.v2a4-faq-q { width: 100%; text-align: left; padding: 1rem 1.2rem; font-size: 1.35rem; font-weight: 700; color: var(--v2a4-text); display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; }
.v2a4-faq-q i { color: var(--v2a4-accent); transition: transform 0.2s; }
.v2a4-faq-item.v2a4-faq-open .v2a4-faq-q i { transform: rotate(45deg); }
.v2a4-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.2rem; color: var(--v2a4-muted); font-size: 1.3rem; }
.v2a4-faq-item.v2a4-faq-open .v2a4-faq-a { max-height: 320px; padding-bottom: 1rem; }

/* ---------- Winners / Testimonials ---------- */
.v2a4-winners { display: grid; gap: 0.6rem; }
.v2a4-winner {
  display: flex; align-items: center; gap: 0.8rem;
  background: var(--v2a4-bg-soft); border: 1px solid var(--v2a4-border);
  border-radius: var(--v2a4-radius-sm); padding: 0.7rem 0.9rem;
}
.v2a4-winner-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--v2a4-gradient); color: #0d1726; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.v2a4-winner-meta { flex: 1; min-width: 0; }
.v2a4-winner-meta strong { display: block; font-size: 1.25rem; color: var(--v2a4-text); }
.v2a4-winner-meta span { font-size: 1.1rem; color: var(--v2a4-muted); }
.v2a4-winner-amount { font-weight: 900; color: var(--v2a4-primary); font-size: 1.35rem; }

.v2a4-testimonial { background: var(--v2a4-card); border: 1px solid var(--v2a4-border); border-radius: var(--v2a4-radius); padding: 1.1rem; }
.v2a4-stars { color: #FFD166; margin-bottom: 0.4rem; font-size: 1.3rem; }
.v2a4-testimonial p { font-size: 1.3rem; color: var(--v2a4-text); line-height: 1.6rem; margin-bottom: 0.6rem; }
.v2a4-testimonial footer { font-size: 1.15rem; color: var(--v2a4-muted); }

/* ---------- Payment / Apps ---------- */
.v2a4-payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.v2a4-payment { background: var(--v2a4-bg-soft); border: 1px solid var(--v2a4-border); border-radius: var(--v2a4-radius-sm); padding: 0.8rem 0.4rem; text-align: center; }
.v2a4-payment i { font-size: 1.9rem; color: var(--v2a4-primary); }
.v2a4-payment span { display: block; font-size: 1.05rem; color: var(--v2a4-muted); margin-top: 0.2rem; }
.v2a4-app-card {
  background: linear-gradient(135deg, rgba(0,255,255,0.10), rgba(218,112,214,0.10));
  border: 1px solid var(--v2a4-border); border-radius: var(--v2a4-radius);
  padding: 1.4rem; text-align: center;
}
.v2a4-app-buttons { display: flex; gap: 0.6rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }

/* ---------- CTA banner ---------- */
.v2a4-cta-banner {
  background: var(--v2a4-gradient); color: #0d1726; border-radius: var(--v2a4-radius);
  padding: 1.6rem; text-align: center; box-shadow: var(--v2a4-glow);
}
.v2a4-cta-banner h3 { color: #0d1726; margin: 0 0 0.4rem; font-size: 1.9rem; }
.v2a4-cta-banner p { font-size: 1.3rem; margin-bottom: 1rem; color: #14202f; }
.v2a4-cta-banner .v2a4-btn { background: #0d1726; color: var(--v2a4-primary); }

/* ---------- Footer ---------- */
.v2a4-footer { background: var(--v2a4-bg-deep); border-top: 1px solid var(--v2a4-border); padding: 2.4rem 0 7rem; margin-top: 2rem; }
.v2a4-footer-brand { margin-bottom: 1.2rem; }
.v2a4-footer-brand h4 { font-size: 1.6rem; margin-bottom: 0.4rem; color: var(--v2a4-secondary); }
.v2a4-footer-brand p { color: var(--v2a4-muted); font-size: 1.25rem; line-height: 1.6rem; }
.v2a4-footer-promos { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0 1.4rem; }
.v2a4-footer-promos .v2a4-btn { min-height: 38px; padding: 0.6rem 1rem; font-size: 1.2rem; }
.v2a4-footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 0.8rem; margin-bottom: 1.2rem; }
.v2a4-footer-links a { font-size: 1.2rem; color: var(--v2a4-muted); }
.v2a4-footer-links a:hover { color: var(--v2a4-primary); }
.v2a4-footer-copy { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1rem; font-size: 1.15rem; color: var(--v2a4-muted); text-align: center; }

/* ---------- Mobile bottom navigation ---------- */
.v2a4-bottomnav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  height: 62px; display: flex; justify-content: space-around; align-items: stretch;
  background: rgba(20, 29, 46, 0.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--v2a4-border);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.4);
}
.v2a4-bottomnav-btn {
  flex: 1; min-width: 60px; min-height: 60px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; color: var(--v2a4-muted); position: relative;
  transition: color 0.2s, transform 0.15s;
}
.v2a4-bottomnav-btn i { font-size: 22px; }
.v2a4-bottomnav-btn .v2a4-bottomnav-label { font-size: 10px; font-weight: 700; letter-spacing: 0.02em; }
.v2a4-bottomnav-btn:hover { color: var(--v2a4-secondary); }
.v2a4-bottomnav-btn:active { transform: scale(0.92); }
.v2a4-bottomnav-active { color: var(--v2a4-primary); }
.v2a4-bottomnav-active::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 26px; height: 3px; border-radius: 999px; background: var(--v2a4-gradient);
}
.v2a4-bottomnav-center {
  position: relative; top: -16px;
}
.v2a4-bottomnav-center .v2a4-bottomnav-btn {
  background: var(--v2a4-gradient); color: #0d1726;
  width: 54px; height: 54px; border-radius: 50%; margin-top: 8px;
  box-shadow: var(--v2a4-glow);
}
.v2a4-bottomnav-center .v2a4-bottomnav-btn i { font-size: 24px; }
.v2a4-bottomnav-badge {
  position: absolute; top: 6px; right: 18px; min-width: 16px; height: 16px;
  padding: 0 4px; border-radius: 999px; background: var(--v2a4-accent); color: #fff;
  font-size: 10px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center;
}

/* ---------- Reveal animation ---------- */
.v2a4-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.v2a4-revealed { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (min-width: 431px) {
  .v2a4-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 600px) {
  .v2a4-container { max-width: 760px; }
  .v2a4-grid { grid-template-columns: repeat(5, 1fr); }
  .v2a4-grid-2 { grid-template-columns: repeat(3, 1fr); }
  .v2a4-hero-h1 { font-size: 3.4rem; line-height: 4rem; }
}
@media (min-width: 769px) {
  .v2a4-container { max-width: 960px; }
  .v2a4-grid { grid-template-columns: repeat(6, 1fr); }
  .v2a4-bottomnav { display: none; }
  .v2a4-footer { padding-bottom: 2.4rem; }
  .v2a4-menu-btn { display: none; }
  .v2a4-desktop-nav { display: flex; gap: 1rem; align-items: center; }
  .v2a4-desktop-nav a { font-size: 1.35rem; color: var(--v2a4-text); font-weight: 600; }
  .v2a4-desktop-nav a:hover { color: var(--v2a4-primary); }
}
@media (max-width: 768px) {
  .v2a4-main { padding-bottom: 80px; }
  .v2a4-desktop-nav { display: none; }
}
/* Desktop navigation visibility is handled by the responsive rules above. */
