/* ==========================================================================
   DR. ESTOFADOS - LUXURY MODERN GLASSMORPHISM DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette - Premium Navy & Vibrant Emerald */
  --primary-navy: #0f172a;
  --primary-navy-light: #1e293b;
  --primary-blue: #0284c7;
  --primary-blue-light: #e0f2fe;
  
  /* WhatsApp & Action Color */
  --wa-green: #16a34a;
  --wa-green-hover: #15803d;
  --wa-glow: rgba(22, 163, 74, 0.25);

  /* Neutrals & Surfaces */
  --bg-page: #f8fafc;
  --bg-glass: rgba(255, 255, 255, 0.82);
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-slate: #334155;
  --text-muted: #64748b;
  --border-glass: rgba(255, 255, 255, 0.8);
  --border-subtle: #e2e8f0;
  --border-hover: #cbd5e1;

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Shadows & Elevation */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-glass: 0 10px 30px -5px rgba(15, 23, 42, 0.05), 0 4px 10px -2px rgba(15, 23, 42, 0.02);
  --shadow-hover: 0 20px 40px -8px rgba(15, 23, 42, 0.12);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-slate);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  letter-spacing: -0.025em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* Ambient Glow Orbs Background */
.ambient-glow {
  position: relative;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
}

.ambient-glow::before {
  content: '';
  position: absolute;
  top: -120px;
  right: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(224, 242, 254, 0.7) 0%, rgba(248, 250, 252, 0) 70%);
  pointer-events: none;
  z-index: 0;
  transform: translateX(30%);
}

/* Remover a luz de fundo no rodapé */
.ambient-glow::after {
  display: none;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background: var(--primary-navy);
  color: #94a3b8;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #e2e8f0;
  font-weight: 500;
}

.dot-green {
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
}

.top-contacts a {
  color: #cbd5e1;
  margin-left: 1.25rem;
  font-weight: 500;
  transition: var(--transition);
}

.top-contacts a:hover {
  color: #ffffff;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  height: 70px;
  display: flex;
  align-items: center;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-slate);
  transition: var(--transition);
}

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

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  box-shadow: 0 4px 12px var(--wa-glow);
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.35);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--primary-navy);
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-hover);
  z-index: 99;
}

.mobile-drawer.active {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-drawer a {
  padding: 0.5rem 0;
  font-weight: 500;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 4.5rem 0 5rem;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3.5rem;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(2, 132, 199, 0.08);
  color: var(--primary-blue);
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-h1 {
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.1rem;
}

.hero-p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.hero-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-slate);
}

.hero-benefits-list li i {
  color: var(--primary-blue);
  background: var(--primary-blue-light);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.725rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.975rem;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 6px 20px var(--wa-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta-btn i {
  font-size: 1.25rem;
}

.hero-cta-btn:hover {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.38);
}

.hero-cta-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Premium Image Card Frame */
.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: #ffffff;
  transition: var(--transition);
}

.hero-image-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

/* ==========================================================================
   TRUST BADGES BAR
   ========================================================================== */
.trust-section {
  padding: 2.25rem 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.trust-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-icon-wrapper {
  width: 44px;
  height: 44px;
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.trust-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.2;
}

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

/* ==========================================================================
   GENERIC SECTIONS
   ========================================================================== */
.section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.25rem;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

/* ==========================================================================
   BEFORE & AFTER SECTION
   ========================================================================== */
.ba-wrapper {
  max-width: 840px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 4px solid #ffffff;
}

.ba-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   SERVICES SECTION (GLASSMORPHIC CARDS)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(2, 132, 199, 0.3);
}

.service-thumb {
  height: 210px;
  overflow: hidden;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-thumb img {
  transform: scale(1.05);
}

.service-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-p {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  line-height: 1.55;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--primary-blue);
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary-navy);
  transform: translateX(3px);
}

/* ==========================================================================
   ABOUT BRAND SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  border: 4px solid #ffffff;
}

.about-img-box img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.about-text h3 {
  font-size: 1.95rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 0.975rem;
  color: var(--text-slate);
  margin-bottom: 1rem;
}

.about-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 1.1rem 0 1.5rem;
}

.about-checks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
}

.about-checks li i {
  color: var(--primary-blue);
  background: var(--primary-blue-light);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-btn {
  padding: 0.55rem 1.25rem !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  margin-top: 1rem !important;
  display: inline-flex !important;
  align-self: flex-start;
}

/* ==========================================================================
   SIMULATOR DARK GLASS WIDGET
   ========================================================================== */
