:root {
  --bg: #03060b;
  --bg-elev: #080c14;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --text: #f8fafc;
  --muted: #94a3b8;
  --accent: #00FF88; /* default neon green */
  --accent-rgb: 0, 255, 136;
  --accent-2: #66f5e0;
  --neon-cyan: #00f2ff;
  --neon-white: #ffffff;
  --stroke: rgba(255, 255, 255, 0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --container: 1200px;
  --shadow-strong: 0 32px 64px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px rgba(var(--accent-rgb), 0.25);
  --grid-color: rgba(255, 255, 255, 0.03);
}

/* Yellow Theme Override */
body.theme-yellow {
  --accent: #ccff00;
  --accent-rgb: 204, 255, 0;
}

/* Blue Theme Override */
body.theme-blue {
  --accent: #00F2FF;
  --accent-rgb: 0, 242, 255;
}

/* Magenta Theme Override */
body.theme-magenta {
  --accent: #FF00E5;
  --accent-rgb: 255, 0, 229;
}

/* Orange Theme Override */
body.theme-orange {
  --accent: #FF6B00;
  --accent-rgb: 255, 107, 0;
}

/* White Theme Override */
body.theme-white {
  --accent: #ffffff;
  --accent-rgb: 255, 255, 255;
}

/* Theme Switcher Widget */
.theme-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 8px;
  border-radius: 999px;
  margin-left: 14px;
  vertical-align: middle;
}

.switcher-btn {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.switcher-btn:hover {
  transform: scale(1.35);
}

.switcher-btn.green {
  background: #00FF88;
  box-shadow: 0 0 6px rgba(0, 255, 136, 0.4);
}

.switcher-btn.yellow {
  background: #ccff00;
  box-shadow: 0 0 6px rgba(204, 255, 0, 0.4);
}

.switcher-btn.blue {
  background: #00F2FF;
  box-shadow: 0 0 6px rgba(0, 242, 255, 0.4);
}

.switcher-btn.magenta {
  background: #FF00E5;
  box-shadow: 0 0 6px rgba(255, 0, 229, 0.4);
}

.switcher-btn.orange {
  background: #FF6B00;
  box-shadow: 0 0 6px rgba(255, 107, 0, 0.4);
}

.switcher-btn.white {
  background: #ffffff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.switcher-btn.active {
  transform: scale(1.35);
  box-shadow: 0 0 0 1.5px #ffffff, 0 0 8px rgba(var(--accent-rgb), 0.6);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 50% -20%, rgba(var(--accent-rgb), 0.08), transparent 70%),
    radial-gradient(var(--grid-color) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 2.2rem, var(--container));
  margin-inline: auto;
}

.muted {
  color: var(--muted);
}

.section {
  padding: 84px 0;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(3, 6, 11, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
}

.logo img {
  height: 38px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.15);
}

.logo-meta {
  display: flex;
  flex-direction: column;
}

.logo small {
  display: block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
}

.logo strong {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.logo strong span {
  color: var(--accent);
  transition: color 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  color: #d9e1ef;
  transition: color 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  padding: 10px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 6, 11, 0.95);
  backdrop-filter: blur(14px);
}

.mobile-panel a {
  display: block;
  padding: 12px 0;
  font-weight: 700;
  color: #d9e1ef;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-panel a:last-child {
  border-bottom: 0;
}

.mobile-panel a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  padding: 0.78rem 1.4rem;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.btn:hover {
  transform: translateY(-1.5px);
}

.btn-primary {
  color: #03060b;
  background: linear-gradient(120deg, var(--accent) 0%, #ffffff 100%);
  box-shadow: var(--shadow-glow);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 0 28px rgba(var(--accent-rgb), 0.45);
}

.btn-secondary {
  color: #f6f8fb;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
}

.circuit-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
}

.hero-circuit-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.07);
  box-shadow: inset 0 0 10px rgba(var(--accent-rgb), 0.05);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  z-index: 5;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(var(--accent-rgb), 0.2);
}

