*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

:root {
  --clr-bg:              #0A0A0A;
  --clr-bg-section:      #111111;
  --clr-bg-card:         #1A1A1A;
  --clr-bg-light:        #F5F5F0;
  --clr-bg-card-light:   #FFFFFF;
  --clr-primary:         #E8FF00;
  --clr-primary-dark:    #C8DD00;
  --clr-accent:          #FF3D00;
  --clr-text-on-dark:    #FFFFFF;
  --clr-text-muted-dark: #888888;
  --clr-text-primary:    #0A0A0A;
  --clr-text-secondary:  #333333;
  --clr-text-muted:      #777777;
  --clr-border-dark:     #2A2A2A;
  --clr-border-light:    #E0E0E0;
  --clr-cta:             #E8FF00;
  --clr-cta-text:        #0A0A0A;
  --clr-cta-hover:       #FFFFFF;
  --clr-success:         #00CC66;

  --radius-sm:    3px;
  --radius-md:    8px;
  --radius-lg:    16px;
  --shadow-neon:  0 0 20px rgba(232, 255, 0, 0.25);
  --shadow-card:  0 4px 24px rgba(0, 0, 0, 0.6);
  --transition:   all 0.3s ease;
  --container:    1280px;
  --section-py:   clamp(72px, 9vw, 128px);
}

.page {
  font-family: 'Barlow', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text-on-dark);
  line-height: 1.6;
  overflow-x: hidden;
  
}



/* Typography Classes */
.title--display, .title--h1, .title--h2, .title--h3, .title--h4 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.1;
  text-transform: uppercase;
  word-break: break-word;
  hyphens: auto;
}

.title--display {
  font-weight: 900;
  font-size: clamp(1.2rem, 8vw, 6rem);
  color: var(--clr-text-on-dark);
}

@media (max-width: 600px) {
  .title--display {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
    word-break: break-word;
  }
}

.title--h2 {
  font-weight: 800;
  font-size: clamp(1.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
}

.title--h3 {
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.title--h4 {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--clr-primary);
}

.text--body {
  font-weight: 300;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--clr-text-muted-dark);
}

.text--body p {
  margin-bottom: 1.25rem;
}

.text--body ul, .text--body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.text--body li {
  margin-bottom: 0.5rem;
}

.text--body-dark {
  font-weight: 400;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--clr-text-secondary);
}

.text--mono {
  font-family: 'Share Tech Mono', monospace;
}

.text--small {
  font-size: 0.875rem;
  color: var(--clr-text-muted-dark);
}

.text--highlight {
  color: var(--clr-primary);
}

.text--center {
  text-align: center;
}

.text--white {
  color: var(--clr-text-on-dark) !important;
}

.link {
  color: var(--clr-primary);
  text-decoration: none;
  transition: var(--transition);
}

.link:hover {
  color: var(--clr-text-on-dark);
}

.img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-py) 0;
}

.section--dark {
  background-color: var(--clr-bg-section);
}

.section--light {
  background-color: var(--clr-bg-light);
  color: var(--clr-text-primary);
}

/* Disclosure Bar */
.disclosure-bar {
  background-color: var(--clr-border-dark);
  color: var(--clr-text-muted-dark);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-family: 'Share Tech Mono', monospace;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--clr-bg);
  transition: var(--transition);
  padding: 1rem 0;
  border-bottom: 1px solid transparent;
}

.navbar--scrolled {
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--clr-border-dark);
  padding: 0.75rem 0;
}

.navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--clr-text-on-dark);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.navbar__menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar__link {
  color: var(--clr-text-on-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.navbar__link:hover {
  color: var(--clr-primary);
}

.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.navbar__toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--clr-primary);
  margin: 5px 0;
  transition: var(--transition);
}

/* Buttons */
.btn--primary, .btn--ghost, .btn--full {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background-color: var(--clr-cta);
  color: var(--clr-cta-text);
  box-shadow: var(--shadow-neon);
}

