/* ═══════════════════════════════════════════════════
   AgeuBot — Global Stylesheet (HTML Puro)
   Design: "Clean Tech Precision"
   Paleta: Verde #2ECC71, fundo claro, textos escuros
   Tipografia: DM Sans
   ═══════════════════════════════════════════════════ */

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

:root {
  --green: #2ECC71;
  --green-dark: #27AE60;
  --green-light: #d5f5e3;
  --green-50: #f0fdf4;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(46,204,113,0.3);
}
.btn-primary:hover { background: var(--green-dark); }
.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--gray-300); background: var(--gray-50); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-white {
  background: var(--white);
  color: var(--green);
  font-weight: 700;
}
.btn-white:hover { background: var(--gray-100); }

/* ─── Badge ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--green-50);
  border: 1px solid #bbf7d0;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #166534;
}
.badge-green {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--green-50);
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--gray-100);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
.header-logo img { height: 2.5rem; width: auto; }
.header-nav { display: none; align-items: center; gap: 2rem; }
.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--gray-900); }
.header-actions { display: none; align-items: center; gap: 0.75rem; }
.mobile-toggle {
  display: flex;
  padding: 0.5rem;
  color: var(--gray-600);
}
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; }

@media (min-width: 1024px) {
  .header-nav { display: flex; }
  .header-actions { display: flex; }
  .mobile-toggle { display: none; }
}

/* Login Dropdown */
.login-dropdown { position: relative; }
.login-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.login-btn:hover { color: var(--gray-900); background: var(--gray-50); }
.login-btn svg { width: 1rem; height: 1rem; }
.login-btn .chevron { transition: transform 0.2s; }
.login-btn.open .chevron { transform: rotate(180deg); }
.login-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.5rem;
  width: 14rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  display: none;
  animation: fadeSlideDown 0.2s ease;
}
.login-menu.open { display: block; }
.login-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.login-menu a:hover { background: var(--green-50); }
.login-menu .icon-box {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.login-menu a:hover .icon-box { background: var(--green); }
.login-menu .icon-box svg { width: 1rem; height: 1rem; color: var(--green); transition: color 0.2s; }
.login-menu a:hover .icon-box svg { color: var(--white); }
.login-menu .link-title { display: block; font-size: 0.875rem; font-weight: 600; color: var(--gray-900); }
.login-menu .link-sub { display: block; font-size: 0.75rem; color: var(--gray-500); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--gray-600);
}
.mobile-nav a:hover { color: var(--gray-900); }
.mobile-nav .mobile-login {
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
  margin-top: 0.5rem;
}
.mobile-nav .mobile-login a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}
.mobile-nav .mobile-login .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav .mobile-login .icon-box svg { width: 1.25rem; height: 1.25rem; color: var(--green); }

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-0.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 7rem 0 4rem;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(46,204,113,0.03) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(46,204,113,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,253,244,0.8), transparent);
  border-radius: 50%;
  filter: blur(80px);
}
.hero-content {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .green { color: var(--green); }
.hero-desc {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 32rem;
  margin-bottom: 2rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2rem; font-size: 0.875rem; }
.hero-stats .stat-num { display: block; font-size: 1.5rem; font-weight: 700; color: var(--gray-900); }
.hero-stats .stat-label { color: var(--gray-500); }
.hero-stats .stat + .stat { padding-left: 2rem; border-left: 1px solid var(--gray-200); }

@media (min-width: 1024px) {
  .hero { padding: 9rem 0 6rem; }
  .hero-content { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ─── Phone Mockup ─── */
.phone-wrapper { position: relative; display: flex; justify-content: center; }
.phone-glow {
  position: absolute;
  inset: -2.5rem;
  background: linear-gradient(135deg, rgba(46,204,113,0.12), rgba(46,204,113,0.05));
  border-radius: 3rem;
  filter: blur(40px);
}
.phone-frame {
  position: relative;
  width: 320px;
  background: #111;
  border-radius: 2.8rem;
  padding: 0.875rem;
  box-shadow: var(--shadow-xl), 0 0 40px rgba(0,0,0,0.08);
}
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 1.75rem;
  background: #111;
  border-radius: 0 0 1rem 1rem;
  z-index: 10;
}
.phone-screen {
  background: #ECE5DD;
  border-radius: 2.2rem;
  overflow: hidden;
}
.wa-header {
  background: #075E54;
  padding: 0.75rem 1rem;
  padding-top: 2.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wa-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-avatar svg { width: 1.25rem; height: 1.25rem; color: white; }
.wa-name { color: white; font-size: 0.875rem; font-weight: 600; }
.wa-status { color: #a7f3d0; font-size: 0.6875rem; }
.wa-icons { margin-left: auto; display: flex; gap: 1rem; color: rgba(255,255,255,0.7); }
.wa-icons svg { width: 1.25rem; height: 1.25rem; }

.chat-area {
  padding: 0.75rem;
  min-height: 420px;
  max-height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.625rem;
}
.msg {
  max-width: 80%;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  word-break: break-word;
  opacity: 0;
  transform: translateY(0.5rem);
  animation: msgIn 0.3s ease forwards;
}
.msg.user {
  align-self: flex-end;
  background: #DCF8C6;
  color: var(--gray-800);
  border-radius: 0.75rem 0.25rem 0.75rem 0.75rem;
}
.msg.bot {
  align-self: flex-start;
  background: var(--white);
  color: var(--gray-800);
  border-radius: 0.25rem 0.75rem 0.75rem 0.75rem;
  box-shadow: 0 1px 1px rgba(0,0,0,0.06);
}
.msg .bot-label { display: block; font-size: 0.625rem; font-weight: 700; color: #25D366; margin-bottom: 0.125rem; }
.msg .time { display: flex; align-items: center; justify-content: flex-end; gap: 0.125rem; margin-top: 0.125rem; }
.msg .time span { font-size: 0.625rem; color: var(--gray-400); }
.msg .time svg { width: 0.875rem; height: 0.875rem; color: #53BDEB; }

.typing-indicator {
  align-self: flex-start;
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0.25rem 0.75rem 0.75rem 0.75rem;
  box-shadow: 0 1px 1px rgba(0,0,0,0.06);
  display: flex;
  gap: 0.375rem;
}
.typing-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gray-400);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out;
}
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }

.wa-input-bar {
  background: #F0F0F0;
  padding: 0.625rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wa-input-bar .emoji svg { width: 1.25rem; height: 1.25rem; color: var(--gray-500); }
.wa-input-bar .input-field {
  flex: 1;
  background: var(--white);
  border-radius: 9999px;
  padding: 0.625rem 1rem;
  font-size: 0.75rem;
  color: var(--gray-400);
}
.wa-input-bar .send-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-input-bar .send-btn svg { width: 1rem; height: 1rem; color: white; }

@keyframes msgIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-0.375rem); }
}

@media (min-width: 640px) {
  .phone-frame { width: 360px; }
}

/* ─── Section Styles ─── */
.section { padding: 5rem 0; }
.section-alt { background: rgba(249,250,251,0.7); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: var(--gray-500); max-width: 42rem; margin: 0 auto; }

@media (min-width: 1024px) {
  .section { padding: 7rem 0; }
}

/* ─── Feature Rows ─── */
.feature-row {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}
.feature-row:last-child { margin-bottom: 0; }
@media (min-width: 1024px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .feature-row.reverse .feature-visual { order: -1; }
}
.feature-text h3 { margin-bottom: 1rem; }
.feature-text p { color: var(--gray-500); line-height: 1.7; margin-bottom: 1.5rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-600);
}
.feature-list .check-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-list .check-icon svg { width: 0.875rem; height: 0.875rem; color: var(--green); }

