/* ========================================
   Luminéa Pro — Premium Italian Skincare
   Color Palette: Black · Gray · White · Gold
   ======================================== */

:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --gray-dark: #1a1a1a;
  --gray: #2a2a2a;
  --gray-mid: #555555;
  --gray-light: #888888;
  --gray-pale: #cccccc;
  --white: #ffffff;
  --white-soft: #f5f5f0;
  --gold: #c9a962;
  --gold-light: #d4b87a;
  --gold-dark: #a8893f;
  --gold-glow: rgba(201, 169, 98, 0.3);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white-soft);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm { padding: 10px 20px; font-size: 0.72rem; }
.btn-lg { padding: 18px 40px; font-size: 0.85rem; width: 100%; }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-dark);
  border-top: 1px solid var(--gold-dark);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-content p {
  font-size: 0.85rem;
  color: var(--gray-pale);
  flex: 1;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: var(--radius);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.logo-text strong {
  color: var(--gold);
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--gray-pale);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav a:hover { color: var(--gold); }

.header-cta { flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  max-width: 680px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 6px 16px;
  margin-bottom: 24px;
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-content > p {
  font-size: 1rem;
  color: var(--gray-pale);
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-controls {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
}

.hero-dot.active,
.hero-dot:hover {
  background: var(--gold);
  width: 60px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--gray-dark);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  padding: 24px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-item span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-pale);
}

/* ---- Sections ---- */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

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

.section-header.center .section-desc {
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 600px;
  font-weight: 300;
}

/* ---- Product ---- */
.product-section {
  background: var(--black-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-image-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-dark);
}

.product-image-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius);
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.product-thumbs .thumb {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  opacity: 0.5;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.product-thumbs .thumb.active,
.product-thumbs .thumb:hover {
  opacity: 1;
  border-color: var(--gold);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.stars { color: var(--gold); font-size: 1rem; }

.product-rating span:last-child {
  font-size: 0.8rem;
  color: var(--gray-light);
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 16px;
}

.product-info > p {
  color: var(--gray-pale);
  margin-bottom: 24px;
  font-weight: 300;
}

.product-features {
  list-style: none;
  margin-bottom: 32px;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  color: var(--gray-pale);
}

.product-features svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.product-price {
  margin-bottom: 24px;
}

.price-old {
  font-size: 1rem;
  color: var(--gray-light);
  text-decoration: line-through;
  margin-right: 12px;
}

.price-current {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 600;
}

.price-note {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-light);
  margin-top: 4px;
}

.product-disclaimer {
  font-size: 0.72rem;
  color: var(--gray-mid);
  margin-top: 16px;
  font-style: italic;
}

/* ---- Benefits ---- */
.benefits-section {
  background: var(--black);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--gray-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 36px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.benefit-card:hover {
  border-color: rgba(201, 169, 98, 0.3);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  color: var(--gold);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--gray-light);
  font-weight: 300;
}

/* ---- Lifestyle Banner ---- */
.lifestyle-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.lifestyle-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
}

.lifestyle-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
}

.lifestyle-content blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.lifestyle-content cite {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.1em;
}

/* ---- Technology ---- */
.tech-section {
  background: var(--black-soft);
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tech-visual {
  position: relative;
}

.tech-visual img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.tech-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 24px 28px;
  border-radius: var(--radius);
  text-align: center;
}

.tech-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.tech-float-card span:last-child {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

.tech-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.tech-content > p {
  color: var(--gray-light);
  margin-bottom: 36px;
  font-weight: 300;
}

.tech-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tech-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.tech-item-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  line-height: 1;
}

.tech-item h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.tech-item p {
  font-size: 0.85rem;
  color: var(--gray-light);
  font-weight: 300;
}

/* ---- How It Works ---- */
.how-section {
  background: var(--black);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.how-step {
  text-align: center;
  position: relative;
}

.how-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 4/3;
}

.how-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.how-step:hover .how-img img {
  transform: scale(1.05);
}

.how-num {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 auto 16px;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.how-step p {
  font-size: 0.85rem;
  color: var(--gray-light);
  font-weight: 300;
}

/* ---- Gallery ---- */
.gallery-section {
  background: var(--black-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item.large {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- Articles ---- */
.articles-section {
  background: var(--black);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: var(--gray-dark);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
}

.article-card:hover {
  border-color: rgba(201, 169, 98, 0.3);
  transform: translateY(-4px);
}

.article-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.article-card:hover .article-img img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius);
}

.article-body {
  padding: 24px;
}

.article-body time {
  font-size: 0.75rem;
  color: var(--gray-light);
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 10px 0 12px;
}

.article-body h3 a {
  color: var(--white);
}

.article-body h3 a:hover { color: var(--gold); }

.article-body p {
  font-size: 0.85rem;
  color: var(--gray-light);
  font-weight: 300;
  margin-bottom: 16px;
}

.article-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- Testimonials ---- */
.testimonials-section {
  background: var(--black-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--gray-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: var(--radius);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-card > p {
  font-size: 0.9rem;
  color: var(--gray-pale);
  font-style: italic;
  margin-bottom: 24px;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--gray-light);
}

/* ---- FAQ ---- */
.faq-section {
  background: var(--black);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item summary {
  padding: 24px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover { color: var(--gold); }

.faq-item p {
  padding-bottom: 24px;
  font-size: 0.88rem;
  color: var(--gray-light);
  font-weight: 300;
  line-height: 1.8;
}

/* ---- Contact ---- */
.contact-section {
  background: var(--black-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray-light);
  margin-bottom: 32px;
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail span {
  font-size: 0.9rem;
  color: var(--gray-pale);
}

.contact-form {
  background: var(--gray-dark);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-pale);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-mid);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-bottom: 24px;
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--gold);
}

/* ---- Footer ---- */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 169, 98, 0.15);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-top: 16px;
  font-weight: 300;
}

.footer-company {
  margin-top: 16px !important;
  font-size: 0.78rem !important;
  color: var(--gray-mid) !important;
}

.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

.footer-disclaimer {
  margin-top: 8px;
  font-style: italic;
}

/* ---- Legal Pages ---- */
.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.legal-page .legal-date {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin: 32px 0 12px;
}

.legal-page p,
.legal-page li {
  font-size: 0.9rem;
  color: var(--gray-pale);
  margin-bottom: 12px;
  font-weight: 300;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ---- Article Page ---- */
.article-page {
  padding-top: 120px;
  padding-bottom: 80px;
}

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

.article-hero .article-category {
  position: static;
  display: inline-block;
  margin-bottom: 16px;
}

.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 32px;
}

.article-featured-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}

.article-featured-img img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}

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

.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin: 32px 0 16px;
}

.article-content p {
  font-size: 0.95rem;
  color: var(--gray-pale);
  margin-bottom: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.article-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.article-content li {
  font-size: 0.95rem;
  color: var(--gray-pale);
  margin-bottom: 8px;
  font-weight: 300;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

/* ---- Form Success ---- */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.visible { display: block; }

.form-success svg {
  width: 60px;
  height: 60px;
  color: var(--gold);
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .product-grid,
  .tech-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-grid,
  .how-grid,
  .articles-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tech-float-card {
    right: 10px;
    bottom: -10px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--gray-dark);
    flex-direction: column;
    padding: 80px 32px 32px;
    transition: right var(--transition);
    border-left: 1px solid rgba(201, 169, 98, 0.2);
  }

  .nav.open { right: 0; }

  .burger { display: flex; }

  .header-cta { display: none; }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid,
  .how-grid,
  .articles-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-scroll { display: none; }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .product-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-form {
    padding: 24px;
  }
}