.btn--primary:hover {
  background-color: var(--clr-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.btn--ghost {
  background-color: transparent;
  color: var(--clr-text-on-dark);
  border: 1px solid var(--clr-text-on-dark);
}

.btn--ghost:hover {
  background-color: var(--clr-text-on-dark);
  color: var(--clr-bg);
}

.btn--full {
  width: 100%;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.hero__content {
  width: 55%;
  padding-right: 4rem;
  z-index: 2;
}

.hero__visual {
  width: 45%;
  position: relative;
  z-index: 1;
}

.hero__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.hero__title-line {
  display: block;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero__pill {
  padding: 0.5rem 1rem;
  background-color: var(--clr-bg-card);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  color: var(--clr-text-on-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__pill-icon {
  color: var(--clr-primary);
}

.hero__price {
  font-size: 2.5rem;
  color: var(--clr-text-on-dark);
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-sm);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__img {
  width: 100%;
  height: auto;
  transform: scale(1.1) rotate(-5deg);
  filter: drop-shadow(var(--shadow-neon));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: scale(1.1) rotate(-5deg) translateY(0px); }
  50% { transform: scale(1.1) rotate(-5deg) translateY(-20px); }
  100% { transform: scale(1.1) rotate(-5deg) translateY(0px); }
}

/* Tech Strip */
.tech-strip {
  background-color: var(--clr-bg-card);
  border-top: 1px solid var(--clr-border-dark);
  border-bottom: 1px solid var(--clr-border-dark);
  padding: 2rem 0;
}

.tech-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.tech-strip__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tech-strip__value {
  font-family: 'Share Tech Mono', monospace;
  font-size: 2rem;
  color: var(--clr-primary);
}

.tech-strip__label {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted-dark);
}

.tech-strip__disclaimer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

/* Cards Grid */
.grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background-color: var(--clr-bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border-dark);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--clr-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: translateY(-5px);
}

.card__icon {
  width: 48px;
  height: 48px;
  color: var(--clr-primary);
  margin-bottom: 1.5rem;
}

.card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--clr-text-on-dark);
}

.card__text {
  font-size: 1rem;
  color: var(--clr-text-muted-dark);
  flex-grow: 1;
}

/* Tables */
.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.table__th, .table__td {
  padding: 1rem;
  border-bottom: 1px solid var(--clr-border-dark);
}

.table__th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-text-muted-dark);
  letter-spacing: 0.05em;
}

.table__td {
  color: var(--clr-text-on-dark);
  font-weight: 500;
}

.section--light .table__td {
  color: var(--clr-text-primary);
}

.section--light .table__th, .section--light .table__td {
  border-bottom-color: var(--clr-border-light);
}

.table__tr--highlight {
  background-color: rgba(232, 255, 0, 0.05);
  border-left: 3px solid var(--clr-primary);
}

.table__tr--highlight .table__td {
  color: var(--clr-primary);
}

/* Split Section */
.split {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.split__content, .split__visual {
  width: 50%;
}

.split__stat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.5rem, 6vw, 3rem);
  font-weight: 900;
  color: var(--clr-primary);
  line-height: 1;
  margin: 2rem 0 0.5rem;
  text-transform: uppercase;
  word-break: break-word;
  hyphens: auto;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  background-color: var(--clr-bg-card);
  cursor: pointer;
  border: 1px solid var(--clr-border-dark);
  transition: var(--transition);
}

.gallery__item:hover {
  border-color: var(--clr-primary);
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: var(--transition);
}

.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background-color: var(--clr-bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--clr-primary);
}

.review-card__stars {
  color: var(--clr-primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.review-card__text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--clr-text-on-dark);
}

.review-card__author {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-text-muted-dark);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--clr-bg-card);
  border: 1px solid var(--clr-border-dark);
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item__btn {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--clr-text-on-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-item__btn:hover {
  color: var(--clr-primary);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  position: relative;
}

.faq-item__icon::before, .faq-item__icon::after {
  content: '';
  position: absolute;
  background-color: var(--clr-primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon::before {
  width: 16px;
  height: 2px;
}

.faq-item__icon::after {
  width: 2px;
  height: 16px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--clr-text-muted-dark);
}

/* Footer */
.footer {
  background-color: var(--clr-bg);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--clr-border-dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-text-on-dark);
  margin-bottom: 1rem;
  display: block;
  text-decoration: none;
}

.footer__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer__list {
  list-style: none;
}

.footer__item {
  margin-bottom: 0.75rem;
}

.footer__link {
  color: var(--clr-text-muted-dark);
  text-decoration: none;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--clr-text-on-dark);
}

.footer__text {
  color: var(--clr-text-muted-dark);
  margin-bottom: 0.5rem;
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-border-dark);
  color: var(--clr-text-muted);
  font-size: 0.875rem;
}

/* Order Page Layout */
.order-layout {
  display: flex;
  gap: 4rem;
  padding-top: 120px;
  align-items: flex-start;
}

