/* ============================
   JeeDee — Brand Design System
   ============================ */

:root {
  --brand-dark: #1a1a1a;
  --brand-deep: #111111;
  --brand-gold: #c9a84c;
  --brand-gold-hover: #dbb95a;
  --brand-gold-light: rgba(201, 168, 76, 0.12);
  --brand-bg: #faf9f7;
  --brand-white: #ffffff;
  --brand-text: #2d2d2d;
  --brand-muted: #777;
  --brand-border: #e8e4de;
  --brand-section-alt: #f3f1ed;
  --wb-color: #cb11ab;
  --ozon-color: #005bff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1120px;
}

/* ====== RESET ====== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--brand-bg);
  color: var(--brand-text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ====== NAV ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-muted);
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--brand-gold);
  border-radius: 1px;
}

.btn-tg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--brand-dark);
  color: var(--brand-white) !important;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition);
}

.btn-tg:hover { background: #333; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(0,0,0,0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--brand-gold-light);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  color: var(--brand-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--brand-white);
  min-width: 180px;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-wb { background: linear-gradient(135deg, #cb11ab, #a60e8c); }
.btn-ozon { background: linear-gradient(135deg, #005bff, #004add); }
.btn-lg { padding: 16px 44px; font-size: 16px; }
.btn-gold {
  background: var(--brand-gold);
  color: var(--brand-dark);
}
.btn-gold:hover { background: var(--brand-gold-hover); }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stat strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-gold);
  line-height: 1.2;
}

.hero-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ====== SECTIONS ====== */
.section {
  padding: 96px 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--brand-muted);
  font-size: 15px;
  margin-bottom: 56px;
}

/* ====== BENEFITS ====== */
.benefits-section {
  background: var(--brand-white);
}

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

.benefit-card {
  padding: 36px 28px;
  background: var(--brand-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--brand-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-gold-light);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--brand-gold);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.benefit-card p {
  font-size: 14px;
  color: var(--brand-muted);
  line-height: 1.6;
}

/* ====== GALLERY ====== */
.gallery-section {
  background: var(--brand-section-alt);
}

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

.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
  aspect-ratio: 3 / 4;
}

.gallery-card:hover { transform: scale(1.02); }

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====== SPECS ====== */
.specs-section {
  background: var(--brand-white);
}

.specs-grid {
  max-width: 680px;
  margin: 0 auto 40px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--brand-border);
}

.spec-row:last-child { border-bottom: none; }

.spec-label {
  font-size: 14px;
  color: var(--brand-muted);
  font-weight: 500;
}

.spec-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-dark);
  text-align: right;
}

.specs-certs {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cert-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.cert-link:hover {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px var(--brand-gold-light);
}

.cert-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ====== CTA ====== */
.cta-section {
  background: var(--brand-bg);
  padding: 80px 0;
}

.cta-card {
  background: var(--brand-dark);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
}

.cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--brand-white);
  margin-bottom: 12px;
}

.cta-card p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--brand-deep);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-white);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-pplx {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer-pplx:hover { color: rgba(255,255,255,0.6); }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--brand-white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
    border-bottom: 1px solid var(--brand-border);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--brand-border);
    font-size: 15px;
  }

  .nav-links a.active::after { display: none; }

  .nav-cta { padding-top: 8px; border-bottom: none; }

  .btn-tg { width: 100%; text-align: center; justify-content: center; }

  .hero-content { padding: 100px 20px 60px; }

  .hero-stats { gap: 24px; }

  .gallery-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

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

  .specs-certs { flex-direction: column; align-items: center; }

  .cta-card { padding: 48px 24px; }

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

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; }
  .section { padding: 64px 0; }
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ====== WARRANTY PAGE ====== */
.page-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: var(--brand-white);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
  color: var(--brand-dark);
}

.page-hero p {
  color: var(--brand-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

/* Warranty generator embedded */
.warranty-gen {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 0;
}

.warranty-form-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--brand-border);
}

.warranty-form-card .form-group {
  margin-bottom: 24px;
}

.warranty-form-card label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand-text);
  margin-bottom: 8px;
}

.warranty-form-card input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  border: 1.5px solid var(--brand-border);
  border-radius: 10px;
  background: var(--brand-bg);
  color: var(--brand-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.warranty-form-card input:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px var(--brand-gold-light);
}

.warranty-form-card .btn-generate {
  width: 100%;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--brand-dark);
  color: var(--brand-white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background var(--transition);
}

.warranty-form-card .btn-generate:hover { background: #333; }

/* ====== RECIPES PAGE ====== */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.recipe-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--brand-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.recipe-card-img {
  height: 200px;
  overflow: hidden;
}

.recipe-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipe-card-body {
  padding: 24px;
}

.recipe-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.recipe-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.recipe-meta span {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.recipe-card-body p {
  font-size: 14px;
  color: var(--brand-muted);
  line-height: 1.6;
}

/* ====== B2B PAGE ====== */
.b2b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.b2b-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--brand-border);
  text-align: center;
}

