/* ============================================================
   STOIC HEALTHCARE — custom.css
   Navbar, Hero sections, Service cards, Equipment cards,
   Page-specific components
   ============================================================ */
/* Floating Call Button */

.float-call-btn {
  position: fixed;
  bottom: 90px; /* above WhatsApp button */
  right: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1a3a6b, #4ecdc4);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: callPulse 2s infinite;
}

/* Hover effect */
.float-call-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* Pulse animation */
@keyframes callPulse {
  0%   { box-shadow: 0 0 0 0 rgba(78,205,196, 0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(78,205,196, 0); }
  100% { box-shadow: 0 0 0 0 rgba(78,205,196, 0); }
}

/* Mobile optimization */
@media (max-width: 768px) {
  .float-call-btn {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
    bottom: 85px;
    right: 15px;
  }
}
.float-call-btn::after {
  content: "Call Now";
  position: absolute;
  right: 70px;
  background: #1a3a6b;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.float-call-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ── NAVBAR ── */
#mainNav {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(33,150,211,.1);
  padding: .75rem 0;
  transition: all .35s ease;
  box-shadow: 0 2px 20px rgba(26,58,107,.07);
}
#mainNav.scrolled { box-shadow: 0 4px 32px rgba(26,58,107,.14); }

/* Navbar brand container - ensures proper logo and text alignment */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin-right: 1rem;
}

/* Navbar logo image - consistent sizing */
.navbar-brand img,
.navbar-logo {
  height: 56px;
  width: auto;
  transition: height .3s, all .3s ease;
  object-fit: contain;
}

/* Navbar toggler button - proper positioning */
.navbar-toggler {
  order: 3;
  margin-left: auto;
  padding: 0.25rem 0.5rem;
}

/* Navbar collapse - proper alignment */
.navbar-collapse {
  align-items: center;
}

/* Nav items - consistent sizing */
.nav-link {
  font-size: .92rem; font-weight: 500;
  color: var(--primary) !important;
  padding: .5rem 1rem !important;
  border-radius: 8px;
  position: relative;
  transition: all .2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem;
  height: 2px; background: var(--grad-teal); border-radius: 2px;
  transform: scaleX(0); transition: transform .25s ease; transform-origin: left;
}
.nav-link:hover::after, .nav-link.active-page::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active-page { color: var(--secondary) !important; }
.toggler-icon { display:flex; flex-direction:column; gap:5px; cursor:pointer; width:24px; }
.toggler-icon span { display:block; height:2px; background:var(--primary); border-radius:2px; transition:all .3s; }

/* ── HERO SWIPER ── */
.hero-swiper { height: 100vh; min-height: 640px; }
.hero-swiper.short-hero { height: 60vh; min-height: 480px; }
.hero-swiper .swiper-slide { position:relative; overflow:hidden; display:flex; align-items:center; }
.hero-bg { position:absolute; inset:0; object-fit:cover; width:100%; height:100%; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(120deg, rgba(15,34,64,.92) 40%, rgba(33,150,211,.35) 100%); }
.hero-content { position:relative; z-index:2; padding-top:80px; }
.hero-badge {
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(78,205,196,.15); border:1px solid rgba(78,205,196,.3);
  color:#7ee8e2; padding:.4rem 1rem; border-radius:50px;
  font-size:.8rem; font-weight:600; text-transform:uppercase; letter-spacing:.1em;
  margin-bottom:1.5rem; animation:fadeInDown .8s ease both;
}
.hero-title { font-size:clamp(2.2rem,5.5vw,4rem); color:#fff; margin-bottom:1.2rem; animation:fadeInUp .8s ease .2s both; }
.hero-title span { background:var(--grad-teal); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-sub { color:rgba(255,255,255,.78); font-size:1.07rem; line-height:1.87; max-width:550px; margin-bottom:2rem; animation:fadeInUp .8s ease .4s both; }
.hero-btns { animation:fadeInUp .8s ease .55s both; display:flex; flex-wrap:wrap; gap:.75rem; }
.hero-stats { margin-top:2.5rem; display:flex; flex-wrap:wrap; gap:2rem; animation:fadeInUp .8s ease .7s both; }
.hero-stat .num { font-family:'Outfit', sans-serif; font-size:2rem; color:var(--teal); font-weight:700; line-height:1; }
.hero-stat .lbl { color:rgba(255,255,255,.6); font-size:.78rem; margin-top:.25rem; }
.hero-img-side { position:relative; z-index:2; animation:fadeInRight .9s ease .3s both; }
.hero-img-side img { border-radius:24px; box-shadow:0 24px 80px rgba(0,0,0,.42); width:100%; max-width:500px; }

@keyframes fadeInDown  { from{opacity:0;transform:translateY(-20px);}  to{opacity:1;transform:translateY(0);} }
@keyframes fadeInUp    { from{opacity:0;transform:translateY(24px);}   to{opacity:1;transform:translateY(0);} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px);}   to{opacity:1;transform:translateX(0);} }