.feature-img {
  position: relative;
}
.feature-img .glow {
  position: absolute;
  inset: -0.75rem;
  background: linear-gradient(135deg, var(--green-50), #eff6ff);
  border-radius: var(--radius-xl);
  filter: blur(20px);
  opacity: 0.6;
}
.feature-img img {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  width: 100%;
}

/* Integration Grid */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
}
.integration-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.integration-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.integration-card .emoji { font-size: 1.5rem; }
.integration-card .name { font-size: 0.875rem; font-weight: 500; color: var(--gray-600); }
.integration-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.integration-center img { width: 2.5rem; height: 2.5rem; object-fit: contain; }

/* AI Flow Steps */
.ai-flow {
  background: linear-gradient(135deg, var(--green-50), #ecfdf5);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid #bbf7d0;
}
.ai-flow .step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}
.ai-flow .step + .step { border-top: 1px solid rgba(46,204,113,0.15); }
.ai-flow .step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.ai-flow .step-text { font-size: 0.9375rem; color: var(--gray-700); font-weight: 500; }

/* Metrics Card */
.metrics-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}

/* ─── How It Works ─── */
.steps-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-card .step-number {
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--green);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 14px rgba(46,204,113,0.3);
}
.step-card .step-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--green-50);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.step-card:hover .step-icon { background: var(--green); color: white; }
.step-card .step-icon svg { width: 1.5rem; height: 1.5rem; }
.step-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.step-card p { color: var(--gray-500); line-height: 1.6; font-size: 0.9375rem; }