.hero p {
  max-width: 58ch;
  color: #cfdbef;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  margin-top: 1.2rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.7), rgba(4, 7, 12, 0.9));
  box-shadow: var(--shadow-strong);
  padding: 1.25rem;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 440px;
  position: relative;
  transition: transform 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-5px);
}

.hero-card img {
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.05);
}

.card-glow {
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), 0.15), transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(10px);
}

/* Bento Grid System */
.grid-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.2rem;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: var(--surface);
  padding: 1.85rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
}

.bento-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  background: var(--surface-strong);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3), 0 0 15px rgba(var(--accent-rgb), 0.05);
}

.bento-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bento-card h3 i {
  color: var(--accent);
}

.bento-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.bento-badge {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.bento-badge.coming-soon {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.bento-card-footer {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bento-card-price {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
}

.bento-span-2 { grid-column: span 2; }
.bento-span-3 { grid-column: span 3; }
.bento-row-2 { grid-row: span 2; }

/* 3D Wins Carousel & Testimony */
.wins-carousel {
  position: relative;
  perspective: 1200px;
  margin: 40px auto 20px;
  max-width: 100%;
}

.wins-stage {
  position: relative;
  height: 380px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wins-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: 320px;
  height: 350px;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.05);
  background: rgba(10, 14, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.wins-slide:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
}

.wins-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wins-slide:hover img {
  transform: scale(1.03);
}

.wins-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.wins-btn {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  color: #ffffff;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wins-btn:hover {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 4, 8, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox.is-open {
  display: flex;
}

/* Stripe Digital Products Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.price-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
}

.price-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.price-header h3 {
  font-size: 1.4rem;
  color: #ffffff;
}

.price-header p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.price-box {
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
}

.price-amount {
  font-family: "Sora", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--muted);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.price-period {
  font-size: 0.9rem;
  color: var(--muted);
  margin-left: 0.25rem;
}

.stripe-btn-wrap {
  margin-top: 1.5rem;
  min-height: 52px;
}

.stripe-btn-wrap stripe-buy-button {
  width: 100%;
}

ul.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

ul.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

ul.benefits-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  font-size: 1rem;
}

/* Brand Marquee (Tech Logos) */
.logo-marquee {
  padding: 24px 0;
  background: #04070c;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #04070c, rgba(4,7,12,0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #04070c, rgba(4,7,12,0));
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 60px;
  animation: logo-marquee 30s linear infinite;
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

.logo-marquee-block {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-right: 60px;
}

.logo-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.3s ease;
}

.logo-marquee-item i {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
}

.logo-marquee-item:hover {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(var(--accent-rgb), 0.3);
}

.logo-marquee-item:hover i {
  color: var(--accent);
}

@keyframes logo-marquee {
  to { transform: translateX(-50%); }
}

/* FAQ Details styling */
.faq-wrap {
  max-width: 800px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface);
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.faq-card details {
  padding: 1.15rem 1.4rem;
}

.faq-card summary {
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.faq-card details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-content {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.85rem;
}

/* Embed Forms & Calendar */
.form-embed {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.form-embed iframe {
  width: min(900px, 100%);
  height: 650px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.consultation-meta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 30px;
}

.consultation-benefits {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  backdrop-filter: blur(8px);
}

/* Footer Section */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 2rem;
  background: #020408;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 1rem;
  max-width: 32ch;
}

.footer-links-col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-links-col ul a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.footer-social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.social-circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 1.15rem;
}

.social-circle-btn:hover {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.15);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Responsiveness adjustments */
@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero p {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .grid-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-span-3 {
    grid-column: span 2;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }
  .consultation-meta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links, .nav-actions .btn {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .wins-stage {
    height: 300px;
  }
  .wins-slide {
    width: 270px;
    height: 300px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }
  .hero {
    padding: 70px 0 50px;
  }
  .grid-bento {
    grid-template-columns: 1fr;
  }
  .bento-span-2, .bento-span-3 {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