.sim-container {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sim-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.sim-header h3 {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.sim-header p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.sim-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.sim-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
}

.sim-btn:hover, .sim-btn.selected {
  background: rgba(22, 163, 74, 0.2);
  border-color: var(--wa-green);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(22, 163, 74, 0.2);
}

.sim-result-box {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sim-result-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.6rem;
}

.sim-selected-list {
  min-height: 75px;
  font-size: 0.9rem;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.step-item {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-glass);
  text-align: center;
  box-shadow: var(--shadow-glass);
  transition: var(--transition);
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.25);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-row {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.review-body {
  font-size: 0.925rem;
  color: var(--text-slate);
  margin-bottom: 1.35rem;
  line-height: 1.55;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
}

.reviewer-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
}

.faq-btn {
  width: 100%;
  padding: 1.2rem 1.35rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-btn i {
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

.faq-card.active .faq-btn i {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.35rem;
  font-size: 0.925rem;
  color: var(--text-slate);
}

.faq-card.active .faq-content {
  max-height: 250px;
  padding: 0 1.35rem 1.25rem 1.35rem;
}

/* ==========================================================================
   CTA BANNER & FOOTER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.cta-banner p {
  color: #94a3b8;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: #090d16;
  color: #94a3b8;
  padding: 4rem 0 2rem;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 0.975rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.825rem;
  color: #64748b;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS & STICKY BAR
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
}

@media (max-width: 991px) {
  .hero-grid, .about-grid, .sim-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
}

@media (max-width: 768px) {
  .site-header, .top-bar {
    display: none !important;
  }

  .hero-section {
    padding: 1.25rem 0 1.5rem 0 !important;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem !important;
    text-align: center;
  }

  .hero-grid > div:nth-child(2) {
    order: -1;
    width: 100%;
  }

  .hero-image-card {
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .hero-image-card img {
    height: auto !important;
    max-height: 240px;
    object-fit: contain !important;
    width: 100%;
    border-radius: var(--radius-md);
  }

  .badge-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    margin-bottom: 0.35rem;
  }

  .hero-h1 {
    font-size: 1.4rem !important;
    line-height: 1.22;
    margin-bottom: 0.35rem !important;
  }

  .hero-p {
    font-size: 0.85rem !important;
    line-height: 1.35;
    margin-bottom: 0.65rem !important;
  }

  .hero-benefits-list {
    gap: 0.3rem !important;
    margin-bottom: 0.85rem !important;
    align-items: center;
  }

  .hero-benefits-list li {
    font-size: 0.8rem !important;
  }

  .hero-cta-group {
    width: 100%;
    align-items: center;
  }

  .hero-cta-btn {
    width: 100%;
    padding: 0.8rem 1rem !important;
    font-size: 0.9rem !important;
  }

  .about-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-btn {
    align-self: center !important;
    margin: 1rem auto 0 !important;
  }

  .sim-container {
    padding: 1.5rem 1.15rem !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .sim-grid {
    gap: 1.5rem !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .sim-header h3 {
    font-size: 1.3rem !important;
    line-height: 1.25 !important;
    word-wrap: break-word !alignment;
  }

  .sim-header p {
    font-size: 0.825rem !important;
    margin-bottom: 1rem !important;
  }

  .sim-options-grid {
    grid-template-columns: 1fr !important;
    gap: 0.6rem !important;
  }

  .sim-btn {
    padding: 0.7rem 0.85rem !important;
    font-size: 0.85rem !important;
    white-space: normal !important;
    word-break: break-word !important;
    width: 100% !important;
  }

  .sim-result-box {
    padding: 1.15rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box !important;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: 0.6rem 0.75rem;
    border-top: 1px solid var(--border-subtle);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  }

  .mobile-sticky-bar.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-sticky-btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
    padding: 0.7rem 0.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
    text-align: center;
  }

  body {
    padding-bottom: 60px;
  }
}