.order-main {
  width: 60%;
}

.order-sidebar {
  width: 40%;
  position: sticky;
  top: 120px;
}

.order-gallery__main {
  background-color: var(--clr-bg-card);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 1rem;
}

.order-gallery__main-img {
  width: 100%;
  height: 400px;
  object-fit: contain;
}

.order-gallery__thumbs {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.order-gallery__thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-sm);
  background-color: var(--clr-bg-card);
  padding: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.order-gallery__thumb:hover, .order-gallery__thumb.active {
  border-color: var(--clr-primary);
}

.order-gallery__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sticky-card {
  background-color: var(--clr-bg-card);
  border: 1px solid var(--clr-primary);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-neon);
}

.sticky-card__price {
  font-family: 'Share Tech Mono', monospace;
  font-size: 3rem;
  color: var(--clr-primary);
  margin-bottom: 1.5rem;
  display: block;
}

.trust-badges {
  margin-top: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--clr-text-on-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  text-transform: uppercase;
}

.trust-badge__icon {
  color: var(--clr-success);
  width: 24px;
  height: 24px;
}

/* Article Layout */
.article-header {
  padding: 160px 0 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--clr-text-muted-dark);
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.article-hero {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto 4rem auto;
  border-radius: var(--radius-lg);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.pros-card, .cons-card {
  background-color: var(--clr-bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
}

.pros-card { border-top: 4px solid var(--clr-success); }
.cons-card { border-top: 4px solid var(--clr-accent); }

.pro-con-list { list-style: none; }
.pro-con-list__item {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.pro-con-list__item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-success);
  font-weight: bold;
}

.cons-card .pro-con-list__item::before {
  content: '✕';
  color: var(--clr-accent);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader__bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 200px;
  margin-bottom: 2rem;
}

.preloader__bar {
  height: 2px;
  background-color: var(--clr-border-dark);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.preloader__bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--clr-primary);
  animation: loadBar 2s ease-in-out forwards;
}

.preloader__bar:nth-child(2)::after { animation-delay: 0.2s; }
.preloader__bar:nth-child(3)::after { animation-delay: 0.4s; }

@keyframes loadBar {
  to { width: 100%; }
}

.preloader__text {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--clr-primary);
  font-weight: 700;
  letter-spacing: 0.2em;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background-color: var(--clr-bg-card);
  border-left: 2px solid var(--clr-primary);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  z-index: 1000;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-popup.visible {
  transform: translateY(0);
}

.cookie-popup__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--clr-text-on-dark);
}

.cookie-popup__btn {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--clr-bg);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.4s ease;
}

.nav-overlay.active {
  right: 0;
}

.nav-overlay__menu {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.nav-overlay__link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-text-on-dark);
  text-decoration: none;
  text-transform: uppercase;
}

/* Form */
.form__group {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--clr-text-on-dark);
  margin-bottom: 0.5rem;
}

.form__input, .form__textarea {
  width: 100%;
  padding: 1rem;
  background-color: var(--clr-bg-card);
  border: 1px solid var(--clr-border-dark);
  color: var(--clr-text-on-dark);
  font-family: 'Barlow', sans-serif;
  border-radius: var(--radius-sm);
}

.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
}

.form__message {
  display: none;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  background-color: rgba(0, 204, 102, 0.1);
  color: var(--clr-success);
  border: 1px solid var(--clr-success);
}

/* Responsive */
@media (max-width: 992px) {
  .hero__inner { flex-direction: column; text-align: center; }
  .hero__content { width: 100%; padding-right: 0; margin-bottom: 3rem; }
  .hero__visual { width: 80%; }
  .hero__actions { justify-content: center; }
  .hero__pills { justify-content: center; }
  
  .tech-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .grid-3x2 { grid-template-columns: repeat(2, 1fr); }
  .split { flex-direction: column; }
  .split__content, .split__visual { width: 100%; }
  
  .order-layout { flex-direction: column; }
  .order-main, .order-sidebar { width: 100%; }
}

@media (max-width: 768px) {
  .navbar__menu { display: none; }
  .navbar__toggle { display: block; }
  .navbar__btn { display: none; }
  
  .grid-3x2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .tech-strip__inner { grid-template-columns: 1fr; }
}

/* Hamburger to X */
.navbar__toggle.active .navbar__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__toggle.active .navbar__toggle-line:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active .navbar__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
