/* ============================================================
   FBR Software — Homepage Redesign
   Branch: fbr-homepage-redesign
   ============================================================ */

/* ---------- Reset / Base ---------- */
.fbr-home * { box-sizing: border-box; }
.fbr-home { font-family: 'Montserrat', sans-serif; color: #1a2b4a; }

/* ---------- Shared Helpers ---------- */
.fbr-section { padding: 80px 20px; }
.fbr-container { max-width: 1200px; margin: 0 auto; }
.fbr-badge {
  display: inline-block;
  background: rgba(46,163,242,.12);
  color: #2ea3f2;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.fbr-section-title {
  font-size: clamp(26px,3.5vw,40px);
  font-weight: 700;
  color: #1a2b4a;
  margin: 0 0 14px;
  line-height: 1.2;
}
.fbr-section-sub {
  font-size: 16px;
  color: #5a6a80;
  max-width: 620px;
  margin: 0 auto 50px;
  line-height: 1.7;
}
.fbr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
  border: none;
}
.fbr-btn-primary {
  background: linear-gradient(135deg,#2ea3f2,#1a78c2);
  color: #fff;
  box-shadow: 0 6px 20px rgba(46,163,242,.35);
}
.fbr-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(46,163,242,.45); }
.fbr-btn-outline {
  background: transparent;
  color: #2ea3f2;
  border: 2px solid #2ea3f2;
}
.fbr-btn-outline:hover { background: #2ea3f2; color: #fff; }
.fbr-btn-white {
  background: #fff;
  color: #1a2b4a;
}
.fbr-btn-white:hover { background: #f0f8ff; }

/* ============================================================
   HERO
   ============================================================ */
.fbr-hero {
  background: linear-gradient(135deg, #0d1b35 0%, #1a3461 40%, #1565a8 100%);
  padding: 90px 20px 0;
  overflow: hidden;
  position: relative;
}
.fbr-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,163,242,.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.fbr-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.fbr-hero-badge {
  display: inline-block;
  background: rgba(46,163,242,.2);
  color: #64bfec;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(46,163,242,.3);
  margin-bottom: 22px;
}
.fbr-hero h1 {
  font-size: clamp(30px,4vw,52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 18px;
}
.fbr-hero h1 span { color: #2ea3f2; }
.fbr-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 16px;
}
.fbr-typing-wrap {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 36px;
  min-height: 32px;
}
.fbr-typing-label { color: rgba(255,255,255,.6); font-weight: 400; font-size: 16px; margin-right: 8px; }
.fbr-typing-text { color: #2ea3f2; }
.fbr-cursor { animation: blink 1s step-end infinite; color: #2ea3f2; }
@keyframes blink { 50% { opacity: 0; } }
.fbr-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.fbr-app-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.fbr-app-badges img { height: 44px; width: auto; border-radius: 8px; }

.fbr-hero-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.fbr-hero-image img {
  max-width: 100%;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -10px 60px rgba(0,0,0,.4);
  display: block;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.fbr-stats {
  background: #fff;
  padding: 0;
  border-bottom: 1px solid #e8edf5;
}
.fbr-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  divide: #e8edf5;
}
.fbr-stat-item {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid #e8edf5;
  position: relative;
}
.fbr-stat-item:last-child { border-right: none; }
.fbr-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: #2ea3f2;
  line-height: 1;
  margin-bottom: 6px;
}
.fbr-stat-label { font-size: 14px; color: #5a6a80; font-weight: 500; }

/* ============================================================
   FEATURES
   ============================================================ */
.fbr-features { background: #f7faff; text-align: center; }
.fbr-features-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
  margin-top: 50px;
}
.fbr-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px;
  box-shadow: 0 2px 20px rgba(26,43,74,.06);
  transition: transform .25s, box-shadow .25s;
  text-align: center;
}
.fbr-feature-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(46,163,242,.15); }
.fbr-feature-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}
.fbr-feature-card h3 { font-size: 17px; font-weight: 700; color: #1a2b4a; margin: 0 0 10px; }
.fbr-feature-card p { font-size: 14px; color: #5a6a80; line-height: 1.65; margin: 0; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.fbr-industries { background: #fff; text-align: center; }
.fbr-industries-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 50px;
}
.fbr-industry-card {
  border: 2px solid #e8edf5;
  border-radius: 14px;
  padding: 28px 16px;
  text-align: center;
  text-decoration: none;
  color: #1a2b4a;
  transition: all .25s;
  display: block;
}
.fbr-industry-card:hover {
  border-color: #2ea3f2;
  background: #f0f8ff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46,163,242,.12);
}
.fbr-industry-card img {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  display: block;
  margin-left: auto; margin-right: auto;
}
.fbr-industry-card span { font-size: 14px; font-weight: 600; }

/* ============================================================
   OVERVIEW / APP SECTION
   ============================================================ */
.fbr-overview {
  background: linear-gradient(135deg,#0d1b35,#1a3461);
  color: #fff;
  padding: 80px 20px;
}
.fbr-overview-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.fbr-overview h2 { font-size: clamp(26px,3vw,38px); font-weight: 700; margin: 0 0 20px; color: #fff !important; }
.fbr-overview p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.75); margin-bottom: 16px; }
.fbr-overview a { color: #64bfec; text-decoration: none; }
.fbr-overview a:hover { text-decoration: underline; }
.fbr-overview-cta { margin-top: 36px; }
.fbr-phone-img { width: 220px; }
.fbr-phone-img img { width: 100%; }

/* ============================================================
   PRODUCT FEATURES
   ============================================================ */
.fbr-prod-features { background: #f7faff; text-align: center; }
.fbr-prod-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 50px;
  text-align: left;
}
.fbr-prod-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  border-left: 4px solid #2ea3f2;
  box-shadow: 0 2px 16px rgba(26,43,74,.05);
  transition: transform .25s, box-shadow .25s;
}
.fbr-prod-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(46,163,242,.12); }
.fbr-prod-card h3 { font-size: 16px; font-weight: 700; color: #1a2b4a; margin: 0 0 10px; }
.fbr-prod-card p { font-size: 14px; color: #5a6a80; line-height: 1.65; margin: 0; }
.fbr-prod-icon { font-size: 28px; margin-bottom: 14px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.fbr-why { background: #fff; text-align: center; }
.fbr-why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
  margin-top: 50px;
}
.fbr-why-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: 16px;
  background: #f7faff;
  transition: transform .25s;
}
.fbr-why-card:hover { transform: translateY(-4px); }
.fbr-why-card img {
  width: 90px; height: 76px;
  object-fit: contain;
  margin-bottom: 18px;
}
.fbr-why-card h3 { font-size: 16px; font-weight: 700; color: #1a2b4a; margin: 0 0 10px; }
.fbr-why-card p { font-size: 14px; color: #5a6a80; line-height: 1.65; margin: 0; }

/* ============================================================
   REVIEWS
   ============================================================ */
.fbr-reviews { background: #f7faff; text-align: center; }
.fbr-reviews .ti-widget { margin-top: 40px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.fbr-cta-banner {
  background: linear-gradient(135deg,#2ea3f2,#1a78c2);
  padding: 70px 20px;
  text-align: center;
  color: #fff;
}
.fbr-cta-banner h2 { font-size: clamp(24px,3vw,38px); font-weight: 800; margin: 0 0 14px; }
.fbr-cta-banner p { font-size: 17px; opacity: .85; margin: 0 0 36px; }
.fbr-cta-banner .fbr-btn { font-size: 16px; padding: 16px 40px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:980px) {
  .fbr-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .fbr-hero-image { display: none; }
  .fbr-hero-ctas { justify-content: center; }
  .fbr-app-badges { justify-content: center; }
  .fbr-stats-inner { grid-template-columns: repeat(2,1fr); }
  .fbr-features-grid { grid-template-columns: repeat(2,1fr); }
  .fbr-industries-grid { grid-template-columns: repeat(2,1fr); }
  .fbr-overview-inner { grid-template-columns: 1fr; text-align: center; }
  .fbr-phone-img { display: none; }
  .fbr-prod-grid { grid-template-columns: 1fr 1fr; }
  .fbr-why-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:600px) {
  .fbr-section { padding: 60px 16px; }
  .fbr-stats-inner { grid-template-columns: 1fr 1fr; }
  .fbr-features-grid { grid-template-columns: 1fr; }
  .fbr-industries-grid { grid-template-columns: repeat(2,1fr); }
  .fbr-prod-grid { grid-template-columns: 1fr; }
  .fbr-why-grid { grid-template-columns: 1fr 1fr; }
}
