/* ============================================
   FloTech Custom Styles - v2.0
   Clean, Professional, Oil & Gas Industry
   ============================================ */

/* ------------------------------------------
   1. OFFICIAL COLOR PALETTE
   ------------------------------------------ */
:root {
  /* Primary Colors (from logo) */
  --flo-blue: #1E7FD4;
  --flo-blue-light: #4A9FE8;
  --flo-blue-dark: #1565B5;
  
  /* Dark Colors */
  --flo-dark: #2C3340;
  --flo-navy: #1A2535;
  --flo-navy-light: #2D3A4A;
  
  /* Text Colors */
  --text-white: #FFFFFF;
  --text-light: #D6DEE7;
  --text-muted: #94A3B8;
  
  /* Accent Colors */
  --flo-teal: #0EA5E9;
  
  --accent-color: #0EA5E9 !important;
  
  /* Background Colors */
  --bg-dark: #1A2535;
  --bg-overlay: rgba(26, 37, 53, 0.85);
  
  /* Shadows */
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* ------------------------------------------
   2. HERO BACKGROUND IMAGE
   ------------------------------------------ */
.hero-background {
  background: url("../images/hero-pumping-unit-blue-sky.jpg") center/cover no-repeat !important;
}

/* ------------------------------------------
   3. DARK OVERLAY FOR CONTRAST
   ------------------------------------------ */
.hero-section {
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(26, 37, 53, 0.9) 0%,
    rgba(26, 37, 53, 0.7) 50%,
    rgba(26, 37, 53, 0.4) 100%
  );
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* ------------------------------------------
   4. HERO TYPOGRAPHY
   ------------------------------------------ */

/* Maximize Production - White, clean, professional */
.hero-title {
  color: var(--text-white) !important;
  font-weight: 700 !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  line-height: 1.1 !important;
  text-shadow: var(--shadow-soft) !important;
  margin-bottom: 0.5rem !important;
}

/* Optimize Rates - Official blue, on its own line */
.hero-title .accent-text {
  display: block !important;
  color: var(--flo-blue) !important;
  font-weight: 700 !important;
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
  text-shadow: var(--shadow-medium) !important;
  margin-top: 0.25rem !important;
}

/* Subtitle - Light gray, visible, elegant */
.hero-subtitle {
  color: var(--text-light) !important;
  font-size: 1.15rem !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  text-shadow: var(--shadow-soft) !important;
  max-width: 550px !important;
  margin-top: 1.5rem !important;
  margin-bottom: 2rem !important;
}

/* ------------------------------------------
   5. HERO BUTTONS
   ------------------------------------------ */

/* Primary Button - REQUEST CONSULTATION (The one that sells!) */
.hero-section .btn-primary,
.hero-section a[href*="consultation"] {
  background: var(--flo-blue) !important;
  color: var(--text-white) !important;
  border: 2px solid var(--flo-blue) !important;
  padding: 16px 32px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(30, 127, 212, 0.5) !important;
}

.hero-section .btn-primary:hover,
.hero-section a[href*="consultation"]:hover {
  background: var(--flo-blue-light) !important;
  border-color: var(--flo-blue-light) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px rgba(30, 127, 212, 0.6) !important;
}

/* Secondary Button - Our Technology */
.hero-section .btn-secondary,
.hero-section .btn-outline {
  background: transparent !important;
  color: var(--text-white) !important;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
}

.hero-section .btn-secondary:hover,
.hero-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--text-white) !important;
  transform: translateY(-2px) !important;
}

/* ------------------------------------------
   6. SMOOTH ANIMATIONS
   ------------------------------------------ */
