/* CertiTrust — Apple-inspired design
   Colors based on brand: Navy #0d1b2a, Gold #c9a227, White
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  /* Brand Colors */
  --navy: #0d1b2a;
  --navy-light: #1b2838;
  --navy-dark: #070f18;
  --gold: #c9a227;
  --gold-light: #dbb84a;
  --gold-dark: #a68520;
  --white: #ffffff;
  
  /* Semantic Colors */
  --bg: var(--navy);
  --bg-surface: var(--navy-light);
  --text: var(--white);
  --text-muted: rgba(255, 255, 255, 0.75);
  --text-subtle: rgba(255, 255, 255, 0.55);
  --accent: var(--gold);
  --accent-hover: var(--gold-light);
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.06);
  
  /* Spacing */
  --section-gap: 120px;
  --container-max: 1200px;
  --container-narrow: 800px;
  
  /* Typography */
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  /* Effects */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-elevated: 0 16px 64px rgba(0, 0, 0, 0.4);
  --transition-fast: 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% -20%, rgba(201, 162, 39, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(201, 162, 39, 0.08), transparent);
  pointer-events: none;
  z-index: -1;
}

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

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

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  overflow: visible;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 24px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 12px 20px;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  z-index: 9999;
  color: var(--text);
}

/* ==================== HEADER ==================== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(13, 27, 42, 0.72);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition-fast);
  overflow: visible;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  gap: 20px;
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.3px;
  transition: opacity var(--transition-fast);
  flex-shrink: 0;
  overflow: visible;
}

.brand:hover {
  opacity: 0.8;
}

.brand img,
.brand svg {
  height: 28px;
  width: auto !important;
  max-width: none !important;
  flex-shrink: 0;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navlinks a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.navlinks a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.navcta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hide nav on mobile */
@media (max-width: 900px) {
  .navlinks {
    display: none;
  }
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.btn:active {
  transform: scale(0.98);
}

.btn.primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201, 162, 39, 0.3);
}

.btn.primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.4);
}

.btn.small {
  padding: 10px 18px;
  font-size: 13px;
}

.btn.large {
  padding: 18px 36px;
  font-size: 17px;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 980px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-title .highlight {
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  color: var(--text-subtle);
  margin-top: 4px;
}

/* ==================== SECTIONS ==================== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ==================== PRACTICE AREAS ==================== */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.practice-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.practice-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-4px);
}

.practice-card:hover::before {
  transform: scaleX(1);
}

.practice-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--gold);
}

.practice-icon svg {
  width: 24px;
  height: 24px;
}

.practice-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
}

.practice-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ==================== TEAM / ABOUT ==================== */
.team-section {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all var(--transition-smooth);
}

.team-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border);
  transform: translateY(-8px);
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* Ajuste específico para la foto de Rodrigo que está descentrada */
.team-photo img[src*="rodrigo-delgado"] {
  object-position: 45% 15%;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  color: var(--gold);
  font-size: 48px;
  font-weight: 700;
}

.team-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
}

.team-role {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==================== SERVICES ==================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 800px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all var(--transition-smooth);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 162, 39, 0.2);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
}

.service-card .description {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.service-price .amount {
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
}

.service-price .unit {
  font-size: 15px;
  color: var(--text-subtle);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.service-features li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.tag {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 980px;
  color: var(--text-muted);
}

/* ==================== PROCESS / HOW IT WORKS ==================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-step {
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  position: relative;
}

.process-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.process-step h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}

.process-step p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

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

details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

details:hover {
  border-color: rgba(201, 162, 39, 0.3);
}

details[open] {
  background: rgba(255, 255, 255, 0.05);
}

summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--transition-fast);
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  padding: 0 24px 20px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.02));
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 0 0 16px;
}

.cta-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==================== CONTACT ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.contact-item {
  margin-bottom: 28px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}

.contact-item p,
.contact-item a {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.contact-item a:hover {
  color: var(--text);
}

.contact-cta {
  padding: 40px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.02));
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-cta h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
}

.contact-cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.contact-note {
  margin-top: 24px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-subtle);
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--border-light);
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-brand img,
.footer-brand svg {
  height: 28px;
  width: auto;
  max-width: none;
}

.footer-description {
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 320px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-subtle);
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin: 0 0 16px;
}

.footer-column a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--gold);
}

/* ==================== UTILITY CLASSES ==================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ==================== LEGAL PAGES ==================== */
.legal-page {
  padding-top: 120px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.legal-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin: 0 0 16px;
}

.legal-content .last-updated {
  font-size: 14px;
  color: var(--text-subtle);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 48px 0 16px;
  color: var(--text);
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 32px 0 12px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--gold-light);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ==================== PILL / BADGES ==================== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 980px;
  color: var(--text-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-sm);
  color: var(--gold);
}

.badge svg {
  width: 16px;
  height: 16px;
}

/* ==================== TRUST BADGES / CALLOUT ==================== */
.callout {
  padding: 48px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.02));
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 800px) {
  .callout {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}

.callout h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
}

.callout p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 24px;
  line-height: 1.6;
}

.callout-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==================== SEPARATOR ==================== */
.sep {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 32px 0;
}