/* ─── Tools Grid ─── */
.tools-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tools-grid { grid-template-columns: repeat(4, 1fr); } }

.tool-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}
.tool-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.tool-card .tool-icon {
  width: 3rem;
  height: 3rem;
  background: var(--green-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 1rem;
}
.tool-card .tool-icon svg { width: 1.5rem; height: 1.5rem; }
.tool-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.tool-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ─── Pricing ─── */
.pricing-toggle {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 9999px;
  padding: 0.25rem;
  box-shadow: var(--shadow-sm);
}
.pricing-toggle button {
  position: relative;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s;
  color: var(--gray-500);
}
.pricing-toggle button:hover { color: var(--gray-700); }
.pricing-toggle button.active {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(46,204,113,0.3);
}
.pricing-toggle .discount-badge {
  position: absolute;
  top: -0.625rem;
  right: -0.5rem;
  padding: 0.125rem 0.375rem;
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 9999px;
  background: #bbf7d0;
  color: var(--green);
}
.pricing-toggle button.active .discount-badge {
  background: #facc15;
  color: var(--gray-900);
}

@media (min-width: 640px) {
  .pricing-toggle button { padding: 0.625rem 1.75rem; }
}

.pricing-card {
  position: relative;
  max-width: 36rem;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(46,204,113,0.15);
}
.pricing-card .plan-badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1.25rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.pricing-card .plan-name { font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: 0.5rem; }
.pricing-card .plan-desc { text-align: center; color: var(--gray-500); margin-bottom: 1.5rem; }
.pricing-card .price-display { text-align: center; margin-bottom: 1.5rem; }
.pricing-card .price-display .currency { font-size: 1.125rem; color: var(--gray-500); vertical-align: super; }
.pricing-card .price-display .amount { font-size: 3.75rem; font-weight: 800; color: var(--gray-900); }
.pricing-card .price-display .cents { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); }
.pricing-card .price-display .period { font-size: 1.125rem; color: var(--gray-500); }
.pricing-card .price-total { text-align: center; font-size: 0.875rem; color: var(--gray-400); margin-top: 0.5rem; }
.pricing-card .price-before { text-align: center; font-size: 0.875rem; color: var(--green); font-weight: 600; margin-top: 0.25rem; }