.hero-title,
.hero-title .accent-text,
.hero-subtitle {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* ------------------------------------------
   7. NAVBAR - Logo colors fixed
   ------------------------------------------ */

/* FLOTECH logo text - Official logo color */
.brand-text {
  color: var(--flo-blue) !important;
  text-shadow: none !important;
}

/* SERVICES subtitle - Light gray */
.brand-subtitle {
  color: var(--text-light) !important;
  opacity: 1 !important;
}

/* Navbar background on scroll */
.navbar.scrolled {
  background: rgba(26, 37, 53, 0.98) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

/* Logo when scrolled - Official blue */
.navbar.scrolled .navbar-brand,
.navbar.scrolled .brand-text {
  color: var(--flo-blue) !important;
}

/* Nav links when scrolled */
.navbar.scrolled .navbar-nav .nav-link {
  color: var(--text-white) !important;
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link.active {
  color: var(--flo-teal) !important;
}

/* Nav links */
.navbar-nav .nav-link {
  color: var(--text-white) !important;
  font-weight: 500 !important;
  transition: color 0.3s ease !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--flo-blue) !important;
}

/* ------------------------------------------
   7. NAVBAR LOGO
   ------------------------------------------ */

.navbar-brand {
  display: flex !important;
  align-items: center !important;
}

.navbar-logo {
  height: 45px !important;
  width: auto !important;
  margin-right: 12px !important;
  transition: transform 0.3s ease !important;
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05) !important;
}

/* Container for brand text - centered vertically with logo */
.brand-text-container {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  line-height: 1.1 !important;
}

.brand-text {
  display: block !important;
}

.brand-subtitle {
  display: block !important;
  font-size: 0.65em !important;
}

/* ------------------------------------------
   8. STATS SECTION - Fixed colors
   ------------------------------------------ */

/* Stats numbers (100%, Minimum, Thousands) - Teal */
.stat-item h3 {
  color: var(--flo-teal) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

/* Stats labels (Safe Material, etc) - Medium gray for balance */
.stat-item p {
  color: #64748B !important;
  font-weight: 500 !important;
}

/* ------------------------------------------
   8. ABOUT SECTION - Elegant image hover
   ------------------------------------------ */

/* Container for the image */
.about-image {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Image with smooth hover transition */
.about-image img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
  width: 100% !important;
  height: auto !important;
}

/* Elegant scale on hover */
.about-image:hover img {
  transform: scale(1.03) !important;
}

/* Optional: Add a subtle overlay on hover */
.about-image::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(to bottom, transparent 0%, rgba(30, 127, 212, 0.1) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
  pointer-events: none !important;
}

.about-image:hover::after {
  opacity: 1 !important;
}

/* Section subtitles (About Us, Proprietary Technology, etc) */
.section-subtitle {
  color: var(--flo-teal) !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
}

/* Section titles */
.section-title {
  color: var(--flo-dark) !important;
  font-weight: 700 !important;
}

/* Section description - Text below titles */
.section-description {
  color: var(--flo-dark) !important;
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
  max-width: 700px !important;
  margin: 0 auto 2rem !important;
}

/* If it has text-muted, don't be so muted */
.section-description.text-muted {
  color: var(--flo-dark) !important;
  opacity: 0.9 !important;
}

/* ------------------------------------------
   9. PRODUCT CARDS SECTION - Flomax cards
   ------------------------------------------ */

/* Section background - more contrast */
#products.bg-light,
section#products {
  background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%) !important;
}

/* Service cards */
.service-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(30, 127, 212, 0.1) !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
}

.service-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(30, 127, 212, 0.15) !important;
  border-color: rgba(30, 127, 212, 0.3) !important;
}

/* Card titles - Official blue */
.service-card h3 {
  color: var(--flo-blue) !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
}

/* Card text */
.service-card p {
  color: var(--flo-dark) !important;
  line-height: 1.6 !important;
}

/* ------------------------------------------
   10. EXECUTION SECTION - Turnkey Service (dark background)
   ------------------------------------------ */

/* Dark section background */
#services.bg-dark,
section#services {
  background: linear-gradient(135deg, #1A2535 0%, #2C3340 100%) !important;
}

/* Section subtitle "Execution" - Teal */
#services .section-subtitle {
  color: var(--flo-teal) !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
}

/* Section title "Our Turnkey Service" - White */
#services .section-title {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

/* Section description - Light gray visible */
#services .section-description {
  color: #D6DEE7 !important;
  font-size: 1.1rem !important;
  opacity: 1 !important;
}

/* Step numbers (01, 02, 03) - Bright teal */
#services .step-number {
  color: var(--flo-teal) !important;
  font-weight: 700 !important;
  text-shadow: 0 0 20px rgba(14, 165, 233, 0.5) !important;
}

/* Step titles - White */
#services .process-step h4 {
  color: #FFFFFF !important;
  font-weight: 600 !important;
  margin-top: 1rem !important;
  margin-bottom: 0.75rem !important;
}

/* Step descriptions - Light gray */
#services .process-step p {
  color: #D6DEE7 !important;
  line-height: 1.6 !important;
  opacity: 1 !important;
}

/* ------------------------------------------
   11. CONTACT SECTION
   ------------------------------------------ */

/* Section background - light gray */
#contact {
  background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%) !important;
}

/* Section subtitle "Contact" - Teal */
#contact .section-subtitle {
  color: var(--flo-teal) !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
}

/* Section title "Start Your Well Optimization" - Dark blue */
#contact .section-title {
  color: var(--flo-dark) !important;
  font-weight: 700 !important;
}

/* Section description - Dark blue visible */
#contact .section-description {
  color: var(--flo-dark) !important;
  font-size: 1.1rem !important;
  opacity: 0.9 !important;
}