.b2b-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.b2b-card p {
  font-size: 14px;
  color: var(--brand-muted);
  line-height: 1.6;
}

.b2b-form-section {
  max-width: 560px;
  margin: 0 auto;
}

.b2b-form-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  text-align: center;
  margin-bottom: 8px;
}

.b2b-form-section > p {
  text-align: center;
  color: var(--brand-muted);
  margin-bottom: 32px;
}

.b2b-form {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--brand-border);
}

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

.b2b-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand-text);
  margin-bottom: 8px;
}

.b2b-form input,
.b2b-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  border: 1.5px solid var(--brand-border);
  border-radius: 10px;
  background: var(--brand-bg);
  color: var(--brand-text);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

.b2b-form input:focus,
.b2b-form textarea:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px var(--brand-gold-light);
}

.b2b-form .btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--brand-gold);
  color: var(--brand-dark);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background var(--transition);
}

.b2b-form .btn-submit:hover { background: var(--brand-gold-hover); }

@media (max-width: 768px) {
  .b2b-grid { grid-template-columns: 1fr; }
  .b2b-form { padding: 32px 24px; }
}

/* ====== CERTIFICATE ====== */
.certificate-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 0;
}

.certificate {
  position: relative;
  background: var(--brand-white);
  border: 2px solid var(--brand-gold);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Golden decorative corners */
.cert-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--brand-gold);
  border-style: solid;
}

.cert-corner-tl { top: 12px; left: 12px; border-width: 3px 0 0 3px; border-radius: 8px 0 0 0; }
.cert-corner-tr { top: 12px; right: 12px; border-width: 3px 3px 0 0; border-radius: 0 8px 0 0; }
.cert-corner-bl { bottom: 12px; left: 12px; border-width: 0 0 3px 3px; border-radius: 0 0 0 8px; }
.cert-corner-br { bottom: 12px; right: 12px; border-width: 0 3px 3px 0; border-radius: 0 0 8px 0; }

.cert-header {
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--brand-border);
}

.cert-logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  margin: 0 auto 12px;
}

.cert-brand {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.cert-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-gold);
}

.cert-number {
  font-size: 12px;
  color: var(--brand-muted);
  margin-top: 8px;
  font-family: monospace;
  letter-spacing: 1px;
}

.cert-body {}

.cert-product {
  text-align: center;
  margin-bottom: 28px;
}

.cert-product h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-muted);
  margin-bottom: 8px;
}

.cert-product p {
  font-size: 14px;
  color: var(--brand-text);
  line-height: 1.6;
}

.cert-details {
  max-width: 480px;
  margin: 0 auto 28px;
}

.cert-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--brand-border);
}

.cert-detail-row:last-child { border-bottom: none; }

.cert-detail-label {
  font-size: 13px;
  color: var(--brand-muted);
}

.cert-detail-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
}

.cert-warranty-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  margin: 28px auto;
  max-width: 280px;
  background: var(--brand-gold-light);
  border: 2px solid var(--brand-gold);
  border-radius: var(--radius);
}

.cert-warranty-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--brand-gold);
  line-height: 1;
}

.cert-warranty-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-dark);
  line-height: 1.4;
}

.cert-conditions {
  margin: 32px 0;
  padding: 24px;
  background: var(--brand-bg);
  border-radius: var(--radius);
}

.cert-conditions h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--brand-dark);
}

.cert-conditions ol {
  padding-left: 20px;
}

.cert-conditions li {
  font-size: 12px;
  color: var(--brand-muted);
  line-height: 1.7;
  margin-bottom: 4px;
}

.cert-footer-info {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--brand-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  font-size: 12px;
  color: var(--brand-muted);
  line-height: 1.6;
}

.cert-footer-info h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.cert-footer-info a {
  color: var(--brand-gold);
}

.cert-footer-info a:hover {
  text-decoration: underline;
}

.cert-company {
  text-align: right;
}

.cert-certificate-id {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 11px;
  color: var(--brand-muted);
  padding-top: 12px;
  border-top: 1px solid var(--brand-border);
}

.certificate-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .certificate { padding: 32px 20px; }
  .cert-corner { width: 40px; height: 40px; }
  .cert-footer-info { grid-template-columns: 1fr; }
  .cert-company { text-align: left; }
  .certificate-actions { flex-direction: column; align-items: center; }
  .certificate-actions .btn { width: 100%; }
}

/* ====== Print (for warranty) ====== */
@media print {
  .nav, .footer, .hero-actions, .certificate-actions, .warranty-gen, .page-hero { display: none !important; }
  body { background: white; }
  .certificate-wrapper { display: block !important; margin: 0; padding: 0; }
  .certificate { box-shadow: none; border: 2px solid #c9a84c; }
  .cert-corner { border-color: #c9a84c; }
  .cert-warranty-badge { background: #fdf6e3; border-color: #c9a84c; }
  .cert-conditions { background: #f9f9f9; }
}
