html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* =========================================
   NAVBAR
   ========================================= */
.ib-navbar {
  background: #fff;
  border-bottom: 1px solid #e8edf3;
  padding: 0.85rem 0;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.ib-navbar .nav-link {
  color: #374151;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.ib-navbar .nav-link:hover {
  color: #1d4ed8;
  background: #eff6ff;
}

.ib-brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e3a5f !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ib-brand:hover {
  color: #1d4ed8 !important;
}

.ib-brand-icon {
  font-size: 1.5rem;
  color: #2563eb;
}

/* =========================================
   BUTTONS
   ========================================= */
.ib-btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.65rem 1.75rem;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}

.ib-btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.35);
}

.ib-btn-outline {
  background: transparent;
  border: 2px solid #2563eb;
  color: #2563eb;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.65rem 1.75rem;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.ib-btn-outline:hover {
  background: #2563eb;
  color: #fff;
}

.ib-btn-white {
  background: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  color: #1e3a5f;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.65rem 1.75rem;
  transition: background 0.15s;
  text-decoration: none;
}

.ib-btn-white:hover {
  background: #f0f4ff;
  color: #1d4ed8;
}

/* =========================================
   HERO SECTION
   ========================================= */
.ib-hero {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f5e9 100%);
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.ib-hero-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.ib-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1e3a5f;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.ib-hero-highlight {
  color: #2563eb;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ib-hero-subtitle {
  font-size: 1.15rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.ib-hero-actions {
  margin-bottom: 1rem;
}

.ib-hero-note {
  font-size: 0.82rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

/* Dashboard Preview */
.ib-hero-visual {
  display: flex;
  justify-content: center;
  padding-left: 2rem;
}

.ib-dashboard-preview {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  overflow: hidden;
  width: 100%;
  max-width: 440px;
}

.ib-preview-header {
  background: #f3f4f6;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.ib-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.ib-dot-red { background: #ef4444; }
.ib-dot-yellow { background: #f59e0b; }
.ib-dot-green { background: #10b981; }

.ib-preview-title {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-left: 0.5rem;
  font-weight: 500;
}

.ib-preview-body {
  padding: 1.25rem;
}

.ib-stat-card {
  border-radius: 10px;
  padding: 0.75rem;
  color: #fff;
}

.ib-stat-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.ib-stat-green { background: linear-gradient(135deg, #10b981, #059669); }
.ib-stat-teal { background: linear-gradient(135deg, #06b6d4, #0891b2); }

.ib-stat-label {
  font-size: 0.68rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.ib-stat-value {
  font-size: 1.1rem;
  font-weight: 700;
}

.ib-stat-change {
  font-size: 0.7rem;
  margin-top: 0.15rem;
  opacity: 0.9;
}

.ib-up { color: #d1fae5; }

.ib-chart-placeholder {
  background: #f9fafb;
  border-radius: 10px;
  padding: 1rem;
  height: 90px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.ib-chart-bar {
  flex: 1;
  background: #dbeafe;
  border-radius: 4px 4px 0 0;
  transition: height 0.3s;
}

.ib-chart-bar-active {
  background: linear-gradient(180deg, #3b82f6, #2563eb);
}

/* =========================================
   TRUST BAR
   ========================================= */
.ib-trust-bar {
  background: #1e3a5f;
  padding: 2.5rem 0;
}

.ib-trust-item {
  color: #fff;
}

.ib-trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: #93c5fd;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.ib-trust-label {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.ib-features {
  padding: 5rem 0;
  background: #fff;
}

.ib-section-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.ib-section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1e3a5f;
  margin-bottom: 0.75rem;
}

.ib-section-subtitle {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 550px;
  margin: 0 auto;
}

.ib-feature-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.ib-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: #bfdbfe;
}

.ib-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ib-icon-blue { background: #dbeafe; color: #2563eb; }
.ib-icon-green { background: #d1fae5; color: #059669; }
.ib-icon-teal { background: #cffafe; color: #0891b2; }
.ib-icon-purple { background: #ede9fe; color: #7c3aed; }
.ib-icon-orange { background: #ffedd5; color: #ea580c; }
.ib-icon-red { background: #fee2e2; color: #dc2626; }

.ib-feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 0.5rem;
}

.ib-feature-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.ib-how-it-works {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0f4ff, #e8f5e9);
}

.ib-step-card {
  padding: 2rem 1.5rem;
}

.ib-step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 18px rgba(37,99,235,0.3);
}

.ib-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 0.5rem;
}

.ib-step-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.65;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.ib-testimonials {
  padding: 5rem 0;
  background: #fff;
}

.ib-testimonial-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ib-testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.07);
}

.ib-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 0.85rem;
  letter-spacing: 2px;
}

.ib-testimonial-text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.ib-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ib-author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.ib-author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e3a5f;
}

.ib-author-role {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* =========================================
   PRICING SECTION
   ========================================= */
.ib-pricing {
  padding: 5rem 0;
  background: #f8fafc;
}

.ib-pricing-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.ib-pricing-card:hover {
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.10);
  transform: translateY(-4px);
}

.ib-pricing-card-featured {
  border-color: #1d4ed8;
  box-shadow: 0 8px 40px rgba(29, 78, 216, 0.15);
  background: linear-gradient(160deg, #f0f5ff 0%, #fff 60%);
}

.ib-pricing-popular-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: #1d4ed8;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 0 0 0.6rem 0.6rem;
}

.ib-pricing-header {
  margin-bottom: 1.75rem;
}

.ib-pricing-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

.ib-badge-free {
  background: #f1f5f9;
  color: #64748b;
}

.ib-badge-pro {
  background: #dbeafe;
  color: #1d4ed8;
}

.ib-pricing-plan {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e3a5f;
  margin-bottom: 0.5rem;
}

.ib-pricing-price {
  margin-bottom: 0.5rem;
}

.ib-price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1e3a5f;
}

.ib-pricing-card-featured .ib-price-amount {
  color: #1d4ed8;
}

.ib-price-period {
  font-size: 0.95rem;
  color: #9ca3af;
  margin-left: 0.2rem;
}

.ib-pricing-tagline {
  font-size: 0.88rem;
  color: #6b7280;
  margin: 0;
}

.ib-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
}

.ib-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.45rem 0;
  font-size: 0.93rem;
  color: #374151;
  border-bottom: 1px solid #f1f5f9;
}

.ib-feature-item:last-child {
  border-bottom: none;
}

.ib-feature-disabled {
  opacity: 0.45;
}

.ib-feature-icon {
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
  width: 1.2rem;
  text-align: center;
}

.ib-icon-check {
  color: #16a34a;
}

.ib-icon-cross {
  color: #dc2626;
}

.ib-pricing-action {
  margin-top: auto;
}

.ib-btn-outline-primary {
  border: 2px solid #1d4ed8;
  color: #1d4ed8;
  background: transparent;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.65rem 1.5rem;
  transition: background 0.18s, color 0.18s;
}

.ib-btn-outline-primary:hover {
  background: #1d4ed8;
  color: #fff;
}

.ib-pricing-note {
  font-size: 0.82rem;
  color: #9ca3af;
  margin: 0;
}

/* =========================================
   CTA SECTION
   ========================================= */
.ib-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e3a5f, #1d4ed8);
}

.ib-cta-card {
  color: #fff;
  padding: 2rem;
}

.ib-cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}

.ib-cta-subtitle {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   MEMBER DASHBOARD
   ========================================= */

/* Wrapper */
.ib-dash-wrapper {
  background: #f0f4f8;
  min-height: calc(100vh - 60px);
}

/* Topbar */
.ib-dash-topbar {
  background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 100%);
  padding: 2rem 0 2.2rem;
  color: #fff;
}

.ib-dash-welcome {
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.ib-dash-username {
  color: #93c5fd;
}

.ib-dash-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

/* Role badges */
.ib-dash-role-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

.ib-dash-badge-admin    { background: #fef3c7; color: #92400e; }
.ib-dash-badge-subscriber { background: #dbeafe; color: #1d4ed8; }
.ib-dash-badge-employee { background: #d1fae5; color: #065f46; }
.ib-dash-badge-free     { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); }

/* Stat cards */
.ib-dash-stat-card {
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  text-align: center;
  color: #fff;
}

.ib-dash-stat-icon {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.ib-dash-stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.ib-dash-stat-label {
  font-size: 0.78rem;
  opacity: 0.85;
  font-weight: 500;
}

.ib-dash-stat-limit {
  opacity: 0.7;
  font-size: 0.75rem;
}

.ib-stat-blue  { background: linear-gradient(135deg, #1d4ed8, #3b82f6); }
.ib-stat-teal  { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.ib-stat-green { background: linear-gradient(135deg, #15803d, #22c55e); }
.ib-stat-gold  { background: linear-gradient(135deg, #b45309, #f59e0b); }
.ib-stat-grey  { background: linear-gradient(135deg, #475569, #94a3b8); }

/* Cards */
.ib-dash-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.ib-dash-card-gold {
  border-color: #f59e0b;
  box-shadow: 0 2px 16px rgba(245,158,11,0.12);
}

.ib-dash-card-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  background: #fafafa;
}

.ib-dash-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e3a5f;
}

.ib-dash-card-body {
  padding: 1.25rem;
}

.ib-dash-link {
  font-size: 0.82rem;
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 600;
}

.ib-dash-link:hover {
  text-decoration: underline;
}

/* Empty state */
.ib-dash-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: #9ca3af;
}

.ib-dash-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

/* Company cards */
.ib-company-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, background 0.15s;
}

.ib-company-card:hover {
  background: #eff6ff;
  box-shadow: 0 2px 10px rgba(29,78,216,0.10);
  color: inherit;
}

.ib-company-card-assigned {
  border-color: #ccfbf1;
  background: #f0fdfa;
}

.ib-company-card-assigned:hover {
  background: #ccfbf1;
}

.ib-company-avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ib-avatar-teal {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.ib-company-info {
  flex: 1;
  min-width: 0;
}

.ib-company-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1e3a5f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ib-company-meta {
  font-size: 0.75rem;
  color: #9ca3af;
}

.ib-company-arrow {
  font-size: 1.4rem;
  color: #cbd5e1;
  line-height: 1;
}

/* Subscription section */
.ib-sub-status {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ib-sub-status-active {
  background: #d1fae5;
  color: #065f46;
}

.ib-sub-status-free {
  background: #f1f5f9;
  color: #475569;
}

.ib-sub-detail {
  font-size: 0.88rem;
  color: #6b7280;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.ib-sub-perks,
.ib-sub-locked {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
}

.ib-sub-perks li {
  color: #065f46;
  padding: 0.18rem 0;
}

.ib-sub-locked li {
  color: #9ca3af;
  padding: 0.18rem 0;
}

/* Quick actions */
.ib-quick-actions {
  display: flex;
  flex-direction: column;
}

.ib-quick-action-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.25rem;
  text-decoration: none;
  color: #374151;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s;
}

.ib-quick-action-item:last-child {
  border-bottom: none;
}

.ib-quick-action-item:hover {
  background: #f0f5ff;
  color: #1d4ed8;
}

.ib-qa-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ib-qa-blue  { background: #dbeafe; color: #1d4ed8; }
.ib-qa-teal  { background: #ccfbf1; color: #0f766e; }
.ib-qa-grey  { background: #f1f5f9; color: #475569; }
.ib-qa-green { background: #d1fae5; color: #065f46; }
.ib-qa-gold  { background: #fef3c7; color: #92400e; }

/* Tips */
.ib-tip-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: #4b5563;
}

.ib-tip-num {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: #1d4ed8;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.ib-cta-actions {
  margin-bottom: 1rem;
}

.ib-cta-note {
  font-size: 0.82rem;
  opacity: 0.65;
  margin: 0;
}

/* =========================================
   FOOTER
   ========================================= */
.ib-footer {
  background: #111827;
  color: #e5e7eb;
  padding: 3.5rem 0 2rem;
}

.ib-footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ib-footer-tagline {
  font-size: 0.88rem;
  color: #9ca3af;
  line-height: 1.6;
}

.ib-footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #d1d5db;
  margin-bottom: 0.75rem;
}

.ib-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ib-footer-links li {
  margin-bottom: 0.4rem;
}

.ib-footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s;
}

.ib-footer-links a:hover {
  color: #60a5fa;
}

.ib-footer-divider {
  border-color: #374151;
  margin: 2rem 0 1.25rem;
}

.ib-footer-copy {
  font-size: 0.82rem;
  color: #6b7280;
  margin: 0;
}

.ib-footer-link-sm {
  font-size: 0.82rem;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.15s;
}

.ib-footer-link-sm:hover {
  color: #60a5fa;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 768px) {
  .ib-hero {
    padding: 3rem 0;
  }

  .ib-hero-title {
    font-size: 2rem;
  }

  .ib-hero-subtitle {
    font-size: 1rem;
  }

  .ib-btn-outline {
    display: none;
  }

  .ib-cta-title {
    font-size: 1.6rem;
  }

  .ib-section-title {
    font-size: 1.6rem;
  }

  .ib-trust-number {
    font-size: 1.5rem;
  }
}
/* Floating WhatsApp chat button */
.ib-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 56px;
  padding: 0 20px 0 14px;
  border-radius: 28px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  z-index: 1050;
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  text-decoration: none;
}

.ib-whatsapp-float:hover,
.ib-whatsapp-float:focus {
  transform: scale(1.05);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.55);
  color: #fff;
  text-decoration: none;
}

.ib-whatsapp-float svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.ib-whatsapp-float-label {
  display: inline-block;
}

@@media (max-width: 575.98px) {
  .ib-whatsapp-float {
    right: 14px;
    bottom: 14px;
    height: 50px;
    padding: 0;
    width: 50px;
    border-radius: 50%;
    justify-content: center;
  }
  .ib-whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  .ib-whatsapp-float-label {
    display: none;
  }
}

/* =========================================
   DATATABLES BUTTONS (export toolbar)
   ---------------------------------------
   The Bootstrap 5 integration of DataTables
   Buttons applies "btn btn-secondary" to every
   .dt-button by default, which renders dark/
   low-contrast against our admin pages. Force
   an outline-secondary look so Copy / CSV /
   Excel / Print buttons are clearly visible.
   ========================================= */
.dt-buttons .dt-button,
div.dt-buttons > .dt-button,
div.dt-buttons > .btn.btn-secondary {
  background-color: #fff !important;
  background-image: none !important;
  color: #6c757d !important;
  border: 1px solid #6c757d !important;
  box-shadow: none !important;
  margin-right: 0.25rem;
}

.dt-buttons .dt-button:hover,
div.dt-buttons > .dt-button:hover,
div.dt-buttons > .btn.btn-secondary:hover,
.dt-buttons .dt-button:focus,
div.dt-buttons > .dt-button:focus,
.dt-buttons .dt-button.active {
  background-color: #6c757d !important;
  color: #fff !important;
  border-color: #6c757d !important;
}

.dt-buttons .dt-button:disabled,
div.dt-buttons > .dt-button.disabled {
  opacity: 0.55;
  pointer-events: none;
}