/* Form inputs - better contrast */
#contact .form-control {
  background: #FFFFFF !important;
  border: 2px solid rgba(30, 127, 212, 0.2) !important;
  color: var(--flo-dark) !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
}

#contact .form-control:focus {
  border-color: var(--flo-blue) !important;
  box-shadow: 0 0 0 3px rgba(30, 127, 212, 0.1) !important;
  outline: none !important;
}

#contact .form-control::placeholder {
  color: #94A3B8 !important;
}

/* Submit button */
#contact .btn-primary {
  background: var(--flo-blue) !important;
  border-color: var(--flo-blue) !important;
  color: #FFFFFF !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
}

#contact .btn-primary:hover {
  background: var(--flo-blue-light) !important;
  border-color: var(--flo-blue-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(30, 127, 212, 0.4) !important;
}

/* Contact info box (right side) */
#contact .contact-info {
  background: #FFFFFF !important;
  border: 1px solid rgba(30, 127, 212, 0.1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

#contact .contact-info h5 {
  color: var(--flo-blue) !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
}

#contact .contact-info p {
  color: var(--flo-dark) !important;
  line-height: 1.6 !important;
}

/* ------------------------------------------
   12. FOOTER - Fixed for good contrast
   ------------------------------------------ */

/* Footer background - dark but not black */
.footer {
  background: linear-gradient(135deg, #1A2535 0%, #2C3340 100%) !important;
  padding: 4rem 0 2rem !important;
}

/* FLOTECH logo in footer - Official blue */
.footer-brand {
  color: var(--flo-blue) !important;
  font-size: 1.75rem !important;
  font-weight: 800 !important;
}

/* SERVICES in logo - Light gray */
.footer-brand span,
.footer .brand-subtitle {
  color: var(--text-light) !important;
}

/* Footer description - Light gray visible */
.footer-description {
  color: #D6DEE7 !important;
  line-height: 1.6 !important;
  opacity: 1 !important;
}

/* Section titles (Navigation, Corporate Info) - White */
.footer h5 {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  margin-bottom: 1.25rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
}

/* Decorative line under titles - Teal */
.footer h5::after {
  content: "" !important;
  width: 30px !important;
  height: 2px !important;
  background: var(--flo-teal) !important;
  display: block !important;
  margin-top: 8px !important;
}

/* Footer links - Light gray */
.footer-links a,
.footer a,
.footer .text-muted a,
.footer-links.text-muted a {
  color: #D6DEE7 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
  display: block !important;
  padding: 0.25rem 0 !important;
}

.footer-links a:hover,
.footer a:hover,
.footer .text-muted a:hover {
  color: var(--flo-teal) !important;
}

/* Corporate Info - text */
.footer p {
  color: #D6DEE7 !important;
  line-height: 1.6 !important;
  margin-bottom: 0.5rem !important;
}

/* Divider */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.1) !important;
  margin: 2rem 0 !important;
}

/* Copyright and legal - Gray */
.footer-copyright,
.footer-legal a,
.footer .text-muted {
  color: #94A3B8 !important;
  font-size: 0.9rem !important;
}

.footer-legal a:hover {
  color: var(--flo-teal) !important;
}

/* ------------------------------------------
   13. SEMANTIC MARKUP - Brand and Product names
   ------------------------------------------ */

/* Brand name - FloTech Services */
.brand-name {
  font-weight: 700;
  color: inherit;
}

/* Product name - Flomax */
.product-name {
  font-weight: 700;
  color: var(--flo-blue);
}

/* In headings, product name keeps the heading color */
h1 .product-name,
h2 .product-name,
h3 .product-name,
h4 .product-name {
  color: inherit;
}

/* ------------------------------------------
   14. CONTACT LINKS - Clickable and styled
   ------------------------------------------ */

/* Contact links (tel, mailto, maps) */
.contact-link {
  color: var(--flo-blue) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  position: relative !important;
  transition: color 0.3s ease !important;
}

/* Elegant underline animation */
.contact-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: -2px !important;
  left: 0 !important;
  width: 0 !important;
  height: 2px !important;
  background: var(--flo-blue) !important;
  transition: width 0.3s ease !important;
}

.contact-link:hover {
  color: var(--flo-blue-dark) !important;
}

.contact-link:hover::after {
  width: 100% !important;
}

/* Executive info styling */
.executive-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.25rem !important;
}

.executive-title {
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #64748B !important;
  font-weight: 500 !important;
}

.executive-name {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--flo-dark) !important;
}

/* Footer contact links */
.footer .contact-link {
  color: #D6DEE7 !important;
  position: relative !important;
}

