/* ==================== VARIABLES ==================== */
:root {
  --red: #E31837;
  --red-dark: #B81230;
  --red-light: #FF2D4B;
  --red-glow: rgba(227, 24, 55, 0.4);
  --black: #0A0A0A;
  --black-light: #141414;
  --black-card: #1A1A1A;
  --black-border: #2A2A2A;
  --gray: #888;
  --gray-light: #AAA;
  --white: #FFFFFF;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==================== RESET ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}

/* ==================== LOADER ==================== */
#loader {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s, visibility 0.5s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-bull {
  width: 80px; height: 80px;
  border: 3px solid var(--black-border);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: flex; align-items: center; justify-content: center;
}
.loader-bull i {
  color: var(--red);
  font-size: 24px;
  animation: pulse 1s ease-in-out infinite;
}
.loader-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
  animation: pulse 1s ease-in-out infinite;
}
#loader p {
  margin-top: 20px;
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 6px;
  color: var(--red);
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ==================== UTILITY ==================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-red { color: var(--red); }
.text-center { text-align: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-glow {
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn-full { width: 100%; justify-content: center; }

/* ==================== ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.active { opacity: 1; transform: scale(1); }

/* ==================== NAVBAR ==================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img {
  height: 45px;
  width: 45px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--red);
  transition: var(--transition);
}
.nav-logo-img:hover {
  box-shadow: 0 0 15px var(--red-glow);
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 24px; font-weight: 700;
  letter-spacing: 3px;
  display: flex; align-items: center; gap: 8px;
}
.nav-links {
  display: flex; align-items: center; gap: 30px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}
.nav-links a:not(.nav-shop-btn)::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s;
}
.nav-links a:not(.nav-shop-btn):hover::after { width: 100%; }
.nav-links a:hover { color: var(--red); }
.nav-shop-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 4px;
  font-size: 13px !important;
}
.nav-shop-btn:hover {
  background: var(--red-light) !important;
  box-shadow: 0 4px 20px var(--red-glow);
}
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; padding: 5px;
}
.nav-toggle span {
  width: 25px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================== HERO ==================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--black) 0%, #1a0000 50%, var(--black) 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(227, 24, 55, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(227, 24, 55, 0.1) 0%, transparent 60%);
}
.hero-particles {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 6s ease-in-out infinite;
}
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  30% { opacity: 0.8; }
  70% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid var(--red);
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 6px;
  margin-bottom: 20px;
  animation: fadeInDown 1s 0.5s both;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
  margin-bottom: 20px;
  animation: fadeInUp 1s 0.7s both;
}
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(16px, 3vw, 24px);
  letter-spacing: 8px;
  color: var(--gray-light);
  margin-bottom: 40px;
  animation: fadeInUp 1s 0.9s both;
}
.hero-buttons {
  display: flex; gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 1s 1.1s both;
}
.hero-stats {
  display: flex; gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s 1.3s both;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--red);
}
.stat-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}
.hero-scroll {
  position: absolute; bottom: 30px;
  left: 50%; transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll a { color: var(--red); font-size: 24px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================== SECTIONS ==================== */
section {
  padding: 100px 0;
  position: relative;
}
section:nth-child(even) {
  background: var(--black-light);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(227, 24, 55, 0.15);
  border: 1px solid rgba(227, 24, 55, 0.3);
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 4px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.2;
}
.title-line {
  width: 60px; height: 3px;
  background: var(--red);
  margin: 16px auto 0;
}
.title-line-left { margin-left: 0; }
.section-subtitle {
  color: var(--gray);
  margin-top: 12px;
  font-size: 16px;
}

/* ==================== ABOUT ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.6s;
}
.about-image:hover img { transform: scale(1.05); }
.about-image-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--red);
  padding: 15px 20px;
  border-radius: 4px;
  text-align: center;
}
.badge-year {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
}
.badge-text {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.about-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.about-content > p {
  color: var(--gray-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-feature {
  display: flex; gap: 15px;
  align-items: flex-start;
  padding: 15px;
  background: var(--black-card);
  border-radius: 8px;
  border: 1px solid var(--black-border);
  transition: var(--transition);
}
.about-feature:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}
.feature-icon {
  width: 45px; height: 45px;
  background: rgba(227, 24, 55, 0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 18px;
}
.about-feature h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.about-feature p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.4;
}

/* ==================== GALLERY ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 2px;
}

/* ==================== COFFEE ==================== */
#coffee { background: linear-gradient(135deg, var(--black) 0%, #1a0505 100%); }
.coffee-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.coffee-content .section-title { text-align: left; }
.coffee-content p {
  color: var(--gray-light);
  line-height: 1.8;
  margin: 20px 0 30px;
}
.coffee-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.coffee-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px;
}
.coffee-feat i { color: var(--red); }
.coffee-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.coffee-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  transition: var(--transition);
  width: 100%;
}
.coffee-card:hover {
  border-color: var(--red);
  box-shadow: 0 20px 60px rgba(227, 24, 55, 0.1);
  transform: translateY(-5px);
}
.coffee-icon-big {
  width: 100px; height: 100px;
  background: rgba(227, 24, 55, 0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 30px;
  font-size: 40px;
  color: var(--red);
}
.coffee-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}
.coffee-card p {
  color: var(--gray);
  font-size: 15px;
}

