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

:root {
  --bg: #f7f4f0;
  --bg2: #e8ddd4;
  --surface: #ffffff;
  --surface2: #fcfbf9;
  --red: #8b1a35;
  --red2: #c02040;
  --red-dark: #5c0a1f;
  --red-light: #c02040;
  --text: #1a0810;
  --text2: #806050;
  --text3: #a08070;
  --border: rgba(139,26,53,0.15);
  --border2: rgba(139,26,53,0.08);
  --radius: 16px;
  --shadow: 0 8px 40px rgba(139,26,53,0.08);
  --shadow2: 0 4px 20px rgba(26,8,16,0.06);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(247,244,240,0.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(139,26,53,0.08);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px; height: 72px;
}
.nav-logo-img { height: 52px; width: auto; object-fit: contain; }
.nav-links { display: flex; list-style: none; gap: 32px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 700; transition: color 0.2s; letter-spacing: 0.2px; }
.nav-links a:hover { color: var(--red); }
.nav-cta { margin-left: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--red); border-radius: 2px; }
.mobile-menu { display: none; flex-direction: column; gap: 16px; padding: 20px 24px; border-top: 1px solid var(--border); background: var(--bg); }
.mobile-menu a { color: var(--text); text-decoration: none; font-size: 15px; font-weight: 600; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--red); }
.mobile-menu.open { display: flex; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-size: 14px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none; transition: all 0.25s; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #f5e6d0;
  box-shadow: 0 4px 20px rgba(139,26,53,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139,26,53,0.5); background: linear-gradient(135deg, var(--red-light), var(--red)); }