.pricing-features {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .pricing-features { grid-template-columns: repeat(2, 1fr); } }
.pricing-features .feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}
.pricing-features .feature svg { width: 1rem; height: 1rem; color: var(--green); flex-shrink: 0; margin-top: 0.125rem; }

.pricing-card .no-commitment { text-align: center; font-size: 0.75rem; color: var(--gray-400); margin-top: 1rem; }

@media (min-width: 1024px) {
  .pricing-card { padding: 2.5rem; }
}

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-stars svg { width: 1rem; height: 1rem; fill: #fbbf24; color: #fbbf24; }
.testimonial-quote {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-50);
}
.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
}
.testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--gray-900); }
.testimonial-role { font-size: 0.75rem; color: var(--gray-500); }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green); }
.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gray-400);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--green); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ─── CTA Section ─── */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800), var(--gray-900));
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  overflow: hidden;
}
.cta-section .cta-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(46,204,113,0.08) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(46,204,113,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-section .cta-glow-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background: rgba(46,204,113,0.1);
  border-radius: 50%;
  filter: blur(80px);
}
.cta-section .cta-glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15rem;
  height: 15rem;
  background: rgba(46,204,113,0.05);
  border-radius: 50%;
  filter: blur(80px);
}
.cta-section .cta-inner { position: relative; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { font-size: 1.125rem; color: var(--gray-400); margin-bottom: 2rem; max-width: 36rem; margin-left: auto; margin-right: auto; }

@media (min-width: 1024px) {
  .cta-section { padding: 4rem; border-radius: 1.5rem; }
}

/* ─── Footer ─── */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-brand img { height: 2.5rem; width: auto; margin-bottom: 1rem; filter: brightness(1.1); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1rem; }

.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  background: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all 0.2s;
}
.social-link:hover { color: white; }
.social-link.instagram:hover { background: #E4405F; }
.social-link.facebook:hover { background: #1877F2; }
.social-link.youtube:hover { background: #FF0000; }
.social-link.twitter:hover { background: #000; }
.social-link svg { width: 1.25rem; height: 1.25rem; }

.footer-col h4 { color: var(--white); font-weight: 600; margin-bottom: 1rem; font-size: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a { font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.75rem;
}
.footer-bottom .copyright { color: var(--gray-500); }
.footer-bottom .tagline { color: var(--gray-600); }
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ─── WhatsApp FAB ─── */
.whatsapp-fab-wrapper {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.whatsapp-bubble {
  background: #fff;
  color: #1a1a1a;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  cursor: pointer;
  max-width: 220px;
  text-align: center;
  text-decoration: none;
  animation: bubbleFloat 3s ease-in-out infinite;
}
.whatsapp-bubble::after {
  content: '';
  position: absolute;
  right: 20px;
  bottom: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid #fff;
  border-bottom: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
.whatsapp-bubble strong { color: #25D366; }
@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.whatsapp-fab-btn {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  transition: transform 0.2s;
  text-decoration: none;
  animation: fabShake 4s ease-in-out infinite;
}
.whatsapp-fab-btn:hover { transform: scale(1.15); }
.whatsapp-fab-btn svg { width: 1.75rem; height: 1.75rem; color: white; }
.whatsapp-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  background: #ff3b30;
  border-radius: 50%;
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  animation: badgeBounce 2s ease-in-out infinite;
}
@keyframes fabShake {
  0%, 100% { transform: rotate(0deg); }
  5% { transform: rotate(-10deg); }
  10% { transform: rotate(10deg); }
  15% { transform: rotate(-8deg); }
  20% { transform: rotate(6deg); }
  25% { transform: rotate(0deg); }
}
@keyframes badgeBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
/* Pulse ring around button */
.whatsapp-fab-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: fabPulseRing 2s ease-out infinite;
}
@keyframes fabPulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
/* Mobile */
@media (max-width: 768px) {
  .whatsapp-fab-wrapper {
    bottom: 1rem;
    right: 1rem;
  }
  .whatsapp-bubble {
    font-size: 0.8rem;
    padding: 0.5rem 0.85rem;
    max-width: 200px;
  }
  .whatsapp-fab-btn {
    width: 3rem;
    height: 3rem;
  }
  .whatsapp-fab-btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .whatsapp-badge {
    width: 18px;
    height: 18px;
    font-size: 10px;
    top: -3px;
    right: -3px;
  }
}
@media (max-width: 375px) {
  .whatsapp-bubble {
    font-size: 0.75rem;
    max-width: 170px;
    padding: 0.4rem 0.7rem;
  }
}
/* ─── Scroll Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Page Content (for subpages) ─── */
.page-hero {
  padding: 8rem 0 3rem;
  background: linear-gradient(180deg, var(--green-50), var(--white));
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.125rem; color: var(--gray-500); max-width: 40rem; }

.page-content { padding: 4rem 0; }
.page-content h2 { margin-bottom: 1rem; margin-top: 2.5rem; font-size: 1.5rem; }
.page-content h2:first-child { margin-top: 0; }
.page-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; }
.page-content ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.page-content ul li { color: var(--gray-600); line-height: 1.8; margin-bottom: 0.5rem; position: relative; padding-left: 1rem; }
.page-content ul li::before { content: "•"; color: var(--green); position: absolute; left: 0; font-weight: 700; }

/* ─── Utility ─── */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 0.25rem; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ═══════════════════════════════════════════════════ */
/* ═══ MOBILE OPTIMIZATION ═══════════════════════════ */
/* ═══════════════════════════════════════════════════ */

/* ─── Hero Section Mobile ─── */
@media (max-width: 768px) {
  .hero {
    padding-top: 5rem;
    padding-bottom: 2rem;
    text-align: center;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-content {
    order: 1;
  }
  .hero-visual {
    order: 2;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.15;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

/* ─── Navbar Mobile ─── */
@media (max-width: 768px) {
  .header {
    padding: 0.5rem 0;
  }
  .header .container {
    padding: 0 1rem;
  }
  .header-logo img {
    height: 2rem;
  }
  .btn-cta-header {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

/* ─── Sections Mobile ─── */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .section-header p {
    font-size: 0.9rem;
  }
}

/* ─── Features Grid Mobile ─── */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .feature-card {
    padding: 1.5rem;
  }
  .feature-card h3 {
    font-size: 1.1rem;
  }
}

/* ─── Steps Grid Mobile ─── */
@media (max-width: 639px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .step-card {
    text-align: center;
  }
}

/* ─── Tools Grid Mobile ─── */
@media (max-width: 639px) {
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ─── Pricing Mobile ─── */
@media (max-width: 768px) {
  .pricing-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  .pricing-toggle {
    flex-wrap: wrap;
    justify-content: center;
  }
  .pricing-toggle button {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
  .pricing-amount .price-integer {
    font-size: 2.5rem;
  }
  .pricing-features {
    grid-template-columns: 1fr;
  }
}

/* ─── Testimonials Mobile ─── */
@media (max-width: 767px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .testimonial-card {
    padding: 1.25rem;
  }
}

/* ─── FAQ Mobile ─── */
@media (max-width: 768px) {
  .faq-item {
    padding: 1rem;
  }
  .faq-question {
    font-size: 0.9rem;
  }
  .faq-answer {
    font-size: 0.85rem;
  }
}

/* ─── CTA Section Mobile ─── */
@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 1rem;
  }
  .cta-section h2 {
    font-size: 1.5rem;
  }
  .cta-section p {
    font-size: 0.9rem;
  }
  .cta-section .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ─── Footer Mobile ─── */
@media (max-width: 639px) {
  .footer {
    padding: 2rem 0 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ─── General Mobile Improvements ─── */
@media (max-width: 768px) {
  body {
    font-size: 0.9375rem;
  }
  .container {
    padding: 0 1rem;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden;
  }
  /* Better tap targets */
  a, button {
    min-height: 44px;
    min-width: 44px;
  }
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
}

/* ─── Small phones (< 375px) ─── */
@media (max-width: 375px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  .hero h1 { font-size: 1.5rem; }

}
/* ═══════════════════════════════════════════════════
   AgeuBot — Additional Styles v2.0
   Attendant-based pricing, trust elements, comparison
   ═══════════════════════════════════════════════════ */

/* ─── Trust Bar ─── */
.trust-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 1rem 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-600);
  white-space: nowrap;
}
.trust-item svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-items {
    gap: 0.75rem 1.25rem;
  }
  .trust-item {
    font-size: 0.75rem;
  }
}

/* ─── Attendant Selector ─── */
.attendant-selector {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.attendant-selector label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 1rem;
}
.attendant-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.att-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--gray-500);
}
.att-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-50);
}
.att-btn svg {
  width: 1rem;
  height: 1rem;
}
.att-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 5rem;
}
.att-count {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.att-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Range slider */
.att-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--gray-200);
  outline: none;
  margin: 0.5rem 0;
}
.att-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(46,204,113,0.4);
  transition: transform 0.15s;
}
.att-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.att-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(46,204,113,0.4);
}
.att-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem;
  color: var(--gray-400);
  padding: 0 0.125rem;
}