/* ==================== PRODUCTS PREVIEW ==================== */
.products-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.product-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.product-card:hover .product-card-image img { transform: scale(1.1); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}
.product-card-body { padding: 20px; }
.product-card-category {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.product-card-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-card-price {
  display: flex; align-items: center; gap: 10px;
}
.product-card-price .current {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
}
.product-card-price .old {
  font-size: 15px;
  color: var(--gray);
  text-decoration: line-through;
}

/* ==================== PRICING ==================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--black-border);
}
.pricing-card.popular {
  border-color: var(--red);
  box-shadow: 0 20px 60px var(--red-glow);
}
.pricing-card.popular::before {
  content: 'POPULAIRE';
  position: absolute;
  top: 20px; right: -30px;
  background: var(--red);
  padding: 5px 40px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  transform: rotate(45deg);
}
.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.pricing-duration {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-price span {
  font-size: 18px;
  color: var(--gray);
}
.pricing-features {
  margin: 30px 0;
  text-align: left;
}
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--black-border);
  display: flex; align-items: center; gap: 10px;
  font-size: 15px;
  color: var(--gray-light);
}
.pricing-features li i {
  color: var(--red);
  font-size: 12px;
}

/* ==================== CONTACT ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  padding: 30px;
}
.contact-item {
  display: flex; gap: 16px;
  padding: 16px 0;
  align-items: flex-start;
}
.contact-item:not(:last-child) { border-bottom: 1px solid var(--black-border); }
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(227, 24, 55, 0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.contact-item p { color: var(--gray-light); font-size: 14px; }
.social-links {
  display: flex; gap: 12px;
  margin-top: 20px;
}
.social-link {
  width: 48px; height: 48px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}
.contact-form {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  padding: 30px;
}
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--black);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  color: var(--white);
  font-size: 15px;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ==================== FOOTER ==================== */
#footer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.footer-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--red);
}
.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 0;
}
.footer-brand p { color: var(--gray); font-size: 14px; letter-spacing: 2px; }
.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--red);
}
.footer-links a {
  display: block;
  color: var(--gray);
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 20px;
  text-align: center;
  color: var(--gray);
  font-size: 13px;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  background: var(--red);
  color: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 100;
  box-shadow: 0 4px 20px var(--red-glow);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); background: var(--red-light); }

/* ==================== LIGHTBOX ==================== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90%; max-height: 90vh;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  color: var(--white); font-size: 36px;
  background: none; cursor: pointer;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .about-grid,
  .coffee-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img { height: 350px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--black-light);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: right 0.4s;
    border-left: 1px solid var(--black-border);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 30px; }
  .about-features { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-tagline { letter-spacing: 4px; font-size: 14px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { padding: 12px 24px; font-size: 14px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .products-preview { grid-template-columns: 1fr; }
}