/* ── SERVICE CARDS ── */
.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(15, 34, 64, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 1;
}
.service-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 20px 50px rgba(15, 34, 64, 0.12);
  border-color: rgba(255, 255, 255, 1);
}
.sc-img { height: 220px; overflow: hidden; position: relative; z-index: 2; border-bottom: 1px solid rgba(255,255,255,0.5); }
.sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.service-card:hover .sc-img img { transform: scale(1.08); }
.sc-icon { 
  position: absolute; 
  bottom: -24px; 
  right: 24px; 
  width: 56px; 
  height: 56px; 
  border-radius: 16px; 
  background: linear-gradient(135deg, #0f2240, #1d3b66); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  box-shadow: 0 10px 25px rgba(15, 34, 64, 0.3); 
  color: #fff; 
  font-size: 1.5rem; 
  z-index: 3;
  border: 2px solid #fff;
  transition: transform 0.4s ease;
}
.service-card:hover .sc-icon { transform: translateY(-4px) rotate(-5deg); background: var(--grad-teal); box-shadow: 0 12px 30px rgba(33, 150, 211, 0.4); }
.sc-body { padding: 2.5rem 2rem 2rem; position: relative; z-index: 2; }
.sc-tag { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: var(--teal); margin-bottom: 0.6rem; }
.sc-body h5 { font-size: 1.25rem; font-weight: 700; color: #0f2240; margin-bottom: 0.75rem; }
.sc-body p { color: #5a6e85; font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.sc-link { 
  color: #0f2240; 
  font-weight: 700; 
  font-size: 0.95rem; 
  text-decoration: none; 
  display: inline-flex; 
  align-items: center; 
  gap: 0.5rem; 
  transition: all 0.3s ease; 
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.sc-link i { font-size: 0.8rem; transition: transform 0.3s ease; }
.service-card:hover .sc-link { color: var(--teal); border-bottom-color: rgba(33, 150, 211, 0.3); }
.service-card:hover .sc-link i { transform: translateX(6px); }

/* ── EQUIPMENT CARDS ── */
.equip-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(15, 34, 64, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.7);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
.equip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 1;
}
.equip-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 24px 60px rgba(15, 34, 64, 0.12); 
  border-color: #fff;
}
.ec-img { height: 240px; overflow: hidden; position: relative; z-index: 2; padding: 1.5rem; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.03); }
.ec-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05)); }
.equip-card:hover .ec-img img { transform: scale(1.08) translateY(-5px); filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1)); }
.ec-badge { position: absolute; top: 1.25rem; left: 1.25rem; background: rgba(15, 34, 64, 0.9); backdrop-filter: blur(4px); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.4rem 1rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.1em; box-shadow: 0 4px 15px rgba(15, 34, 64, 0.2); z-index: 3; border: 1px solid rgba(255,255,255,0.2); }
.ec-badge.hot { background: linear-gradient(135deg, #ff6b35, #f59e0b); border: none; box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3); }
.ec-body { padding: 2rem; position: relative; z-index: 2; }
.ec-body h5 { font-size: 1.15rem; font-weight: 700; color: #0f2240; margin-bottom: 0.5rem; }
.ec-body p { color: #5a6e85; font-size: 0.92rem; line-height: 1.65; margin-bottom: 1.25rem; }
.ec-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1.25rem; border-top: 1px solid rgba(15, 34, 64, 0.08); margin-top: auto; }
.ec-price { font-weight: 800; color: #0f2240; font-size: 1.1rem; }
.ec-rent-btn { 
  background: transparent; 
  color: #0f2240; 
  padding: 0.6rem 1.25rem; 
  border-radius: 50px; 
  font-size: 0.9rem; 
  font-weight: 700; 
  text-decoration: none; 
  display: inline-block; 
  transition: all 0.3s ease;
  border: 2px solid rgba(15, 34, 64, 0.15);
}
.equip-card:hover .ec-rent-btn { 
  background: var(--grad-teal); 
  color: #fff; 
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(33, 150, 211, 0.3);
}
.ec-rent-btn:hover { opacity: 0.95; transform: translateY(-2px); }

/* ── PROCESS STRIP (dark gradient) ── */
.process-strip { background:var(--grad); border-radius:24px; padding:3rem; }
.pstrip-item { text-align:center; }
.pstrip-item .icon { font-size:2.5rem; margin-bottom:.75rem; }
.pstrip-item h5 { color:#fff; font-size:1rem; margin-bottom:.3rem; }
.pstrip-item p { color:rgba(255,255,255,.7); font-size:.84rem; line-height:1.65; }

/* ── FEATURE ICON BOXES ── */
.feature-icon-box {
  text-align:center; padding:2rem 1.5rem;
  border-radius:var(--radius); background:#fff;
  box-shadow:var(--shadow-sm); transition:all .3s;
  border:1px solid rgba(33,150,211,.08); height:100%;
}
.feature-icon-box:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.feature-icon-box .fi-emoji { font-size:2.5rem; margin-bottom:1rem; }
.feature-icon-box h5 { font-size:1rem; margin-bottom:.4rem; }
.feature-icon-box p { color:var(--muted); font-size:.85rem; line-height:1.65; }

/* ── MAP ── */
.map-wrap { border-radius:20px; overflow:hidden; height:400px; box-shadow:var(--shadow); }
.map-wrap iframe { width:100%; height:100%; border:0; filter:saturate(.85) brightness(1.02); }

/* ── PREMIUM FORM CARD ── */
.form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(15, 34, 64, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.form-card h4 { margin-bottom:.5rem; font-size:1.8rem; font-weight:800; color:#0f2240; }
.form-card .form-subtitle { color:var(--muted); font-size:1rem; margin-bottom:2rem; font-weight:500; }

/* ── PREMIUM INPUTS ── */
.form-control, .form-select {
  background: #f8faff;
  border: 1px solid #e1e8f2;
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  font-size: 0.95rem;
  color: #354a6b;
  transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
  background: #fff;
  border-color: #4ecdc4;
  box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.15);
  outline: none;
}
.form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: #0f2240;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

/* ── ABOUT HERO ── */
.about-hero-section {
  background: linear-gradient(135deg, #0f1f40 0%, #1a3a6b 55%, #2196d3 100%);
  min-height: 65vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

/* ── CONTACT HERO ── */
.contact-hero-section {
  background: linear-gradient(135deg, #0f1f40 0%, #1a3a6b 50%, #2196d3 100%);
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.contact-hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ── CERT BADGES ── */
.cert-badge {
  background:#fff; border-radius:12px; padding:.9rem 1.6rem;
  box-shadow:var(--shadow-sm); font-weight:600; color:var(--primary); font-size:.88rem;
  display:inline-block; transition:var(--transition);
}
.cert-badge:hover { box-shadow:var(--shadow); transform:translateY(-3px); }

/* ── FEATURE ICON BOX (Font Awesome based) ── */
.feature-icon-box .feat-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(33,150,211,.1), rgba(78,205,196,.15));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: var(--secondary);
  transition: all .3s;
}

.feature-icon-box:hover .feat-icon {
  background: linear-gradient(135deg, var(--secondary), var(--teal));
  color: #fff;
  transform: scale(1.08);
}

/* ── MFG TAGS (parallax section) ── */
.mfg-tag {
  background: rgba(78,205,196,.15);
  border: 1px solid rgba(78,205,196,.3);
  color: #7ee8e2;
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

/* ── MATERIAL ICONS ALIGNMENT ── */
.material-icons-round {
  vertical-align: middle;
  font-size: inherit;
  line-height: inherit;
}

/* ── FA icons in contact info cards ── */
.ci-icon .fa-solid,
.ci-icon .fa-brands,
.ci-icon .material-icons-round {
  font-size: 1.3rem;
}

/* ── WHY CARD icon (material) ── */
.why-card .wc-icon .material-icons-round {
  font-size: 1.5rem;
  color: #7ee8e2;
}

/* ── FAQ icon override (fa-plus instead of text +) ── */
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── SC icon (material in service cards) ── */
.sc-icon .material-icons-round {
  font-size: 1.4rem;
  color: #fff;
}

/* ── PSTRIP ITEM text ── */
.pstrip-item h5 { color: #fff; font-size: 1rem; margin-bottom: .3rem; }
.pstrip-item p  { color: rgba(255,255,255,.7); font-size: .84rem; line-height: 1.65; margin: 0; }

/* ── FOOTER ICONS ALIGNMENT ── */
#mainFooter .footer-social {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.5rem;
}

#mainFooter .footer-social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  margin-top: 0;
}

#mainFooter a:not(.footer-social a) {
  display: flex !important;
  align-items: center;
}

#mainFooter a:not(.footer-social a) i {
  flex-shrink: 0;
}

/* ── HOW IT WORKS TIMELINE ── */
.timeline-container { position: relative; padding-top: 2rem; padding-bottom: 2rem; }
.timeline-track { position: absolute; top: 60px; left: 10%; right: 10%; height: 3px; background: linear-gradient(90deg, rgba(78,205,196,0) 0%, rgba(78,205,196,0.3) 50%, rgba(78,205,196,0) 100%); z-index: 0; }
@media (max-width: 767px) { .timeline-track { display: none; } }
.how-step-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem 2rem 2.5rem;
  box-shadow: 0 15px 40px rgba(15, 34, 64, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.9);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.how-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(15, 34, 64, 0.08);
  border-color: #fff;
}
.how-num-wrapper { position: relative; width: 64px; height: 64px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; }
.how-num {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0f2240, #1d3b66);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800;
  box-shadow: 0 10px 25px rgba(15, 34, 64, 0.3);
  border: 2px solid #fff;
  transition: transform 0.4s ease;
}
.how-step-card:hover .how-num { transform: scale(1.1) rotate(-5deg); background: var(--grad-teal); box-shadow: 0 15px 35px rgba(78,205,196,0.4); }
.how-num-glow { position: absolute; inset: -10px; background: var(--grad-teal); border-radius: 50%; filter: blur(15px); opacity: 0; transition: opacity 0.4s ease; z-index: 1; }
.how-step-card:hover .how-num-glow { opacity: 0.5; }
.how-step-card h4 { font-weight: 800; color: #0f2240; font-size: 1.25rem; margin-bottom: 0.75rem; }

/* ── WHY CHOOSE US BENTO BOX ── */
.bento-hero-img { border-radius: 24px; width: 100%; box-shadow: 0 25px 80px rgba(0,0,0,0.4); object-fit: cover; aspect-ratio: 4/3; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 1.5rem;
}
@media (max-width: 768px) { .bento-grid { grid-template-columns: 1fr; } }
.bento-item { display: flex; }
.bento-lg { grid-column: span 2; }
@media (max-width: 768px) { .bento-lg, .bento-md, .bento-sm { grid-column: span 1; } }
.why-card-bento {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}
.bento-lg .why-card-bento { flex-direction: row; align-items: center; gap: 2rem; padding: 2.5rem; background: rgba(255,255,255,0.08); }
@media (max-width: 576px) { .bento-lg .why-card-bento { flex-direction: column; align-items: flex-start; gap: 1rem; } }
.why-card-bento:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.wc-icon-bento {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(78,205,196,0.2), rgba(78,205,196,0.05));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(78,205,196,0.3);
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.bento-lg .wc-icon-bento { margin-bottom: 0; width: 72px; height: 72px; font-size: 2rem; }
.why-card-bento:hover .wc-icon-bento { background: var(--grad-teal); border-color: transparent; box-shadow: 0 10px 25px rgba(78,205,196,0.4); }
.why-card-bento:hover .wc-icon-bento .material-icons-round { color: #fff; }
.wc-icon-bento .material-icons-round { font-size: 1.6rem; color: #7ee8e2; transition: color 0.4s ease; }
.bento-lg .wc-icon-bento .material-icons-round { font-size: 2.2rem; }
.wc-content-bento h5 { color: #fff; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.bento-lg .wc-content-bento h5 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.wc-content-bento p { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.6; margin: 0; }

/* ── PREMIUM STATS ── */
.premium-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #0f2240, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.premium-stat-lbl {
  font-size: 1rem;
  font-weight: 600;
  color: #5a6e85;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat-item { padding: 1.5rem; }

/* ── PREMIUM TESTIMONIALS (FROSTED GLASS) ── */
.premium-testi-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 24px;
  padding: 3rem 2.5rem 2.5rem;
  box-shadow: 0 15px 40px rgba(15, 34, 64, 0.05);
  border: 1px solid rgba(255, 255, 255, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s ease;
}
@media (max-width: 768px) {
  .premium-testi-card { padding: 1.5rem 1.2rem 1.5rem; }
}
.premium-testi-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(15, 34, 64, 0.08); }
.testi-quote-icon {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 6rem;
  font-family: serif;
  color: rgba(78,205,196,0.15);
  line-height: 1;
  user-select: none;
}
@media (max-width: 768px) {
  .testi-quote-icon { font-size: 3rem; right: 15px; }
}
.premium-testi-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #354a6b;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.premium-testi-av {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0f2240, #1a3a6b);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(15,34,64,0.2);
}
.premium-testi-name { font-weight: 800; color: #0f2240; font-size: 1.1rem; }
.premium-testi-role { font-size: 0.85rem; color: #78909c; }