/* ─── Price Detail ─── */
.price-detail {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: var(--green-50);
  border-radius: var(--radius);
  display: inline-block;
  width: 100%;
}
.price-detail span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ─── Price Savings ─── */
.price-savings {
  text-align: center;
  font-size: 0.875rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}
.price-savings svg {
  flex-shrink: 0;
}

/* ─── Price Breakdown ─── */
.price-breakdown {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 1rem 0 1.5rem;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.375rem 0;
  font-size: 0.8125rem;
  color: var(--gray-600);
}
.breakdown-row + .breakdown-row {
  border-top: 1px solid var(--gray-100);
}
.breakdown-total {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 0.875rem;
  padding-top: 0.5rem;
  margin-top: 0.25rem;
}

/* ─── Pricing Card Large (precos page) ─── */
.pricing-card-large {
  max-width: 42rem;
}

/* ─── Trust Grid ─── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s;
}
.trust-card:hover {
  box-shadow: var(--shadow-md);
}
.trust-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.trust-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.trust-card p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ─── Comparison Table ─── */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -1rem;
  padding: 0 1rem;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.comparison-table th,
.comparison-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray-100);
}
.comparison-table th {
  background: var(--gray-50);
  font-weight: 700;
  color: var(--gray-700);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.comparison-table th small {
  display: block;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gray-400);
  font-size: 0.6875rem;
}
.comparison-table td {
  color: var(--gray-600);
}
.comparison-table td strong {
  color: var(--gray-900);
  font-size: 1rem;
}
.comparison-table .savings {
  color: var(--green);
  font-weight: 700;
}
.comparison-table tbody tr:hover {
  background: var(--green-50);
}

/* ─── Mobile Adjustments ─── */
@media (max-width: 768px) {
  .attendant-selector {
    padding: 1rem;
  }
  .attendant-control {
    gap: 1rem;
  }
  .att-count {
    font-size: 2rem;
  }
  .att-btn {
    width: 2.25rem;
    height: 2.25rem;
  }
  .price-breakdown {
    padding: 0.75rem;
  }
  .breakdown-row {
    font-size: 0.75rem;
  }
  .trust-grid {
    gap: 1rem;
  }
  .trust-card {
    padding: 1rem 0.75rem;
  }
  .trust-card h3 {
    font-size: 0.875rem;
  }
  .trust-card p {
    font-size: 0.75rem;
  }
  .trust-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.75rem;
  }
  .trust-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 375px) {
  .att-count {
    font-size: 1.75rem;
  }
  .attendant-control {
    gap: 0.75rem;
  }
}