.btn-outline {
  background: transparent; color: #c8987a;
  border: 2px solid rgba(200,152,122,0.4);
}
.btn-outline:hover { background: rgba(200,152,122,0.1); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ── HERO ── */
#hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 24px 80px; max-width: 1200px; margin: 0 auto; gap: 60px;
}
.hero-bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; background: linear-gradient(135deg, #1a0810 0%, #2d0f1c 50%, #3d1525 100%); }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(204,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,0,0,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.glow-1 { width: 600px; height: 600px; background: rgba(204,0,0,0.07); top: -150px; right: -100px; }
.glow-2 { width: 400px; height: 400px; background: rgba(204,0,0,0.05); bottom: 0; left: -80px; }

.hero-content { flex: 1; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,230,208,0.1); border: 1px solid rgba(245,230,208,0.2);
  padding: 8px 18px; border-radius: 50px; font-size: 13px; color: #c8987a;
  margin-bottom: 28px; font-weight: 600;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

.hero-title { font-family: 'Outfit', sans-serif; font-size: clamp(38px,5vw,62px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; color: #f5e6d0; }
.gradient-text { color: #c8987a; }
.hero-desc { font-size: 17px; color: #a08070; line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Outfit', sans-serif; font-size: 30px; font-weight: 800; color: #c8987a; }
.stat-label { font-size: 12px; color: #a08070; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(245,230,208,0.2); }

.hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; position: relative; min-height: 500px; }
.hero-img-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img { width: 360px; max-width: 100%; border-radius: 24px; position: relative; z-index: 2; filter: drop-shadow(0 20px 60px rgba(204,0,0,0.2)); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }

.hero-img-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(204,0,0,0.12); animation: ripple 4s ease-out infinite; }
.ring-1 { width: 420px; height: 420px; animation-delay: 0s; }
.ring-2 { width: 520px; height: 520px; animation-delay: 0.8s; }
.ring-3 { width: 620px; height: 620px; animation-delay: 1.6s; }
@keyframes ripple { 0%{opacity:0.5;transform:scale(0.9)} 100%{opacity:0;transform:scale(1.1)} }

.hero-badge-float {
  position: absolute; background: #fff; border: 1.5px solid var(--border);
  padding: 10px 16px; border-radius: 12px; display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--text); z-index: 3;
  box-shadow: 0 4px 20px rgba(204,0,0,0.15);
}
.badge-ai { top: 60px; right: -20px; }
.badge-fda { bottom: 80px; left: -20px; }

/* ── MARQUEE ── */
.marquee-section {
  padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%); overflow: hidden;
}
.marquee-label { text-align: center; font-size: 11px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; font-weight: 600; }
.marquee-track { overflow: hidden; }
.marquee-inner { display: flex; gap: 60px; width: max-content; animation: marquee 28s linear infinite; }
.marquee-inner span { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.9); white-space: nowrap; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SECTIONS ── */
.section { padding: 100px 0; position: relative; background: var(--bg); }
.section-light { background: var(--bg2); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; background: rgba(204,0,0,0.08); border: 1.5px solid rgba(204,0,0,0.25);
  color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.section-header h2 { font-family: 'Outfit', sans-serif; font-size: clamp(28px,4vw,44px); font-weight: 800; margin-bottom: 14px; color: var(--text); }
.section-header p { color: var(--text2); font-size: 17px; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── SOLUTIONS ── */
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.solution-card {
  background: #fff; border: 1.5px solid var(--border2);
  border-radius: var(--radius); padding: 32px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow2);
  cursor: pointer;
}
.solution-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(139,26,53,0.4);
  box-shadow: 0 25px 70px rgba(139,26,53,0.15);
  background: linear-gradient(135deg, #ffffff, rgba(204,0,0,0.02));
}
.solution-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(204,0,0,0.08); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--red);
}
.solution-icon svg { width: 26px; height: 26px; fill: var(--red); stroke: var(--red); }
.solution-card h3 { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.solution-card p { color: var(--text2); line-height: 1.6; font-size: 14px; margin-bottom: 20px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feature-list li { font-size: 13px; color: var(--text3); padding-left: 18px; position: relative; font-weight: 500; }
.feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--red); font-size: 12px; }

/* ── PRODUCTS ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.product-card {
  background: #fff; border: 1.5px solid var(--border2);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow2); position: relative;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 70px rgba(139,26,53,0.18);
  border-color: rgba(139,26,53,0.4);
}
.product-card.featured { border-color: rgba(204,0,0,0.45); box-shadow: 0 0 40px rgba(204,0,0,0.12); }
.product-badge { position: absolute; top: 16px; left: 16px; background: linear-gradient(135deg,var(--red),var(--red-dark)); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 14px; border-radius: 50px; z-index: 2; letter-spacing: 0.5px; }
.product-img { width: 100%; height: 220px; object-fit: cover; }
.product-info { padding: 24px; }
.product-info h3 { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.product-info p { color: var(--text2); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.product-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.product-specs span { background: var(--bg2); border: 1px solid var(--border); color: var(--text2); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 50px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img { width: 100%; border-radius: 20px; object-fit: cover; max-height: 500px; box-shadow: var(--shadow); }
.about-img.about-logo-img {
  width: 100%;
  max-width: 650px;
  height: 420px;
  display: block;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  object-fit: contain;
  border: 1.5px solid var(--border);
  box-shadow: 0 20px 70px rgba(139,26,53,0.1);
  animation: float 6s ease-in-out infinite;
}
.card-float {
  position: absolute; background: #fff; border: 1.5px solid var(--border);
  border-radius: 14px; padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 30px rgba(204,0,0,0.12);
}
.card-float:first-of-type { bottom: -24px; right: -24px; }
.card-float-2 { top: -20px; left: -20px; }
.about-card-icon { font-size: 28px; }
.card-float strong { font-size: 14px; font-weight: 700; color: var(--text); display: block; }
.card-float p { font-size: 12px; color: var(--text2); margin: 0; }
.about-content .section-tag { display: inline-block; margin-bottom: 16px; }
.about-content h2 { font-family: 'Outfit', sans-serif; font-size: clamp(26px,3vw,40px); font-weight: 800; margin-bottom: 20px; color: var(--text); }
.about-content p { color: var(--text2); line-height: 1.7; font-size: 15px; margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); margin-top: 6px; flex-shrink: 0; }
.value-item div { font-size: 14px; color: var(--text2); line-height: 1.6; }
.value-item strong { color: var(--text); }

/* ── TECHNOLOGY ── */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tech-feature {
  padding: 32px; background: #fff; border: 1.5px solid var(--border2);
  border-radius: var(--radius); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
  box-shadow: var(--shadow2);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.tech-feature::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--red),#ff6666); opacity:0; transition:0.3s; }
.tech-feature:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(139,26,53,0.4);
  box-shadow: 0 25px 70px rgba(139,26,53,0.15);
  background: linear-gradient(135deg, #ffffff, rgba(204,0,0,0.02));
}
.tech-feature:hover::before { opacity: 1; }
.tech-num { font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 900; color: rgba(204,0,0,0.1); margin-bottom: 12px; line-height: 1; }
.tech-feature h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.tech-feature p { color: var(--text2); font-size: 14px; line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff; border: 1.5px solid var(--border2);
  border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.testimonial-card.featured-testimonial { background: #fff; border-color: var(--border2); }
.testimonial-card:hover, .testimonial-card:active {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(139,26,53,0.4);
  box-shadow: 0 25px 70px rgba(139,26,53,0.15);
  background: linear-gradient(135deg, rgba(204,0,0,0.04), rgba(204,0,0,0.02));
}
.stars { color: #e8a000; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; transition: transform 0.3s ease; }
.testimonial-card:hover .stars { transform: scale(1.15) translateX(5px); }
.testimonial-card p { color: var(--text2); font-size: 14px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--red),var(--red-dark)); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #fff; flex-shrink: 0; }
.testimonial-author strong { font-size: 14px; display: block; color: var(--text); }
.testimonial-author span { font-size: 12px; color: var(--text2); }

/* ── CONTACT / CTA ── */
.section-cta {
  background: linear-gradient(135deg, #2d0f1c 0%, #1a0810 100%);
  position: relative; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.section-cta .container { position: relative; z-index: 1; }
.section-cta .section-tag { background: rgba(245,230,208,0.1); border-color: rgba(245,230,208,0.2); color: #c8987a; }
.cta-content h2 { font-family: 'Outfit', sans-serif; font-size: clamp(26px,3vw,40px); font-weight: 800; margin: 16px 0 14px; color: #f5e6d0; }
.cta-content p { color: #a08070; font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: #c8987a; }
.contact-item a { color: #c8987a; text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: #f5e6d0; }
.contact-icon { font-size: 22px; margin-top: 2px; }
.logo-contact-wrap { margin-top: 32px; }
.footer-logo-img { height: 60px; width: auto; object-fit: contain; background: #fff; border-radius: 10px; padding: 6px 14px; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form { background: #fff; border-radius: 20px; padding: 36px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 12px 16px; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 14px; transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,0,0,0.08); }
.form-group textarea { resize: vertical; }
.form-success { display: none; text-align: center; color: var(--red); font-size: 14px; font-weight: 600; margin-top: 16px; padding: 12px; background: rgba(204,0,0,0.06); border-radius: 8px; border: 1px solid rgba(204,0,0,0.2); }
.form-success.show { display: block; }

/* ── FOOTER ── */
footer { background: #1a0810; border-top: 3px solid var(--red); padding: 60px 0 32px; }
footer * { --text2: rgba(245,230,208,0.55); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .footer-logo-img { height: 56px; background: #fff; border-radius: 8px; padding: 6px 12px; }
.footer-brand p { color: rgba(245,230,208,0.55); font-size: 14px; line-height: 1.7; margin: 16px 0 20px; max-width: 260px; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 36px; height: 36px; border-radius: 8px; background: rgba(245,230,208,0.08); border: 1px solid rgba(245,230,208,0.12); display: flex; align-items: center; justify-content: center; color: rgba(245,230,208,0.6); text-decoration: none; font-size: 13px; font-weight: 700; transition: 0.2s; }
.social-links a:hover { background: var(--red); color: #f5e6d0; border-color: var(--red); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 13px; font-weight: 800; color: #f5e6d0; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.footer-col a { color: rgba(245,230,208,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: #c8987a; }
.footer-col span { color: rgba(245,230,208,0.55); font-size: 13px; }
.footer-bottom { border-top: 1px solid rgba(245,230,208,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(245,230,208,0.4); font-size: 13px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(245,230,208,0.4); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: #c8987a; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #hero { flex-direction: column; text-align: center; padding: 100px 24px 60px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { min-height: 300px; }
  .hero-img { width: 260px; }
  .ring-2, .ring-3 { display: none; }
  .badge-ai, .badge-fda { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .tech-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .card-float { display: none; }
}

/* ── PRODUCT PLACEHOLDER (no image yet) ── */
.products-grid-3 { grid-template-columns: repeat(3, 1fr); }
.product-img-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #fdf0f0, #fae0e0);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.prod-icon { font-size: 48px; }
.img-coming { font-size: 12px; color: var(--text2); font-weight: 600; letter-spacing: 0.5px; }
.product-brand-tag {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  padding: 3px 10px; border-radius: 4px; margin-bottom: 8px;
}
.products-note {
  text-align: center; margin-top: 36px; color: var(--text2);
  font-size: 14px; font-weight: 500;
  background: rgba(204,0,0,0.05); border: 1px dashed rgba(204,0,0,0.2);
  padding: 14px 24px; border-radius: 10px; display: inline-block;
  width: 100%;
}

/* ── SONOSCAPE SECTION ── */
.sonoscape-section { background: linear-gradient(135deg, #1a0810, #2d0f1c); border-top: 1px solid rgba(139,26,53,0.2); }
.sonoscape-header { text-align: center; margin-bottom: 52px; }
.sonoscape-badge {
  display: inline-block; background: rgba(245,230,208,0.1); border: 1.5px solid rgba(245,230,208,0.2);
  color: #c8987a; font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 6px 18px; border-radius: 50px; margin-bottom: 20px;
}
.sonoscape-logo {
  display: block; margin: 0 auto 20px;
  height: 60px; width: auto; object-fit: contain;
  background: #fcfbf9; border-radius: 10px; padding: 8px 20px;
}
.sonoscape-header h2 { font-family: 'Outfit', sans-serif; font-size: clamp(24px,3.5vw,38px); font-weight: 800; color: #f5e6d0; margin-bottom: 14px; }
.sonoscape-header p { color: #a08070; font-size: 16px; line-height: 1.7; max-width: 640px; margin: 0 auto; }
.sonoscape-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }
.sonoscape-card {
  background: rgba(245,230,208,0.05); border: 1px solid rgba(245,230,208,0.15);
  border-radius: 16px; padding: 28px 24px; text-align: center;
  transition: 0.3s;
}
.sonoscape-card:hover { background: rgba(245,230,208,0.08); border-color: rgba(245,230,208,0.35); transform: translateY(-4px); }
.ss-icon { font-size: 36px; margin-bottom: 14px; }
.sonoscape-card h4 { font-size: 16px; font-weight: 700; color: #f5e6d0; margin-bottom: 10px; }
.sonoscape-card p { font-size: 13px; color: #a08070; line-height: 1.7; }
.sonoscape-cta { text-align: center; }
.sonoscape-cta p { color: #a08070; font-size: 13px; margin-bottom: 20px; }
.btn-sonoscape {
  display: inline-flex; align-items: center; padding: 14px 36px; border-radius: 50px;
  font-size: 15px; font-weight: 700; text-decoration: none; cursor: pointer;
  background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #f5e6d0;
  box-shadow: 0 4px 20px rgba(139,26,53,0.35); transition: all 0.25s;
}
.btn-sonoscape:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139,26,53,0.5); }

@media (max-width: 1024px) {
  .products-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .sonoscape-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .products-grid-3 { grid-template-columns: 1fr; }
  .sonoscape-grid { grid-template-columns: 1fr; }
}


/* -- PRODUCT DETAIL CARDS (catalogue style) -- */
.products-section { padding-bottom: 80px; }
.tier-label { display: flex; align-items: center; gap: 16px; margin: 52px 0 32px; }
.tier-badge { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 6px 18px; border-radius: 50px; white-space: nowrap; }
.tier-entry  { background: rgba(245,230,208,0.1); border: 1.5px solid rgba(245,230,208,0.2); color: #c8987a; }
.tier-mid    { background: rgba(245,230,208,0.1); border: 1.5px solid rgba(245,230,208,0.2); color: #f5e6d0; }
.tier-advanced { background: rgba(245,230,208,0.1); border: 1.5px solid rgba(245,230,208,0.2); color: #f5e6d0; }
.tier-line { flex: 1; height: 1px; background: rgba(245,230,208,0.1); }

.prod-detail-card {
  display: grid; grid-template-columns: 420px 1fr; gap: 48px; align-items: start;
  background: #fff; border: 1.5px solid var(--border2); border-radius: 20px;
  padding: 36px; margin-bottom: 32px; box-shadow: var(--shadow2);
  transition: all 0.4s ease;
}
.prod-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(139,26,53,0.12);
  border-color: rgba(139,26,53,0.3);
}
.prod-detail-card.reverse { grid-template-columns: 1fr 420px; }
.prod-detail-card.reverse .prod-detail-img-wrap { order: 2; }
.prod-detail-card.reverse .prod-detail-content { order: 1; }

.prod-detail-img-wrap { position: relative; }
.prod-detail-img {
  width: 100%; height: 280px; object-fit: contain; object-position: center center;
  border-radius: 14px; border: 1px solid var(--border);
  background: #f9f0f0;
}
.prod-model-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--red); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 800;
  padding: 6px 16px; border-radius: 8px;
  box-shadow: 0 4px 12px rgba(204,0,0,0.35);
}
.prod-model-badge.featured-model {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 4px 16px rgba(204,0,0,0.5);
}

.prod-detail-content { display: flex; flex-direction: column; gap: 12px; }
.prod-detail-content h3 { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: var(--text); line-height: 1.3; }
.prod-type-label { display: block; font-size: 13px; font-weight: 500; color: var(--text2); margin-top: 3px; }
.prod-applications { font-size: 13px; color: var(--text2); line-height: 1.6; background: rgba(204,0,0,0.04); border-left: 3px solid var(--red); padding: 10px 14px; border-radius: 0 8px 8px 0; }
.prod-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; }
.prod-features li { font-size: 13px; color: var(--text); padding-left: 18px; position: relative; line-height: 1.5; }
.prod-features li::before { content: '\2022'; position: absolute; left: 0; color: var(--red); font-weight: 700; font-size: 14px; }
.prod-highlight {
  background: linear-gradient(135deg, rgba(204,0,0,0.06), rgba(204,0,0,0.02));
  border: 1px solid rgba(204,0,0,0.15); border-radius: 8px;
  padding: 10px 14px; font-size: 13px; color: var(--red); font-weight: 600;
}

@media (max-width: 900px) {
  .prod-detail-card,
  .prod-detail-card.reverse { grid-template-columns: 1fr; }
  .prod-detail-card.reverse .prod-detail-img-wrap,
  .prod-detail-card.reverse .prod-detail-content { order: unset; }
  .prod-detail-img { height: 220px; }
  .prod-features { grid-template-columns: 1fr; }
}

/* -- SonoScape product card overrides -- */
.ss-brand-tag {
  background: linear-gradient(135deg, var(--red-dark), var(--red)) !important;
}
.ss-placeholder-img {
  object-fit: contain;
  padding: 40px;
  background: var(--surface2);
  border-color: var(--border2) !important;
}
/* SonoScape real machine images - fit without zoom */
.ss-machine-img {
  object-fit: contain;
  padding: 16px;
  background: var(--surface2);
  border-color: var(--border2) !important;
}

/* ── PRODUCTS PORTAL ── */
.portal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.portal-sidebar {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(139,26,53,0.05);
}

.sidebar-category { margin-bottom: 24px; }
.sidebar-category:last-child { margin-bottom: 0; }
.sidebar-category h3 {
  font-size: 16px; color: var(--text); margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.sidebar-category ul { list-style: none; }
.sidebar-category li { margin-bottom: 8px; }
.portal-link {
  text-decoration: none; color: var(--text2); font-size: 14px; font-weight: 500;
  display: block; padding: 8px 12px; border-radius: 6px; transition: all 0.2s;
}
.portal-link:hover { background: var(--surface2); color: var(--red); }
.portal-link.active-filter {
  background: rgba(139,26,53,0.06); color: var(--red);
  font-weight: 700; border-left: 3px solid var(--red);
}

.portal-content { min-height: 500px; }
.portal-pane { animation: fadeIn 0.4s ease forwards; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.empty-state {
  text-align: center; padding: 60px 20px; background: #fff;
  border: 1px dashed var(--border); border-radius: 12px; color: var(--text2);
}

@media (max-width: 900px) {
  .portal-layout { grid-template-columns: 1fr; }
  .portal-sidebar { position: relative; top: 0; }
}
