/* =========================================================
   MINIVERSE KIDS — STYLESHEET
   ========================================================= */

:root {
  --font-fun: 'Fredoka', cursive, sans-serif;
  --font-main: 'Outfit', sans-serif;

  /* Colors */
  --primary: #FF6B00;
  --primary-hover: #E05D00;
  --secondary: #00C853;
  --accent-pink: #FF0055;
  --accent-blue: #00B0FF;
  --accent-purple: #7C4DFF;
  
  --dark-bg: #0F172A;
  --dark-card: #1E293B;
  --dark-border: #334155;
  
  --kids-bg: #FFFDF8;
  --kids-card: #FFFFFF;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #F8FAFC;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 25px rgba(255, 107, 0, 0.3);
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--kids-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  transition: all 0.3s ease;
}

body.mode-b2b .navbar {
  background: rgba(15, 23, 42, 0.9);
  border-bottom-color: var(--dark-border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-fun);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}

body.mode-b2b .logo {
  color: var(--text-light);
}

.logo-badge {
  background: linear-gradient(135deg, var(--primary), #FF0055);
  color: white;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
}

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

.kids-nav, .b2b-nav {
  display: flex;
  gap: 24px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

body.mode-b2b .nav-link {
  color: #94A3B8;
}

body.mode-b2b .nav-link:hover {
  color: white;
}
  border-radius: var(--radius-full);
  gap: 4px;
}

body.mode-b2b .view-switcher {
  background: var(--dark-card);
}

.nav-tab {
  border: none;
  background: transparent;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.nav-tab.active {
  background: white;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

body.mode-b2b .nav-tab.active {
  background: var(--primary);
  color: white;
}

.badge-b2b {
  background: #22C55E;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: var(--radius-full);
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* ================= VIEW TOGGLE SYSTEM ================= */
.view-section {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.view-section.active {
  display: block;
  opacity: 1;
}

/* ================= VIEW 1: KIDS STYLES ================= */
.hero-kids {
  padding: 60px 0;
  background: radial-gradient(circle at top right, #FFF3E0, transparent 60%);
}

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

.tag-fun {
  display: inline-block;
  background: #FFE0B2;
  color: #E65100;
  font-family: var(--font-fun);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-family: var(--font-fun);
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.btn-fun {
  background: linear-gradient(135deg, #FF6B00, #FF0055);
  color: white;
  font-family: var(--font-fun);
  font-size: 1.1rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 0, 85, 0.3);
  transition: all 0.3s ease;
}

.btn-fun:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.hero-image-box {
  position: relative;
  text-align: center;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.floating {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.badge-float {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-fun);
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

/* ALBUM SECTION */
.album-section {
  padding: 60px 0;
}

.section-header h2 {
  font-family: var(--font-fun);
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

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

.progress-box {
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin: 30px 0 40px;
}

.progress-bar-container {
  height: 20px;
  background: #F1F5F9;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00C853, #00E676);
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.badge-percent {
  background: #E8F5E9;
  color: #2E7D32;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.dino-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.dino-card {
  position: relative;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

body.mode-b2b .dino-card {
  background: #1E293B;
  border: 1px solid #334155;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dino-img-wrapper {
  width: 100%;
  height: 240px;
  min-height: 240px;
  max-height: 240px;
  background: #F8FAFC;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 12px;
  box-sizing: border-box;
}

body.mode-b2b .dino-img-wrapper {
  background: #0F172A;
}

.dino-card-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  -webkit-object-fit: contain;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s ease, transform 0.25s ease;
  display: block;
}

.dino-card:hover .dino-card-img {
  transform: scale(1.03);
}

body.mode-b2b .dino-title {
  color: #F8FAFC;
}

body.mode-b2b .dino-desc {
  color: #CBD5E1;
}

body.mode-b2b .views-inspector {
  background: transparent;
  border: none;
  padding: 0;
}

.inspector-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.view-pills {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.view-pill {
  flex: 1;
  border: 1px solid #CBD5E1;
  background: white;
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 2px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

body.mode-b2b .view-pill {
  background: #1E293B;
  color: #E2E8F0;
  border-color: #475569;
}

.view-pill.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.view-desc-text {
  font-size: 0.82rem;
  color: var(--text-dark);
  line-height: 1.4;
  min-height: 38px;
}

body.mode-b2b .view-desc-text {
  color: #94A3B8;
}

.scad-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  background: rgba(255, 107, 0, 0.1);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.scad-link:hover {
  background: var(--primary);
  color: white;
}

.download-3d-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.btn-download-3d {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-download-3d.stl {
  background: #E2E8F0;
  color: #1E293B;
  border: 1px solid #CBD5E1;
}

body.mode-b2b .btn-download-3d.stl {
  background: #334155;
  color: white;
  border-color: #475569;
}

.btn-download-3d.bambu {
  background: linear-gradient(135deg, #00C853, #00E676);
  color: white;
}

.btn-download-3d:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.dino-rarity {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.dino-rarity.raro {
  background: linear-gradient(135deg, #FF0055, #7C4DFF);
}

.dino-title {
  font-family: var(--font-fun);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.dino-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.dino-check-btn {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 2px solid #CBD5E1;
  background: white;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.dino-card.collected .dino-check-btn {
  background: #00C853;
  color: white;
  border-color: #00C853;
}

/* BANNER FIND */
.onde-encontrar {
  padding: 40px 0 80px;
}

.banner-find {
  background: linear-gradient(135deg, #FF6B00, #FF9100);
  color: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-find h2 {
  font-family: var(--font-fun);
  font-size: 2rem;
  margin-bottom: 8px;
}

.banner-badge {
  background: rgba(255,255,255,0.2);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  backdrop-filter: blur(8px);
}

.banner-badge span {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
}

/* ================= VIEW 2: B2B STYLES ================= */
body.mode-b2b {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.hero-b2b {
  padding: 80px 0;
  background: radial-gradient(circle at top left, rgba(255, 107, 0, 0.15), transparent 50%);
}

.tag-b2b {
  display: inline-block;
  background: rgba(255, 107, 0, 0.2);
  color: var(--primary);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 107, 0, 0.3);
}

.hero-b2b h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: white;
}

.stats-row {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.stat-pill {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 12px 20px;
  border-radius: var(--radius-md);
}

.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn-b2b {
  background: var(--primary);
  color: white;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
}

.btn-b2b:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-b2b-outline {
  border: 1px solid var(--dark-border);
  color: white;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-b2b-outline:hover {
  background: rgba(255,255,255,0.05);
}

.badge-b2b-float {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #22C55E;
  color: white;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

/* COMPARISON SECTION */
.comparison-section {
  padding: 80px 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.comp-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 32px;
  border-radius: var(--radius-md);
  position: relative;
}

.comp-card.miniverse {
  border-color: var(--primary);
  background: linear-gradient(180deg, #1E293B 0%, rgba(255, 107, 0, 0.05) 100%);
}

.card-tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.comp-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.comp-card ul {
  list-style: none;
}

.comp-card li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #94A3B8;
}

.comp-card.miniverse li {
  color: #E2E8F0;
}

/* CALCULATOR */
.calc-section {
  padding: 60px 0;
}

.calc-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.calc-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.input-with-symbol {
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 0 14px;
}

.input-with-symbol span {
  color: var(--text-muted);
  font-weight: 700;
}

.input-with-symbol input {
  width: 100%;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 12px;
  outline: none;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

.range-val {
  margin-top: 8px;
  font-weight: 700;
  color: var(--primary);
}

select {
  width: 100%;
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  color: white;
  padding: 14px;
  border-radius: var(--radius-sm);
  outline: none;
  font-size: 1rem;
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.result-box.primary {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(0, 200, 83, 0.2));
  border: 1px solid var(--primary);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
}

.res-title {
  display: block;
  font-size: 0.9rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.res-value {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #22C55E;
  margin: 6px 0;
}

.res-sub {
  font-size: 0.85rem;
  color: #CBD5E1;
}

.result-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.res-mini {
  background: var(--dark-bg);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--dark-border);
}

.res-mini span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.res-mini strong {
  font-size: 1.2rem;
  color: white;
}

/* PACKAGES */
.packages-section {
  padding: 80px 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pkg-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pkg-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.badge-featured {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.pkg-header h3 {
  font-size: 1.4rem;
}

.pkg-qty {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.pkg-price {
  margin: 20px 0;
}

.pkg-price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: white;
}

.pkg-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pkg-features li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #CBD5E1;
}

.btn-pkg {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--dark-border);
  background: transparent;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-pkg.primary {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-pkg:hover {
  background: var(--primary);
}

/* ORDER FORM */
.order-section {
  padding: 60px 0 100px;
}

.order-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.order-header {
  margin-bottom: 30px;
}

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

.order-card input {
  width: 100%;
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  color: white;
  padding: 14px;
  border-radius: var(--radius-sm);
  outline: none;
}

.btn-whatsapp {
  width: 100%;
  background: #22C55E;
  color: white;
  border: none;
  padding: 18px;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-whatsapp:hover {
  background: #16A34A;
  transform: translateY(-2px);
}

/* FOOTER */
.footer {
  background: #0B0F19;
  border-top: 1px solid var(--dark-border);
  padding: 40px 0;
  color: var(--text-muted);
}

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

/* ================= 3D INTERACTIVE MODAL ================= */
.modal-3d-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-3d-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-3d-content {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 800px;
  padding: 30px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  color: white;
}

.btn-close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #EF4444;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
}

.modal-3d-header h3 {
  font-size: 1.5rem;
  color: var(--primary);
}

.modal-3d-header p {
  color: #94A3B8;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.canvas-3d-wrapper {
  width: 100%;
  height: 380px;
  background: #0F172A;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.modal-3d-controls {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn-angle {
  flex: 1;
  background: #334155;
  color: white;
  border: 1px solid #475569;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-angle:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* INSTITUTIONAL B2B FEATURES GRID */
.features-grid-b2b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feat-box-b2b {
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feat-box-b2b:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.feat-icon-b2b {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feat-box-b2b h3 {
  color: #F8FAFC;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.feat-box-b2b p {
  color: #94A3B8;
  font-size: 0.88rem;
  line-height: 1.5;
}

.pkg-badge-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pkg-badge-tag.highlight {
  background: rgba(255, 107, 0, 0.15);
  color: var(--primary);
  border-color: rgba(255, 107, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid, .comparison-grid, .calc-grid, .packages-grid, .form-row {
    grid-template-columns: 1fr;
  }

  .nav-container {
    flex-direction: column;
    gap: 12px;
  }

  .banner-find {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