.footer .contact-link::after {
  background: var(--flo-teal) !important;
}

.footer .contact-link:hover {
  color: var(--flo-teal) !important;
}

/* ------------------------------------------
   15. FOOTER LOGO
   ------------------------------------------ */

.footer-brand {
  display: flex !important;
  align-items: center !important;
}

.footer-logo {
  height: 50px !important;
  width: auto !important;
  margin-right: 12px !important;
}

.footer-brand-text {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.1 !important;
}

.footer .brand-text {
  color: var(--flo-blue) !important;
  font-size: 1.5rem !important;
}

.footer .brand-subtitle {
  color: #94A3B8 !important;
  font-size: 0.9rem !important;
}

/* ------------------------------------------
   16. PRELOADER LOGO
   ------------------------------------------ */

.preloader-logo {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.preloader-logo img {
  height: 80px !important;
  width: auto !important;
  margin-bottom: 16px !important;
  animation: preloaderPulse 2s ease-in-out infinite !important;
}

.preloader-brand {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  line-height: 1.1 !important;
}

.preloader-text {
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  color: var(--flo-blue) !important;
  letter-spacing: 0.1em !important;
}

.preloader-subtitle {
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: var(--text-light) !important;
  letter-spacing: 0.2em !important;
  margin-top: 4px !important;
}

@keyframes preloaderPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.03);
  }
}

/* Hide original preloader animation */
.logo-animation,
.logo-text,
.logo-line,
.logo-subtitle {
  display: none !important;
}

.footer .executive-title {
  color: #94A3B8 !important;
}

.footer .executive-name {
  color: #FFFFFF !important;
}

/* ------------------------------------------
   17. POLICY PAGES - Privacy & Terms
   ------------------------------------------ */

.policy-content h2 {
  color: var(--flo-dark) !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin-top: 2.5rem !important;
  margin-bottom: 1rem !important;
}

.policy-content h2:first-child {
  margin-top: 0 !important;
}

.policy-content p {
  color: #475569 !important;
  line-height: 1.7 !important;
  margin-bottom: 1rem !important;
}

.policy-content ul {
  margin-bottom: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.policy-content li {
  color: #475569 !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.6 !important;
}

.policy-content strong {
  color: var(--flo-dark) !important;
  font-weight: 600 !important;
}

.policy-content a {
  color: var(--flo-blue) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

.policy-content a:hover {
  text-decoration: underline !important;
}

/* ------------------------------------------
   15. FOOTER CORPORATE INFO - Elegant styling
   ------------------------------------------ */

.corporate-details {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.corporate-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.15rem !important;
  padding-bottom: 0.5rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.corporate-item:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.corporate-label {
  font-size: 0.7rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  color: #64748B !important;
  font-weight: 500 !important;
}

.corporate-value {
  font-size: 0.95rem !important;
  color: #D6DEE7 !important;
  font-weight: 500 !important;
}

/* Phone link in corporate section */
.corporate-item .contact-link {
  font-size: 0.95rem !important;
  color: #D6DEE7 !important;
}

.corporate-item .contact-link:hover {
  color: var(--flo-teal) !important;
}

/* ------------------------------------------
   16. SERVICE CARDS - Elegant with icons
   ------------------------------------------ */

.service-icon {
  width: 56px !important;
  height: 56px !important;
  background: linear-gradient(135deg, var(--flo-blue) 0%, var(--flo-teal) 100%) !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 1.25rem !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(30, 127, 212, 0.3) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.service-card:hover .service-icon {
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 16px rgba(30, 127, 212, 0.4) !important;
}

/* Improve card title spacing */
.service-card h3 {
  margin-bottom: 0.75rem !important;
}

/* Smooth card hover */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.service-card:hover {
  transform: translateY(-5px) !important;
}

/* ------------------------------------------
   17. PRICING DIVIDER - Elegant separator
   ------------------------------------------ */

.pricing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 0 1rem;
}

.pricing-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  max-width: 120px;
}

.pricing-badge {
  color: var(--flo-teal) !important;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding: 0.5rem 0;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  cursor: pointer;
}

/* Underline animado desde el centro */
.pricing-badge::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--flo-teal);
  transition: width 0.3s ease, left 0.3s ease;
}

.pricing-badge:hover {
  color: #ffffff !important;
}

.pricing-badge:hover::after {
  width: 100%;
  left: 0;
}

@media (max-width: 576px) {
  .pricing-divider {
    gap: 1rem;
  }
  
  .pricing-line {
    max-width: 60px;
  }
  
  .pricing-badge {
    font-size: 0.9rem;
  }
}
