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

:root {
  --primary: #f97316;
  --primary-dark: #ea6c08;
  --primary-light: rgba(249,115,22,0.1);
  --primary-border: rgba(249,115,22,0.3);
  --bg: #ffffff;
  --fg: #0f172a;
  --card: #ffffff;
  --border: #e2e8f0;
  --muted: #f1f5f9;
  --muted-fg: #64748b;
  --dark-bg: #0f172a;
  --dark-mid: #1a2035;
  --dark-light: #1e293b;
  --radius: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg); color: var(--fg);
  line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ── CONTAINER ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9375rem; transition: all 0.2s; cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 5rem; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
}
.navbar-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em;
}
.navbar-logo svg { width: 2rem; height: 2rem; color: var(--primary); flex-shrink: 0; }
.logo-accent { color: var(--primary); }

.navbar-links { display: flex; align-items: center; gap: 1.25rem; }
.navbar-links > a {
  font-size: 0.875rem; font-weight: 500; color: var(--muted-fg);
  transition: color 0.15s;
}
.navbar-links > a:hover, .navbar-links > a.active { color: var(--primary); }

.dropdown { position: relative; }
.dropdown-trigger {
  display: flex; align-items: center; gap: 0.25rem; padding: 0;
  font-size: 0.875rem; font-weight: 500; color: var(--muted-fg);
  transition: color 0.15s; cursor: pointer;
}
.dropdown-trigger:hover, .dropdown-trigger.active { color: var(--primary); }
.dropdown-trigger .chevron {
  width: 0.875rem; height: 0.875rem; transition: transform 0.2s;
}
.dropdown.open .chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 0.5rem);
  left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  min-width: 14rem; overflow: hidden;
  opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s;
}
.dropdown.open .dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 500;
  color: var(--fg) !important; transition: background 0.15s, color 0.15s !important;
}
.dropdown-menu a:hover { background: var(--muted); color: var(--primary) !important; }
.dropdown-menu a.active { color: var(--primary) !important; background: rgba(249,115,22,0.05); }
.dropdown-menu a svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; }

.navbar-cta {
  padding: 0.6rem 1.5rem; background: var(--primary); color: #fff;
  border-radius: var(--radius); font-size: 0.875rem; font-weight: 700;
  transition: background 0.15s;
}
.navbar-cta:hover { background: var(--primary-dark); color: #fff; }

.navbar-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 2rem; height: 2rem; background: none; border: none; padding: 0;
}
.navbar-hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--fg); border-radius: 2px; transition: all 0.3s;
}
.navbar-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem 1.5rem; gap: 0.125rem;
}
.mobile-menu.open { display: flex; }
.mobile-label {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted-fg); padding: 0.5rem 0.5rem 0.25rem;
}
.mobile-menu a {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.5rem; border-radius: 0.5rem;
  font-size: 1rem; font-weight: 500; color: var(--fg); transition: background 0.15s;
}
.mobile-menu a:hover { background: var(--muted); }
.mobile-menu a.active { color: var(--primary); }
.mobile-menu a svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; }
.mobile-divider { height: 1px; background: var(--border); margin: 0.5rem 0; }

@media (max-width: 900px) {
  .navbar-links { display: none; }
  .navbar-hamburger { display: flex; }
}

/* ── HOME HERO ── */
.hero {
  padding: 8rem 1.5rem 5rem; position: relative; overflow: hidden;
  background-image: url('/assets/img/hero-bg.png');
  background-size: cover; background-position: center;
  min-height: 100vh; display: flex; align-items: center;
}
.hero-overlay-v { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.6), rgba(0,0,0,0.85)); }
.hero-overlay-h { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,23,42,0.6), transparent, rgba(15,23,42,0.4)); }
.hero-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; background: rgba(249,115,22,0.15); border-radius: 50%; filter: blur(130px); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 56rem; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-block; padding: 0.4rem 1rem; margin-bottom: 1.5rem;
  border-radius: 9999px; background: rgba(249,115,22,0.2); color: var(--primary);
  font-weight: 600; font-size: 0.875rem; border: 1px solid rgba(249,115,22,0.3);
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900;
  color: #fff; line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 1.5rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero p {
  font-size: 1.125rem; color: rgba(255,255,255,0.7);
  max-width: 40rem; margin: 0 auto 3rem; line-height: 1.7;
}
.hero-search {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-2xl);
  padding: 1.25rem 1.5rem; max-width: 48rem; margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.hero-search h3 { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 0.75rem; text-align: left; }
.hero-search-row { display: flex; gap: 1rem; }
.hero-search-input { position: relative; flex: 1; }
.hero-search-input svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 1.25rem; height: 1.25rem; color: rgba(255,255,255,0.5); }
.hero-search-input input {
  width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); padding: 1rem 1rem 1rem 3rem;
  color: #fff; font-size: 0.9375rem; outline: none; transition: border-color 0.2s;
  backdrop-filter: blur(4px);
}
.hero-search-input input::placeholder { color: rgba(255,255,255,0.4); }
.hero-search-input input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(249,115,22,0.2); }
.hero-search button { padding: 1rem 2rem; }

@media (max-width: 640px) {
  .hero { padding: 7rem 1rem 4rem; }
  .hero-search-row { flex-direction: column; }
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  position: relative; overflow: hidden; padding: 6rem 1.5rem 4rem;
}
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-mid) 50%, var(--dark-bg) 100%); }
.page-hero-glow1 { position: absolute; top: -6rem; right: -6rem; width: 500px; height: 500px; background: rgba(249,115,22,0.25); border-radius: 50%; filter: blur(120px); pointer-events: none; }
.page-hero-glow2 { position: absolute; bottom: -4rem; left: 2.5rem; width: 18rem; height: 18rem; background: rgba(249,115,22,0.15); border-radius: 50%; filter: blur(80px); pointer-events: none; }
.page-hero-grid {
  position: absolute; inset: 0; opacity: 0.035; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.2) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.2) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.4); margin-bottom: 2rem; }
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.15s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb span:last-child { color: rgba(255,255,255,0.7); font-weight: 500; }
.page-hero-icon { width: 2.5rem; height: 2.5rem; color: var(--primary); margin-bottom: 0.75rem; }
.page-hero h1 { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 1rem; line-height: 1.15; }
.page-hero p { font-size: 1.0625rem; color: rgba(255,255,255,0.55); max-width: 40rem; line-height: 1.7; }

/* ── FEATURES STRIP ── */
.features-strip { padding: 5rem 1.5rem; background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 2rem; max-width: 1280px; margin: 0 auto; }
.feature-item { display: flex; align-items: flex-start; gap: 1rem; }
.feature-icon { width: 3rem; height: 3rem; border-radius: 0.625rem; background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.feature-item h4 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.375rem; }
.feature-item p { font-size: 0.875rem; color: var(--muted-fg); }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.section-header p { font-size: 1.0625rem; color: var(--muted-fg); max-width: 40rem; margin: 0 auto; }

/* ── SERVICES OVERVIEW ── */
.services-section { padding: 6rem 1.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; max-width: 1280px; margin: 0 auto; }
.service-card {
  display: flex; flex-direction: column; padding: 1.75rem; border-radius: var(--radius-2xl);
  border: 1px solid var(--border); background: var(--card); transition: all 0.2s;
}
.service-card:hover { border-color: rgba(249,115,22,0.4); box-shadow: 0 8px 24px rgba(0,0,0,0.07); transform: translateY(-4px); }
.service-card.highlight { border-color: var(--primary); background: rgba(249,115,22,0.05); box-shadow: 0 8px 30px rgba(249,115,22,0.12); }
.service-card-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: var(--muted); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  transition: background 0.2s;
}
.service-card:hover .service-card-icon { background: var(--primary-light); }
.service-card.highlight .service-card-icon { background: var(--primary); }
.service-card-icon svg { width: 1.5rem; height: 1.5rem; color: var(--fg); transition: color 0.2s; }
.service-card:hover .service-card-icon svg { color: var(--primary); }
.service-card.highlight .service-card-icon svg { color: #fff; }
.service-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--muted-fg); flex: 1; line-height: 1.6; }
.service-card-cta { margin-top: 1.25rem; font-size: 0.875rem; font-weight: 600; color: var(--muted-fg); transition: color 0.15s; }
.service-card:hover .service-card-cta, .service-card.highlight .service-card-cta { color: var(--primary); }

/* ── PRICING CARDS ── */
.pricing-section { padding: 6rem 1.5rem; background: var(--bg); }
.pricing-section.alt { background: var(--muted); }
.view-toggle {
  display: inline-flex; align-items: center; background: var(--card);
  border: 1px solid var(--border); border-radius: 0.75rem; padding: 0.25rem; gap: 0.25rem;
  margin-bottom: 2.5rem;
}
.view-toggle button {
  padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem;
  font-weight: 600; color: var(--muted-fg); transition: all 0.15s;
}
.view-toggle button.active { background: var(--primary); color: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; max-width: 1280px; margin: 0 auto; }
.pricing-card {
  position: relative; border-radius: var(--radius-2xl); border: 1px solid var(--border);
  background: var(--card); padding: 2rem; display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.pricing-card.popular {
  border-color: var(--primary); background: rgba(249,115,22,0.04);
  box-shadow: 0 0 40px rgba(249,115,22,0.12);
}
.popular-badge {
  position: absolute; top: -0.875rem; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 1rem; border-radius: 9999px; white-space: nowrap;
}
.pricing-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.pricing-card .plan-desc { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1.25rem; }
.price-row { display: flex; align-items: flex-end; gap: 0.25rem; margin-bottom: 1.5rem; }
.price-amount { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.price-period { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 0.25rem; }
.pricing-features { flex: 1; list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; }
.pricing-features li svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; }
.pricing-card .btn { width: 100%; padding: 0.875rem; justify-content: center; }
.pricing-card:not(.popular) .btn { background: var(--muted); color: var(--fg); border: 1px solid var(--border); }
.pricing-card:not(.popular) .btn:hover { background: var(--border); }

/* ── COMPARISON TABLE ── */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-2xl); border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 0.875rem 1.25rem; text-align: center; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.compare-table th { background: var(--muted); font-weight: 700; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: 500; color: var(--fg); }
.compare-table td { color: var(--fg); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(241,245,249,0.5); }
.compare-table .th-icon { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.compare-table .th-icon svg { width: 1rem; height: 1rem; color: var(--primary); }
.compare-check { color: var(--primary); }
.compare-dash { color: var(--muted-fg); }
.compare-ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.compare-ctas a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem; border-radius: var(--radius-xl); font-weight: 700; font-size: 0.9375rem; transition: all 0.2s; }
.compare-ctas a.outline { border: 2px solid var(--primary); color: var(--primary); }
.compare-ctas a.outline:hover { background: var(--primary-light); }
.compare-ctas a.filled { background: var(--primary); color: #fff; }
.compare-ctas a.filled:hover { background: var(--primary-dark); }
.compare-ctas a svg { width: 1rem; height: 1rem; }

/* ── CMS SECTION ── */
.cms-section { padding: 5rem 1.5rem; background: var(--muted); border-top: 1px solid var(--border); }
.cms-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; max-width: 800px; margin: 2rem auto 0; }
.cms-badge {
  display: flex; align-items: center; gap: 0.625rem; padding: 0.75rem 1.5rem;
  border-radius: var(--radius-xl); border: 1px solid var(--border); background: var(--card);
  font-size: 0.9375rem; font-weight: 600; color: var(--fg);
  transition: all 0.2s;
}
.cms-badge:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.cms-badge svg { width: 1.25rem; height: 1.25rem; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 6rem 1.5rem; background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; max-width: 1280px; margin: 0 auto; }
.testimonial-card {
  padding: 1.75rem; border-radius: var(--radius-2xl); border: 1px solid var(--border); background: var(--card);
}
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.stars span { color: #fbbf24; font-size: 1rem; }
.testimonial-card p { font-size: 0.9375rem; color: var(--muted-fg); margin-bottom: 1.25rem; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  color: var(--primary); font-size: 0.875rem; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.875rem; }
.author-role { font-size: 0.8125rem; color: var(--muted-fg); }

/* ── FAQ ── */
.faq-section { padding: 6rem 1.5rem; background: var(--muted); border-top: 1px solid var(--border); }
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; text-align: left; font-size: 1rem; font-weight: 600;
  color: var(--fg); cursor: pointer; gap: 1rem; transition: color 0.15s;
}
.faq-question:hover { color: var(--primary); }
.faq-question svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; transition: transform 0.3s; color: var(--muted-fg); }
.faq-item.open .faq-question { color: var(--primary); }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-answer p { padding: 0 1.5rem 1.25rem; font-size: 0.9375rem; color: var(--muted-fg); line-height: 1.7; }

/* ── PAYMENTS SECTION (home) ── */
.payments-section { padding: 5rem 1.5rem; background: var(--fg); }
.payments-section h2, .payments-section p { color: #fff; }
.payments-section p { color: rgba(255,255,255,0.6); }
.payment-methods { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 3rem; max-width: 900px; margin-left: auto; margin-right: auto; }
.payment-badge {
  display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.75rem;
  border-radius: var(--radius-xl); background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.8);
  font-weight: 600; transition: all 0.2s;
}
.payment-badge:hover { background: rgba(255,255,255,0.12); border-color: var(--primary); color: #fff; }
.payment-badge span { font-size: 1.375rem; }

/* ── BANKS (pagos page) ── */
.banks-section { padding: 2rem 0; }
.banks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.bank-card { padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--card); display: flex; gap: 1rem; align-items: flex-start; transition: all 0.2s; }
.bank-card:hover { border-color: rgba(249,115,22,0.3); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.bank-abbr { width: 3rem; height: 3rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 0.875rem; flex-shrink: 0; }
.bank-info { flex: 1; min-width: 0; }
.bank-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.125rem; }
.bank-info .bank-type { font-size: 0.8125rem; color: var(--muted-fg); margin-bottom: 0.375rem; }
.bank-number { font-family: 'Courier New', monospace; font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; word-break: break-all; }
.bank-owner { font-size: 0.8125rem; color: var(--muted-fg); }
.copy-btn {
  margin-top: 0.75rem; padding: 0.4rem 0.875rem; border-radius: 0.5rem;
  background: var(--primary-light); color: var(--primary); font-size: 0.8125rem;
  font-weight: 600; cursor: pointer; transition: all 0.15s; border: 1px solid var(--primary-border);
}
.copy-btn:hover { background: var(--primary); color: #fff; }
.copy-btn.copied { background: #dcfce7; color: #16a34a; border-color: #86efac; }

/* ── CONTACT FORM ── */
.contact-section { padding: 3.5rem 1.5rem 5rem; }
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 2.5rem; max-width: 1280px; margin: 0 auto; align-items: start; }
.contact-info-card { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem;
  border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--card);
}
.contact-info-item-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.625rem; background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.contact-info-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-fg); margin-bottom: 0.25rem; }
.contact-info-value { font-weight: 700; font-size: 0.9375rem; }
.contact-info-sub { font-size: 0.8125rem; color: var(--muted-fg); }

.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-2xl); padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; }
.form-control {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.875rem 1rem;
  color: var(--fg); font-size: 0.9375rem; outline: none; transition: all 0.2s;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(249,115,22,0.15); }
.form-control::placeholder { color: var(--muted-fg); }
textarea.form-control { resize: vertical; min-height: 8rem; }
select.form-control { cursor: pointer; }
.form-submit { width: 100%; padding: 1rem; justify-content: center; margin-top: 0.5rem; }
.form-success { text-align: center; padding: 2rem; }
.form-success h3 { font-size: 1.25rem; color: #16a34a; margin-bottom: 0.5rem; }
.form-success p { color: var(--muted-fg); font-size: 0.9375rem; }
.alert { padding: 0.875rem 1rem; border-radius: var(--radius); font-size: 0.875rem; margin-bottom: 1rem; }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #16a34a; }

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

/* ── FOOTER ── */
.footer { background: var(--dark-bg); color: rgba(255,255,255,0.7); padding: 4rem 1.5rem 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr repeat(4,1fr); gap: 3rem; max-width: 1280px; margin: 0 auto 3rem; }
.footer-brand .navbar-logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 20rem; }
.footer-col h4 { font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; flex-wrap: gap; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }

/* ── DOMAIN SECTION ── */
.domain-section { padding: 6rem 1.5rem; }
.domain-search-bar { display: flex; gap: 1rem; max-width: 40rem; margin: 0 auto 3rem; }
.domain-search-bar input { flex: 1; padding: 0.875rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 1rem; outline: none; transition: border-color 0.2s; }
.domain-search-bar input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(249,115,22,0.15); }
.domain-tlds { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1rem; max-width: 1280px; margin: 0 auto; }
.tld-card { padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--card); text-align: center; transition: all 0.2s; }
.tld-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
.tld-name { font-size: 1.5rem; font-weight: 900; color: var(--primary); margin-bottom: 0.25rem; }
.tld-price { font-size: 0.875rem; color: var(--muted-fg); }
.tld-register { display: block; margin-top: 0.75rem; font-size: 0.8125rem; font-weight: 600; color: var(--primary); }

/* ── PAGOS PAGE ── */
.pagos-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; max-width: 1280px; margin: 0 auto; align-items: start; }
.instructions-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-2xl); padding: 2rem; position: sticky; top: 6rem; }
.instructions-card h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.instructions-card > p { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1.5rem; }
.steps-list { display: flex; flex-direction: column; gap: 1.25rem; }
.step-item { display: flex; gap: 1rem; }
.step-num { width: 2rem; height: 2rem; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 900; font-size: 0.875rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.125rem; }
.step-item h4 { font-size: 0.875rem; font-weight: 600; color: var(--primary); margin-bottom: 0.25rem; }
.step-item p { font-size: 0.875rem; color: var(--muted-fg); }
.banks-panel { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-2xl); overflow: hidden; }
.banks-panel-header { background: var(--fg); padding: 1.25rem 1.5rem; }
.banks-panel-header h2 { color: #fff; font-size: 1.125rem; font-weight: 700; }
.banks-panel-header p { color: rgba(255,255,255,0.6); font-size: 0.8125rem; }
.banks-panel-note { padding: 0.75rem 1.5rem; background: var(--muted); border-bottom: 1px solid var(--border); font-size: 0.875rem; color: var(--muted-fg); text-align: center; }
.bank-row { display: flex; align-items: center; gap: 1.25rem; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); transition: background 0.15s; }
.bank-row:last-child { border-bottom: none; }
.bank-row:hover { background: var(--muted); }
.bank-row-info { flex: 1; min-width: 0; }
.bank-row-info h3 { font-weight: 700; font-size: 0.9375rem; margin-bottom: 0.125rem; }
.bank-row-info .type { font-size: 0.8125rem; color: var(--muted-fg); margin-bottom: 0.25rem; }
.bank-row-info .number { font-family: monospace; font-size: 0.875rem; font-weight: 700; }
.bank-row-info .owner { font-size: 0.8125rem; color: var(--muted-fg); }
.intl-panel { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-2xl); overflow: hidden; margin-top: 1.5rem; }
.intl-panel-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.intl-panel-header h2 { font-size: 1.125rem; font-weight: 700; }
.intl-panel-header p { font-size: 0.8125rem; color: var(--muted-fg); }
.intl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.25rem 1.5rem; }
.intl-item { display: flex; align-items: center; gap: 0.875rem; padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius-xl); transition: all 0.2s; }
.intl-item:hover { border-color: rgba(249,115,22,0.3); }
.intl-item .emoji { font-size: 1.75rem; }
.intl-item h4 { font-weight: 700; font-size: 0.875rem; }
.intl-item p { font-size: 0.8125rem; color: var(--muted-fg); }
.register-btn { width: 100%; margin-top: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem; border-radius: var(--radius); background: var(--primary); color: #fff; font-weight: 700; font-size: 0.9375rem; transition: background 0.15s; }
.register-btn:hover { background: var(--primary-dark); color: #fff; }
@media (max-width: 768px) { .pagos-grid { grid-template-columns: 1fr; } .instructions-card { position: static; } .intl-grid { grid-template-columns: 1fr; } }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-up { animation: fadeUp 0.5s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.appear { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.appear.visible { opacity: 1; transform: translateY(0); }

/* ── LIVE CHAT BUTTON ── */
.livechat {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  width: 3.25rem; height: 3.25rem; border-radius: 50%;
  background: var(--primary); box-shadow: 0 4px 20px rgba(249,115,22,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.livechat:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(249,115,22,0.5); }
.livechat svg { width: 1.5rem; height: 1.5rem; color: #fff; }
.livechat-dot { position: absolute; top: 0.25rem; right: 0.25rem; width: 0.625rem; height: 0.625rem; background: #22c55e; border-radius: 50%; border: 2px solid #fff; }

/* ── WP FEATURES ── */
.wp-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.25rem; margin-bottom: 4rem; }
.wp-feature-card { padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--card); }
.wp-feature-card .icon-box { width: 2.5rem; height: 2.5rem; border-radius: 0.625rem; background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin-bottom: 0.875rem; }
.wp-feature-card .icon-box svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.wp-feature-card h3 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.375rem; }
.wp-feature-card p { font-size: 0.8125rem; color: var(--muted-fg); line-height: 1.6; }

/* ── DA FEATURE CARDS ── */
.da-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.25rem; margin-top: 3rem; }
.da-feature-card { display: flex; gap: 1rem; padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--card); }
.da-feature-card .icon-box { width: 2.5rem; height: 2.5rem; border-radius: 0.625rem; background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.da-feature-card .icon-box svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.da-feature-card h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.da-feature-card p { font-size: 0.8125rem; color: var(--muted-fg); line-height: 1.6; }

/* ── HOSTING COMPARISON ── */
.hosting-compare-section { padding: 5rem 1.5rem; }
.hosting-compare-section .section-header { margin-bottom: 2.5rem; }

/* ── FAQ ── */
.faq-section { padding: 4rem 1.5rem 5rem; }
.faq-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 240px 1fr; gap: 3rem; align-items: start; }

/* Sidebar */
.faq-sidebar { position: sticky; top: 5rem; background: var(--muted); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; }
.faq-sidebar-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-fg); margin-bottom: 0.75rem; }
.faq-sidebar-link { display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.75rem; border-radius: var(--radius); font-size: 0.85rem; font-weight: 500; color: var(--muted-fg); text-decoration: none; transition: background 0.15s, color 0.15s; margin-bottom: 0.15rem; }
.faq-sidebar-link svg { width: 15px; height: 15px; flex-shrink: 0; }
.faq-sidebar-link:hover, .faq-sidebar-link.active { background: var(--primary-light); color: var(--primary); }
.faq-sidebar-icon { display: flex; }
.faq-sidebar-cta { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.faq-sidebar-cta p { font-size: 0.8rem; color: var(--muted-fg); margin-bottom: 0.75rem; line-height: 1.4; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }

/* Groups */
.faq-group { margin-bottom: 2.5rem; }
.faq-group-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--border); }
.faq-group-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 0.6rem; background: var(--primary-light); color: var(--primary); flex-shrink: 0; }
.faq-group-icon svg { width: 18px; height: 18px; }
.faq-group h2 { font-size: 1.1rem; font-weight: 700; }

/* Items */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.5rem; overflow: hidden; transition: border-color 0.15s, box-shadow 0.15s; }
.faq-item.open { border-color: var(--primary-border); box-shadow: 0 0 0 3px rgba(249,115,22,0.06); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 0.95rem; font-weight: 600; color: var(--fg); text-align: left; transition: background 0.15s; }
.faq-question:hover { background: var(--muted); }
.faq-item.open .faq-question { background: var(--primary-light); color: var(--primary); }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.25s; color: var(--muted-fg); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 1.25rem 1.25rem; font-size: 0.9rem; color: var(--muted-fg); line-height: 1.75; }
.faq-answer a { color: var(--primary); font-weight: 500; }

/* Contact banner */
.faq-contact-banner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; background: linear-gradient(135deg, var(--dark-bg), var(--dark-mid)); border-radius: var(--radius-xl); padding: 1.75rem 2rem; color: #fff; flex-wrap: wrap; }
.faq-contact-left { display: flex; align-items: center; gap: 1rem; }
.faq-contact-left svg { width: 36px; height: 36px; color: var(--primary); flex-shrink: 0; }
.faq-contact-left strong { display: block; font-size: 1rem; font-weight: 700; }
.faq-contact-left span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.faq-contact-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

@media (max-width: 800px) {
  .faq-container { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
  .faq-sidebar-title { width: 100%; }
  .faq-sidebar-cta { width: 100%; margin-top: 0.75rem; padding-top: 0.75rem; display: flex; align-items: center; gap: 1rem; }
  .faq-sidebar-cta p { margin-bottom: 0; }
  .faq-contact-banner { flex-direction: column; align-items: flex-start; }
}

/* ── BLOG ── */
.blog-section { padding: 4rem 1.5rem 5rem; }
.blog-container { max-width: 1100px; margin: 0 auto; }

.blog-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: var(--radius-2xl); overflow: hidden; margin-bottom: 2.5rem;
  text-decoration: none !important; color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.blog-featured:hover { border-color: var(--primary); box-shadow: 0 16px 40px rgba(249,115,22,0.1); }
.blog-featured-img {
  min-height: 22rem; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(249,115,22,0.06), rgba(249,115,22,0.02));
  border-right: 1px solid var(--border);
}
.blog-img-placeholder { display: flex; align-items: center; justify-content: center; }
.blog-featured-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.blog-featured-body h2 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); font-weight: 800; color: var(--fg); margin: 0; line-height: 1.3; }
.blog-featured-body p { font-size: 0.9375rem; color: var(--muted-fg); margin: 0; line-height: 1.7; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.blog-card {
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  text-decoration: none !important; color: inherit;
  transition: border-color 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.blog-card-img {
  height: 9rem; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(249,115,22,0.05), rgba(249,115,22,0.01));
  border-bottom: 1px solid var(--border);
}
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.blog-card-body h3 { font-size: 0.9375rem; font-weight: 700; color: var(--fg); margin: 0; line-height: 1.4; }
.blog-card-body p { font-size: 0.8125rem; color: var(--muted-fg); margin: 0; line-height: 1.6; flex: 1; }

.blog-meta-row { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.blog-meta-item { font-size: 0.75rem; color: var(--muted-fg); }
.blog-cat {
  display: inline-block; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.175rem 0.5rem; border-radius: 2rem;
}
.cat-guide    { background: rgba(249,115,22,0.12); color: var(--primary); }
.cat-compare  { background: rgba(139,92,246,0.12); color: #7c3aed; }
.cat-wp       { background: rgba(59,130,246,0.12);  color: #2563eb; }
.cat-sec      { background: rgba(34,197,94,0.12);   color: #16a34a; }
.cat-tech     { background: rgba(14,165,233,0.12);  color: #0369a1; }
.cat-security { background: rgba(239,68,68,0.12);   color: #dc2626; }

.blog-read-more {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.8125rem; font-weight: 700; color: var(--primary);
  margin-top: auto;
}

/* Blog newsletter */
.blog-newsletter-section { padding: 0 1.5rem 5rem; }
.blog-newsletter-box {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.5rem 2rem;
  max-width: 1100px; margin: 0 auto; flex-wrap: wrap;
}
.blog-newsletter-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; flex-shrink: 0;
  background: rgba(249,115,22,0.1); display: flex; align-items: center; justify-content: center;
}
.blog-newsletter-icon svg { color: var(--primary); }
.blog-newsletter-text { flex: 1; min-width: 12rem; }
.blog-newsletter-text strong { color: var(--fg); font-size: 0.9375rem; display: block; margin-bottom: 0.2rem; }
.blog-newsletter-text p { font-size: 0.8125rem; color: var(--muted-fg); margin: 0; }
.blog-newsletter-form { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.blog-newsletter-form input {
  padding: 0.625rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--dark-bg); color: var(--fg); font-size: 0.875rem; min-width: 13rem;
}
.blog-newsletter-form input:focus { outline: none; border-color: var(--primary); }

/* Blog article */
.blog-article-section { padding: 3rem 1.5rem 5rem; }
.blog-article-container {
  display: grid; grid-template-columns: 1fr 20rem; gap: 3rem;
  max-width: 1100px; margin: 0 auto; align-items: start;
}
.blog-article-main { min-width: 0; }
.blog-article-meta { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.blog-article-intro {
  font-size: 1.0625rem; color: var(--muted-fg); line-height: 1.8;
  border-left: 3px solid var(--primary); padding-left: 1.25rem;
  margin-bottom: 2rem; font-style: italic;
}
.blog-article-main h2 {
  font-size: 1.375rem; font-weight: 800; color: var(--fg);
  margin: 2rem 0 0.75rem; line-height: 1.3;
}
.blog-article-main h3 {
  font-size: 1.0625rem; font-weight: 700; color: var(--fg);
  margin: 1.5rem 0 0.5rem;
}
.blog-article-main p { font-size: 0.9375rem; color: var(--muted-fg); line-height: 1.8; margin-bottom: 1rem; }
.blog-article-main a { color: var(--primary); }

.blog-comparison-table { overflow-x: auto; margin: 1.25rem 0 1.75rem; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.blog-comparison-table table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.blog-comparison-table th {
  background: rgba(255,255,255,0.04); color: var(--fg);
  padding: 0.75rem 1rem; text-align: left; font-weight: 700;
  border-bottom: 1px solid var(--border);
}
.blog-comparison-table td { padding: 0.65rem 1rem; color: var(--muted-fg); border-bottom: 1px solid rgba(255,255,255,0.04); }
.blog-comparison-table tr:last-child td { border-bottom: none; }
.blog-comparison-table tr:hover td { background: rgba(255,255,255,0.02); }

.blog-check-list { list-style: none; padding: 0; margin: 0.75rem 0 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.blog-check-list li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.9rem; color: var(--muted-fg); line-height: 1.6;
}
.blog-check-list li::before {
  content: '✔'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 0.1rem;
}

.blog-use-cases { display: flex; flex-direction: column; gap: 0.625rem; margin: 1rem 0 1.5rem; }
.blog-use-case {
  display: flex; flex-direction: column; gap: 0.125rem;
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 0.875rem 1.125rem;
}
.blog-use-case strong { font-size: 0.9rem; color: var(--fg); }
.blog-use-case span { font-size: 0.8125rem; color: var(--muted-fg); }

.blog-steps { display: flex; flex-direction: column; gap: 1rem; margin: 1.25rem 0 1.75rem; }
.blog-step { display: flex; gap: 1rem; align-items: flex-start; }
.blog-step-num {
  width: 2rem; height: 2rem; border-radius: 50%; flex-shrink: 0;
  background: var(--primary); color: #fff; font-weight: 800; font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center;
}
.blog-step div { display: flex; flex-direction: column; gap: 0.125rem; padding-top: 0.25rem; }
.blog-step strong { font-size: 0.9rem; color: var(--fg); }
.blog-step span { font-size: 0.8125rem; color: var(--muted-fg); }

.blog-article-cta {
  background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(249,115,22,0.03));
  border: 1px solid rgba(249,115,22,0.2); border-radius: var(--radius-xl);
  padding: 2rem; margin-top: 2.5rem;
}
.blog-article-cta strong { font-size: 1.125rem; color: var(--fg); display: block; margin-bottom: 0.375rem; }
.blog-article-cta p { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1.25rem; }

/* Blog sidebar */
.blog-article-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 5rem; }
/* Blog article extras: tips, code, CTA box */
.blog-tip {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: rgba(59,130,246,0.06); border: 1.5px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-lg); padding: 1rem 1.25rem;
  margin: 1.25rem 0 1.75rem; font-size: 0.875rem; line-height: 1.65;
}
.blog-tip svg { flex-shrink: 0; color: #2563eb; margin-top: 0.1rem; }
.blog-tip p   { margin: 0; color: var(--fg); }
.blog-tip--success { background: rgba(34,197,94,0.06); border-color: rgba(34,197,94,0.2); }
.blog-tip--success svg { color: #16a34a; }
.blog-tip--warning { background: rgba(245,158,11,0.06); border-color: rgba(245,158,11,0.2); }
.blog-tip--warning svg { color: #d97706; }

.blog-code {
  background: var(--muted); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1rem 1.25rem;
  font-family: 'Courier New', monospace; font-size: 0.8125rem;
  color: var(--primary); overflow-x: auto;
  margin: 1rem 0 1.5rem; display: block; line-height: 1.6;
}
.blog-cta-box {
  background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(249,115,22,0.04));
  border: 1.5px solid rgba(249,115,22,0.25); border-radius: var(--radius-xl);
  padding: 2rem; margin: 2rem 0; text-align: center;
}
.blog-cta-box h3 { font-size: 1.125rem; font-weight: 800; margin-bottom: 0.5rem; }
.blog-cta-box p  { font-size: 0.9rem; color: var(--muted-fg); margin-bottom: 1.25rem; line-height: 1.65; }

/* Sidebar widget alias (new articles use blog-sidebar-widget) */
.blog-sidebar-widget { border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 1.25rem; background: var(--card); }
.blog-sidebar-widget h4 { font-size: 0.875rem; font-weight: 700; color: var(--fg); margin: 0 0 0.875rem; }
.blog-sidebar-widget.blog-sidebar-cta { border-color: rgba(249,115,22,0.25); background: rgba(249,115,22,0.04); }
.blog-sidebar-widget.blog-sidebar-cta p { font-size: 0.8125rem; color: var(--muted-fg); margin-bottom: 1rem; }
.btn-block { width: 100%; text-align: center; justify-content: center; }

.blog-sidebar-box {
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.25rem;
}
.blog-sidebar-box h4 { font-size: 0.875rem; font-weight: 700; color: var(--fg); margin: 0 0 0.875rem; }
.blog-sidebar-box.blog-sidebar-cta { border-color: rgba(249,115,22,0.25); background: rgba(249,115,22,0.04); }
.blog-sidebar-cta strong { font-size: 0.9rem; color: var(--fg); display: block; margin-bottom: 0.375rem; }
.blog-sidebar-cta p { font-size: 0.8125rem; color: var(--muted-fg); margin-bottom: 1rem; }
.blog-toc { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.375rem; }
.blog-toc a { font-size: 0.8125rem; color: var(--muted-fg); text-decoration: none; padding: 0.25rem 0; border-left: 2px solid var(--border); padding-left: 0.625rem; display: block; transition: color 0.15s, border-color 0.15s; }
.blog-toc a:hover { color: var(--primary); border-color: var(--primary); }
.blog-related { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.blog-related a { font-size: 0.8125rem; color: var(--muted-fg); text-decoration: none; line-height: 1.4; transition: color 0.15s; }
.blog-related a:hover { color: var(--primary); }

@media (max-width: 900px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 12rem; border-right: none; border-bottom: 1px solid var(--border); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article-container { grid-template-columns: 1fr; }
  .blog-article-sidebar { position: static; }
}

/* ── NOSOTROS ── */
.nosotros-stats-strip { padding: 3rem 1.5rem; border-bottom: 1px solid var(--border); }
.nosotros-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; max-width: 900px; margin: 0 auto; text-align: center;
}
.nosotros-stat { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.nstat-number {
  font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 900;
  color: var(--fg); line-height: 1;
}
.nstat-plus, .nstat-pct { color: var(--primary); font-size: 0.65em; vertical-align: super; }
.nstat-label { font-size: 0.8125rem; color: var(--muted-fg); font-weight: 500; }

.nosotros-section { padding: 5rem 1.5rem; }
.nosotros-story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; max-width: 1100px; margin: 0 auto;
}
.nosotros-story-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--fg); margin: 0.5rem 0 1.25rem; line-height: 1.25; }
.nosotros-story-text p { font-size: 0.9375rem; color: var(--muted-fg); line-height: 1.75; margin-bottom: 1rem; }

.story-visual-card {
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
}
.story-vc-header {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.75rem 1.125rem; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.story-vc-dots { display: flex; gap: 0.375rem; }
.story-vc-dots span { width: 0.625rem; height: 0.625rem; border-radius: 50%; background: var(--border); }
.story-vc-dots span:first-child { background: #f87171; }
.story-vc-dots span:nth-child(2) { background: #fbbf24; }
.story-vc-dots span:last-child { background: #34d399; }
.story-vc-title { font-size: 0.75rem; color: var(--muted-fg); font-weight: 500; }
.story-vc-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.story-metric { display: flex; flex-direction: column; gap: 0.375rem; }
.story-metric > div:first-child { display: flex; justify-content: space-between; align-items: center; }
.story-metric { font-size: 0.8125rem; }
.story-metric span { color: var(--muted-fg); font-size: 0.75rem; }
.story-metric strong { color: var(--fg); font-size: 0.8125rem; font-weight: 700; }
.story-metric-bar {
  height: 0.375rem; background: var(--border); border-radius: 9999px; overflow: hidden; position: relative;
}
.story-metric-bar::after {
  content: ''; position: absolute; inset: 0; right: calc(100% - var(--w));
  background: linear-gradient(90deg, var(--primary), #f97316); border-radius: 9999px;
}
.story-metric { display: grid; grid-template-columns: 1fr auto; align-items: center; row-gap: 0.3rem; column-gap: 0.5rem; }
.story-metric-bar { grid-column: 1 / -1; }
.story-servers { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--muted-fg); }
.story-server-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; flex-shrink: 0; }
.story-server-dot.online { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.5); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{ opacity:1 } 50%{ opacity:0.5 } }

.nosotros-values-section { padding: 5rem 1.5rem; background: rgba(255,255,255,0.01); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.nosotros-values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1.25rem; max-width: 1100px; margin: 0 auto;
}
.nosotros-value-card {
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.nosotros-value-card:hover { border-color: rgba(var(--c),0.5); transform: translateY(-2px); }
.nval-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 0.75rem;
  background: rgba(var(--c),0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.nval-icon svg { width: 1.25rem; height: 1.25rem; color: rgb(var(--c)); }
.nosotros-value-card h3 { font-size: 1rem; font-weight: 700; color: var(--fg); margin: 0 0 0.5rem; }
.nosotros-value-card p { font-size: 0.875rem; color: var(--muted-fg); margin: 0; line-height: 1.65; }

.nosotros-why-section { padding: 5rem 1.5rem; }
.nosotros-why-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  max-width: 1100px; margin: 0 auto; align-items: start;
}
.nosotros-why-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--fg); margin: 0.5rem 0 1.5rem; }
.nosotros-why-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.nosotros-why-list li { display: flex; gap: 0.875rem; align-items: flex-start; }
.nosotros-why-list li svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; margin-top: 0.2rem; }
.nosotros-why-list li div { display: flex; flex-direction: column; gap: 0.125rem; }
.nosotros-why-list li strong { font-size: 0.9375rem; color: var(--fg); }
.nosotros-why-list li span { font-size: 0.8125rem; color: var(--muted-fg); line-height: 1.5; }

.nosotros-why-visual { display: flex; flex-direction: column; gap: 1rem; }
.nwhy-testimonial {
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.375rem 1.5rem;
}
.nwhy-stars { color: #fbbf24; font-size: 0.875rem; letter-spacing: 0.05em; margin-bottom: 0.625rem; }
.nwhy-testimonial p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.65; margin: 0 0 1rem; font-style: italic; }
.nwhy-author { display: flex; align-items: center; gap: 0.75rem; }
.nwhy-avatar {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #f97316);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6875rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.nwhy-author strong { font-size: 0.875rem; color: var(--fg); display: block; }
.nwhy-author span { font-size: 0.75rem; color: var(--muted-fg); }

.nosotros-cta-section { padding: 5rem 1.5rem; }
.nosotros-cta-box {
  background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(249,115,22,0.03));
  border: 1px solid rgba(249,115,22,0.2); border-radius: var(--radius-2xl);
  padding: 3.5rem 2rem; text-align: center; max-width: 700px; margin: 0 auto;
}
.nosotros-cta-box h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 900; color: var(--fg); margin: 0 0 0.75rem; }
.nosotros-cta-box p { font-size: 1rem; color: var(--muted-fg); margin: 0 0 2rem; }
.nosotros-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .nosotros-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nosotros-story-grid, .nosotros-why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── MISC ── */
/* ── DROPDOWN EXTRAS ── */
.dropdown-divider { height: 1px; background: var(--border); margin: 0.25rem 0; }
.dropdown-menu-all { background: rgba(249,115,22,0.04) !important; font-weight: 600 !important; }
.dropdown-menu-all svg { color: var(--primary) !important; }

/* ── HOSTING HUB ── */
.hosting-hub-section { padding: 4rem 1.5rem 5rem; }
.hosting-hub-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  max-width: 1280px; margin: 0 auto;
}
.hosting-hub-card {
  display: flex; flex-direction: column;
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: var(--radius-2xl); overflow: hidden;
  text-decoration: none !important; color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.hosting-hub-card:hover {
  transform: translateY(-4px); border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(249,115,22,0.12);
}
.hub-card-icon {
  padding: 1.75rem 1.75rem 0;
}
.hub-card-icon svg {
  width: 2.5rem; height: 2.5rem; color: var(--primary);
  background: rgba(249,115,22,0.1); border-radius: 0.75rem;
  padding: 0.5rem; box-sizing: content-box;
}
.hub-card-body { padding: 1.25rem 1.75rem; flex: 1; }
.hub-card-badge {
  display: inline-block; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.2rem 0.625rem; border-radius: 2rem; margin-bottom: 0.75rem;
  background: rgba(249,115,22,0.15); color: var(--primary);
}
.hub-badge-green  { background: rgba(34,197,94,0.12);  color: #16a34a; }
.hub-badge-blue   { background: rgba(59,130,246,0.12); color: #2563eb; }
.hub-badge-purple { background: rgba(139,92,246,0.12); color: #7c3aed; }
.hub-badge-orange { background: rgba(249,115,22,0.15); color: var(--primary); }
.hub-card-body h2 {
  font-size: 1.25rem; font-weight: 700; color: var(--fg);
  margin: 0 0 0.625rem; line-height: 1.3;
}
.hub-card-body p { font-size: 0.875rem; color: var(--muted-fg); margin: 0 0 1rem; line-height: 1.65; }
.hub-feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.hub-feature-list li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; color: var(--muted-fg);
}
.hub-feature-list li svg { width: 0.875rem; height: 0.875rem; color: var(--primary); flex-shrink: 0; }
.hub-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.125rem 1.75rem; border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.hub-price { display: flex; align-items: baseline; gap: 0.25rem; }
.hub-price-from { font-size: 0.75rem; color: var(--muted-fg); }
.hub-price-amount { font-size: 1.375rem; font-weight: 800; color: var(--fg); }
.hub-price-period { font-size: 0.75rem; color: var(--muted-fg); }
.hub-cta-btn {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 700; color: var(--primary);
  transition: gap 0.15s;
}
.hosting-hub-card:hover .hub-cta-btn { gap: 0.625rem; }

.hub-chooser {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.5rem 2rem;
  max-width: 1280px; margin: 2rem auto 0; flex-wrap: wrap;
}
.hub-chooser-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; flex-shrink: 0;
  background: rgba(249,115,22,0.1); display: flex; align-items: center; justify-content: center;
}
.hub-chooser-icon svg { color: var(--primary); }
.hub-chooser > div { flex: 1; min-width: 14rem; }
.hub-chooser strong { color: var(--fg); font-size: 1rem; display: block; margin-bottom: 0.375rem; }
.hub-chooser p { font-size: 0.875rem; color: var(--muted-fg); margin: 0; line-height: 1.6; }
.hub-chooser p a { color: var(--primary); font-weight: 600; }
@media (max-width: 768px) {
  .hosting-hub-grid { grid-template-columns: 1fr; }
  .hub-chooser { flex-direction: column; }
  .hub-chooser .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ── STICKY CTA BAR ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  background: linear-gradient(90deg, #1a0a00 0%, var(--dark-mid) 100%);
  border-top: 1px solid rgba(249,115,22,0.25);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(100%); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  padding: 0.875rem 1.5rem;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.sticky-cta-text { display: flex; flex-direction: column; }
.sticky-cta-text strong { color: #fff; font-size: 1rem; line-height: 1.3; }
.sticky-cta-text span { color: rgba(255,255,255,0.55); font-size: 0.8125rem; margin-top: 0.125rem; }
.sticky-cta-btn {
  display: flex; align-items: center; gap: 0.5rem; white-space: nowrap;
  padding: 0.6875rem 1.5rem; background: var(--primary);
  color: #fff; font-weight: 700; font-size: 0.9375rem;
  border-radius: var(--radius); text-decoration: none !important;
  transition: background 0.15s, transform 0.15s; flex-shrink: 0;
}
.sticky-cta-btn:hover { background: var(--primary-dark); transform: translateX(2px); }
@media (max-width: 600px) {
  .sticky-cta-text span { display: none; }
  .sticky-cta-text strong { font-size: 0.875rem; }
  .sticky-cta-btn { padding: 0.625rem 1.125rem; font-size: 0.875rem; }
}

/* ── CHAT WIDGET ── */
.chat-toggle {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 1001;
  width: 3.25rem; height: 3.25rem; border-radius: 50%;
  background: var(--primary); box-shadow: 0 4px 20px rgba(249,115,22,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.chat-toggle:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(249,115,22,0.55); }
.chat-toggle svg { width: 1.5rem; height: 1.5rem; color: #fff; }
.chat-online-dot {
  position: absolute; top: 0.25rem; right: 0.25rem; width: 0.625rem; height: 0.625rem;
  background: #22c55e; border-radius: 50%; border: 2px solid #fff;
}

.chat-panel {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 1000;
  width: 21rem; max-height: 80vh; border-radius: 1.25rem;
  background: #fff; box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 1px solid var(--border); display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transform: translateY(12px) scale(0.97);
  transition: opacity 0.2s, transform 0.2s; transform-origin: bottom right;
  overflow: hidden;
}
.chat-panel.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }

.chat-panel-header {
  display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-mid) 100%);
}
.chat-panel-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(249,115,22,0.2); border: 2px solid rgba(249,115,22,0.4);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chat-panel-avatar svg { width: 1.125rem; height: 1.125rem; color: var(--primary); }
.chat-panel-title { font-weight: 700; color: #fff; font-size: 0.9375rem; }
.chat-panel-status { font-size: 0.75rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 0.375rem; }
.chat-dot { width: 0.5rem; height: 0.5rem; background: #22c55e; border-radius: 50%; display: inline-block; }
.chat-close-btn {
  margin-left: auto; background: rgba(255,255,255,0.1); border: none; cursor: pointer;
  color: rgba(255,255,255,0.7); width: 2rem; height: 2rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background 0.15s;
}
.chat-close-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }

.chat-body { padding: 1rem 1.25rem 0.5rem; }
.chat-bubble-agent {
  background: var(--muted); border-radius: 0.875rem 0.875rem 0.875rem 0.125rem;
  padding: 0.75rem 1rem; font-size: 0.875rem; color: var(--fg); line-height: 1.6;
  max-width: 90%; margin-bottom: 0.5rem;
}
.chat-bubble-agent p { margin: 0; }

.chat-form-wrap { padding: 0.75rem 1.25rem 1.25rem; overflow-y: auto; }
.chat-alert {
  padding: 0.5rem 0.75rem; border-radius: 0.5rem; font-size: 0.8125rem;
  background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; margin-bottom: 0.75rem;
}
.chat-field { margin-bottom: 0.75rem; }
.chat-field label { display: block; font-size: 0.75rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--fg); }
.chat-field input, .chat-field textarea {
  width: 100%; padding: 0.5625rem 0.75rem; border: 1.5px solid var(--border);
  border-radius: 0.5rem; font-size: 0.875rem; font-family: inherit;
  color: var(--fg); outline: none; transition: border-color 0.15s; background: var(--bg);
}
.chat-field input:focus, .chat-field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(249,115,22,0.12); }
.chat-field textarea { resize: none; }
.chat-submit {
  width: 100%; padding: 0.6875rem; border-radius: 0.625rem;
  background: var(--primary); color: #fff; font-weight: 700;
  font-size: 0.875rem; cursor: pointer; border: none; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: background 0.15s; margin-top: 0.25rem;
}
.chat-submit:hover { background: var(--primary-dark); }
.chat-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.chat-success {
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem 1.5rem; gap: 0.5rem;
}
.chat-success p { margin: 0; font-size: 0.9375rem; color: var(--muted-fg); }
.chat-success p strong { color: var(--fg); }

@media (max-width: 480px) {
  .chat-panel { right: 0.75rem; width: calc(100vw - 1.5rem); bottom: 5rem; }
  .chat-toggle { right: 0.75rem; bottom: 0.75rem; }
}

.mt-10 { margin-top: 2.5rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.text-sm { font-size: 0.875rem; }

/* ══════════════════════════════════════════
   SERVICE FEATURE GRID (email individual pages)
══════════════════════════════════════════ */
.srv-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.srv-feat-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.srv-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  border-color: var(--primary-border);
}
.srv-feat-icon {
  width: 48px; height: 48px;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--ic, var(--primary)) 12%, transparent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.srv-feat-icon svg { width: 22px; height: 22px; color: var(--ic, var(--primary)); }
.srv-feat-card h3 { font-size: 1rem; font-weight: 700; margin: 0; }
.srv-feat-card p  { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.65; margin: 0; }

/* Steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.step-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.875rem;
  position: relative;
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-card h4 { font-size: 0.9375rem; font-weight: 700; margin: 0; }
.step-card p  { font-size: 0.8375rem; color: var(--muted-fg); line-height: 1.6; margin: 0; }

/* btn-block */
.btn-block { display: flex; justify-content: center; width: 100%; }

/* pricing feature muted */
.pricing-feature-muted {
  opacity: 0.45;
}
.pricing-feature-muted svg { color: var(--muted-fg) !important; }

@media (max-width: 1024px) {
  .srv-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .srv-feat-grid { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   CALCULADORA PAGE
══════════════════════════════════════════ */
.calc-section { padding: 4rem 1.5rem 6rem; }
.calc-shell {
  max-width: 700px; margin: 0 auto;
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius-2xl); padding: 2.5rem;
}
.calc-progress {
  height: 4px; background: var(--border); border-radius: 99px;
  margin-bottom: 0.625rem; overflow: hidden;
}
.calc-progress-bar {
  height: 100%; background: var(--primary); border-radius: 99px;
  transition: width 0.35s ease;
}
.calc-step-label { font-size: 0.75rem; font-weight: 600; color: var(--muted-fg); margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 0.06em; }
.calc-step { display: none; }
.calc-step.active { display: block; }
.calc-q { font-size: 1.25rem; font-weight: 800; margin-bottom: 1.5rem; line-height: 1.3; }

/* Grid options (step 1) */
.calc-options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.calc-option {
  display: flex; align-items: flex-start; gap: 0.875rem;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.125rem;
  cursor: pointer; transition: all 0.15s; position: relative;
}
.calc-option:hover { border-color: var(--primary-border); background: var(--primary-light); }
.calc-option.selected { border-color: var(--primary); background: var(--primary-light); }
.calc-opt-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--muted); display: flex; align-items: center; justify-content: center;
}
.calc-option.selected .calc-opt-icon { background: rgba(249,115,22,0.15); }
.calc-opt-icon svg { width: 18px; height: 18px; color: var(--muted-fg); }
.calc-option.selected .calc-opt-icon svg { color: var(--primary); }
.calc-opt-body { flex: 1; }
.calc-opt-body strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--fg); margin-bottom: 0.25rem; }
.calc-opt-body span  { font-size: 0.75rem; color: var(--muted-fg); line-height: 1.5; }
.calc-opt-check {
  width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--border);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  background: var(--card); transition: all 0.15s;
}
.calc-opt-check svg { width: 10px; height: 10px; color: transparent; }
.calc-option.selected .calc-opt-check { background: var(--primary); border-color: var(--primary); }
.calc-option.selected .calc-opt-check svg { color: #fff; }

/* List options (steps 2-4) */
.calc-options-list { display: flex; flex-direction: column; gap: 0.75rem; }
.calc-option-row {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 1rem 1.25rem;
  cursor: pointer; transition: all 0.15s;
}
.calc-option-row:hover { border-color: var(--primary-border); background: var(--primary-light); }
.calc-option-row.selected { border-color: var(--primary); background: var(--primary-light); }
.calc-or-radio {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border);
  flex-shrink: 0; transition: all 0.15s; position: relative;
}
.calc-option-row.selected .calc-or-radio { border-color: var(--primary); border-width: 6px; }
.calc-or-body { flex: 1; }
.calc-or-body strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--fg); margin-bottom: 0.2rem; }
.calc-or-body span  { font-size: 0.75rem; color: var(--muted-fg); line-height: 1.5; }

/* Nav */
.calc-nav { display: flex; justify-content: space-between; margin-top: 2rem; gap: 0.75rem; }
.calc-nav .btn { flex: 1; justify-content: center; }

/* Result */
#calc-result {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem;
}
.calc-result-header {
  display: flex; align-items: center; gap: 1rem; width: 100%; text-align: left;
}
.calc-result-icon {
  width: 52px; height: 52px; border-radius: 50%; background: rgba(34,197,94,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.calc-result-icon svg { width: 24px; height: 24px; color: #16a34a; }
.calc-result-header h2 { font-size: 1.25rem; font-weight: 800; margin: 0 0 0.25rem; }
.calc-result-header p  { font-size: 0.875rem; color: var(--muted-fg); margin: 0; }
.calc-result-card {
  width: 100%; background: linear-gradient(135deg, rgba(249,115,22,0.06), rgba(249,115,22,0.02));
  border: 1.5px solid rgba(249,115,22,0.25); border-radius: var(--radius-xl);
  padding: 1.75rem; text-align: center;
}
.crp-badge {
  display: inline-block; background: var(--primary); color: #fff;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; padding: 0.25rem 0.75rem; border-radius: 99px; margin-bottom: 0.75rem;
}
.calc-result-card h3 { font-size: 1.375rem; font-weight: 800; margin-bottom: 0.5rem; }
.calc-result-card p  { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1rem; }
.crp-price { display: flex; align-items: baseline; gap: 0.25rem; justify-content: center; margin-bottom: 0; }
.crp-from   { font-size: 0.75rem; color: var(--muted-fg); }
.crp-price strong { font-size: 2rem; font-weight: 900; color: var(--primary); }
.crp-price span   { font-size: 0.875rem; color: var(--muted-fg); }
.calc-result-features {
  list-style: none; padding: 0; margin: 1.25rem 0 0;
  display: flex; flex-direction: column; gap: 0.5rem; text-align: left;
}
.calc-result-features li {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.875rem; color: var(--fg);
}
.calc-result-features li svg { color: var(--primary); flex-shrink: 0; }
.calc-result-note { font-size: 0.8125rem; color: var(--muted-fg); max-width: 500px; line-height: 1.65; }
.calc-result-actions { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; }
.calc-restart {
  background: none; border: none; color: var(--muted-fg); cursor: pointer;
  font-size: 0.8125rem; display: flex; align-items: center; gap: 0.4rem;
  font-family: inherit; padding: 0; transition: color 0.15s;
}
.calc-restart:hover { color: var(--primary); }

@media (max-width: 600px) {
  .calc-shell { padding: 1.5rem; }
  .calc-options-grid { grid-template-columns: 1fr; }
  .calc-result-header { flex-direction: column; text-align: center; }
  .calc-result-actions { flex-direction: column; }
  .calc-result-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ══════════════════════════════════════════
   TESTIMONIOS PAGE
══════════════════════════════════════════ */
.testi-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; margin-bottom: 0.5rem;
}
.testi-filter {
  padding: 0.45rem 1.125rem; border-radius: 99px;
  border: 1.5px solid var(--border); background: var(--card);
  font-size: 0.8125rem; font-weight: 600; color: var(--muted-fg);
  cursor: pointer; transition: all 0.15s; font-family: inherit;
}
.testi-filter:hover { border-color: var(--primary-border); color: var(--primary); background: var(--primary-light); }
.testi-filter.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1280px; margin: 0 auto;
}
.testi-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-border);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.testi-header { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.testi-stars  { color: #f59e0b; font-size: 0.875rem; letter-spacing: 0.05em; }
.testi-service {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--primary);
  background: var(--primary-light); padding: 0.2rem 0.6rem;
  border-radius: 99px; white-space: nowrap;
}
.testi-card blockquote {
  font-size: 0.9rem; color: var(--fg); line-height: 1.7;
  margin: 0; flex: 1; font-style: italic;
  position: relative; padding-left: 1rem;
}
.testi-card blockquote::before {
  content: '"'; position: absolute; left: -0.125rem; top: -0.25rem;
  font-size: 2.5rem; color: var(--primary); opacity: 0.25;
  font-style: normal; line-height: 1;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--av-bg, var(--primary)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem; font-weight: 800;
}
.testi-name { font-size: 0.875rem; font-weight: 700; color: var(--fg); }
.testi-role { font-size: 0.75rem; color: var(--muted-fg); }

@media (max-width: 1024px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .testi-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   MIGRACIÓN PAGE
══════════════════════════════════════════ */

/* Timeline de pasos */
.mig-steps {
  display: flex; flex-direction: column; gap: 0;
  max-width: 800px; margin: 0 auto;
}
.mig-step {
  display: grid; grid-template-columns: 48px 24px 1fr; gap: 0 1.25rem;
  align-items: stretch;
}
.mig-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-size: 1.125rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1; position: relative;
  box-shadow: 0 0 0 4px var(--primary-light);
}
.mig-step-line {
  width: 2px; background: var(--border);
  margin: 0 auto; flex: 1;
}
.mig-step:last-child .mig-step-line { display: none; }
.mig-step-body {
  padding: 0 0 2.5rem;
  align-self: start;
}
.mig-step-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.375rem; line-height: 1.3; }
.mig-step-body p  { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.65; margin: 0; }

/* Proveedores compatibles */
.compat-grid {
  display: flex; flex-wrap: wrap; gap: 0.625rem;
  max-width: 1000px; margin: 0 auto 1.5rem; justify-content: center;
}
.compat-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: 99px; padding: 0.4rem 1rem;
  font-size: 0.8125rem; font-weight: 500; color: var(--fg);
  transition: border-color 0.15s, background 0.15s;
}
.compat-chip svg { color: var(--primary); flex-shrink: 0; }
.compat-chip:hover { border-color: var(--primary-border); background: var(--primary-light); }
.compat-note {
  text-align: center; font-size: 0.875rem; color: var(--muted-fg);
  max-width: 640px; margin: 0 auto; line-height: 1.6;
}

/* Garantías */
.guarantee-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  max-width: 1280px; margin: 0 auto;
}
.guarantee-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem 1.5rem;
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  transition: transform 0.2s, border-color 0.2s;
}
.guarantee-card:hover { transform: translateY(-3px); border-color: var(--primary-border); }
.guarantee-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary-light); display: flex;
  align-items: center; justify-content: center;
}
.guarantee-icon svg { width: 22px; height: 22px; color: var(--primary); }
.guarantee-card h4 { font-size: 0.9375rem; font-weight: 700; margin: 0; }
.guarantee-card p  { font-size: 0.8375rem; color: var(--muted-fg); line-height: 1.65; margin: 0; }

@media (max-width: 900px) {
  .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .guarantee-grid { grid-template-columns: 1fr; }
  .mig-step { grid-template-columns: 40px 20px 1fr; gap: 0 1rem; }
  .mig-step-num { width: 40px; height: 40px; font-size: 1rem; }
}

/* ══════════════════════════════════════════
   LEGAL PAGES (Términos / Privacidad)
══════════════════════════════════════════ */
.legal-page { padding: 4rem 1.5rem 6rem; }

.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

/* TOC sidebar */
.legal-toc { position: sticky; top: calc(var(--navbar-h, 68px) + 1.5rem); }
.legal-toc-inner {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.25rem 1.5rem;
}
.legal-toc-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted-fg); margin-bottom: 0.875rem;
}
.legal-toc nav { display: flex; flex-direction: column; gap: 0.125rem; }
.legal-toc nav a {
  font-size: 0.8125rem; color: var(--muted-fg); padding: 0.35rem 0.625rem;
  border-radius: var(--radius); transition: background 0.15s, color 0.15s;
  text-decoration: none; line-height: 1.45;
}
.legal-toc nav a:hover { background: var(--muted); color: var(--fg); }
.legal-toc nav a.active { background: var(--primary-light); color: var(--primary); font-weight: 600; }

/* Notice box */
.legal-notice {
  display: flex; gap: 0.875rem; align-items: flex-start;
  background: var(--primary-light); border: 1.5px solid var(--primary-border);
  border-radius: var(--radius-xl); padding: 1rem 1.25rem; margin-bottom: 2.5rem;
}
.legal-notice svg { color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.legal-notice p { font-size: 0.875rem; color: var(--fg); line-height: 1.6; margin: 0; }

/* Sections */
.legal-section { margin-bottom: 3rem; scroll-margin-top: calc(var(--navbar-h, 68px) + 1.5rem); }
.legal-section h2 {
  font-size: 1.25rem; font-weight: 800; margin-bottom: 1rem;
  padding-bottom: 0.625rem; border-bottom: 1.5px solid var(--border);
  letter-spacing: -0.01em;
}
.legal-section h3 { font-size: 0.9375rem; font-weight: 700; margin: 1.25rem 0 0.5rem; }
.legal-section p  { font-size: 0.9375rem; color: var(--fg); line-height: 1.75; margin-bottom: 0.875rem; }
.legal-section ul { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.875rem; padding-left: 0; list-style: none; }
.legal-section ul li {
  font-size: 0.9375rem; color: var(--fg); line-height: 1.65;
  padding-left: 1.5rem; position: relative;
}
.legal-section ul li::before {
  content: ''; position: absolute; left: 0.25rem; top: 0.6em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
}
.legal-section a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

/* Table inside legal */
.legal-table-wrap { overflow-x: auto; margin: 1rem 0 1.25rem; border-radius: var(--radius-xl); border: 1.5px solid var(--border); }
.legal-table-wrap .compare-table { border: none; border-radius: 0; }
.legal-table-wrap .compare-table th,
.legal-table-wrap .compare-table td { font-size: 0.8375rem; }

/* Contact cards */
.legal-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.legal-contact-card {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1.125rem; border-radius: var(--radius-xl);
  border: 1.5px solid var(--border); background: var(--card);
  color: var(--fg); text-decoration: none; font-size: 0.875rem; font-weight: 600;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.legal-contact-card:hover {
  border-color: var(--primary-border); background: var(--primary-light);
  color: var(--primary); transform: translateY(-2px);
}
.legal-contact-card svg { color: var(--primary); flex-shrink: 0; }

/* Footer bottom legal links */
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.9); }

@media (max-width: 860px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}
@media (max-width: 480px) {
  .legal-contact-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   EMAIL SERVICES
══════════════════════════════════════════ */
.section-eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary);
  background: var(--primary-light); padding: 0.3rem 0.875rem;
  border-radius: 99px; margin-bottom: 0.875rem;
}

/* Products grid */
.em-products-section { padding: 5rem 1.5rem 4rem; }
.em-products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 1280px; margin: 0 auto;
}
.em-product-card {
  position: relative; border-radius: var(--radius-2xl);
  border: 1.5px solid var(--border); background: var(--card);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.em-product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.em-product-card--featured { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), 0 8px 40px rgba(249,115,22,0.12); }
.em-product-card--featured:hover { box-shadow: 0 0 0 1px var(--primary), 0 20px 56px rgba(249,115,22,0.18); }

/* Ribbon */
.em-ribbon {
  position: absolute; top: 1.5rem; right: -2rem;
  background: var(--primary); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.3rem 2.5rem; transform: rotate(45deg); transform-origin: center;
  width: 130px; text-align: center; box-shadow: 0 2px 8px rgba(249,115,22,0.4);
}

/* Product header */
.em-prod-header {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.75rem 1.75rem 1.5rem; border-bottom: 1px solid var(--border);
}
.em-prod-header--venhost  { background: linear-gradient(135deg, rgba(249,115,22,0.06), rgba(249,115,22,0.02)); }
.em-prod-header--google   { background: linear-gradient(135deg, rgba(66,133,244,0.06), rgba(52,168,83,0.03)); }
.em-prod-header--microsoft{ background: linear-gradient(135deg, rgba(0,164,239,0.06), rgba(127,186,0,0.03)); }

.em-prod-logo-wrap {
  width: 52px; height: 52px; border-radius: 0.875rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--muted); border: 1px solid var(--border);
}
.em-prod-logo-wrap svg { width: 28px; height: 28px; color: var(--primary); }
.em-logo-google, .em-logo-microsoft { background: #fff; }
.em-logo-google svg, .em-logo-microsoft svg { width: 24px; height: 24px; }

.em-prod-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  padding: 0.2rem 0.6rem; border-radius: 99px; margin-bottom: 0.35rem;
  background: var(--primary-light); color: var(--primary);
}
.em-tag-google    { background: rgba(66,133,244,0.1);  color: #4285F4; }
.em-tag-microsoft { background: rgba(0,164,239,0.1);   color: #00A4EF; }
.em-prod-header h3 { font-size: 1.125rem; font-weight: 800; margin-bottom: 0.35rem; line-height: 1.2; }
.em-prod-header p  { font-size: 0.8125rem; color: var(--muted-fg); line-height: 1.55; }

/* Body */
.em-prod-body { padding: 1.5rem 1.75rem; flex: 1; }
.em-feat-list { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.25rem; }
.em-feat { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.8375rem; color: var(--fg); line-height: 1.5; }
.em-feat svg { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.em-feat strong { font-weight: 700; }

.em-best-for {
  display: flex; flex-direction: column; gap: 0.3rem;
  background: var(--muted); border-radius: var(--radius); padding: 0.875rem 1rem;
  border-left: 3px solid var(--primary);
}
.em-bf-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--primary); }
.em-best-for span:last-child { font-size: 0.8125rem; color: var(--muted-fg); line-height: 1.5; }

/* Footer */
.em-prod-footer {
  padding: 1.25rem 1.75rem 1.75rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.em-price-block { display: flex; flex-direction: column; }
.em-from { font-size: 0.72rem; color: var(--muted-fg); }
.em-price-row { display: flex; align-items: baseline; gap: 0.2rem; }
.em-price-row strong { font-size: 1.625rem; font-weight: 900; color: var(--fg); letter-spacing: -0.03em; }
.em-price-row span   { font-size: 0.8rem; color: var(--muted-fg); }

/* Compare section */
.em-compare-section { padding: 5rem 1.5rem; background: var(--muted); border-top: 1px solid var(--border); }
.em-th-wrap { display: flex; align-items: center; gap: 0.5rem; justify-content: center; font-size: 0.875rem; }
.em-th-featured { background: rgba(249,115,22,0.06) !important; }
.em-td-featured { background: rgba(249,115,22,0.04); font-weight: 500; }
.em-compare-table th:nth-child(3), .em-compare-table td:nth-child(3) {
  border-left: 2px solid var(--primary-border); border-right: 2px solid var(--primary-border);
}

/* Quiz section */
.em-quiz-section { padding: 4rem 1.5rem; }
.em-quiz-card {
  max-width: 860px; margin: 0 auto; border-radius: var(--radius-2xl);
  border: 1.5px solid var(--border); background: var(--card);
  padding: 2.5rem; display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem;
}
.em-quiz-icon {
  width: 52px; height: 52px; border-radius: 0.875rem;
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
}
.em-quiz-icon svg { width: 26px; height: 26px; color: var(--primary); }
.em-quiz-text h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.35rem; }
.em-quiz-text p  { color: var(--muted-fg); font-size: 0.9375rem; }
.em-quiz-options { display: flex; flex-direction: column; gap: 0.625rem; width: 100%; }
.em-quiz-btn {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 0.875rem 1.25rem; border-radius: var(--radius-xl);
  border: 1.5px solid var(--border); background: var(--bg);
  font-size: 0.875rem; color: var(--fg); text-align: left; cursor: pointer;
  transition: all 0.15s; width: 100%; font-family: inherit;
}
.em-quiz-btn:hover { border-color: var(--primary-border); background: var(--primary-light); }
.em-quiz-btn.active { border-color: var(--primary); background: var(--primary-light); }
.em-qb-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--muted); font-weight: 700; font-size: 0.8125rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.em-quiz-btn.active .em-qb-num { background: var(--primary); color: #fff; }
.em-quiz-btn span:nth-child(2) { flex: 1; font-weight: 500; }
.em-qb-rec { font-size: 0.75rem; font-weight: 700; color: var(--primary); white-space: nowrap; }

/* CTA final */
.em-cta-section { padding: 4rem 1.5rem 6rem; }
.em-cta-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2.5rem;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-mid) 100%);
  border-radius: var(--radius-2xl); padding: 3.5rem; flex-wrap: wrap;
}
.em-cta-left h2 { font-size: 1.875rem; font-weight: 800; color: #fff; margin-bottom: 0.625rem; letter-spacing: -0.02em; }
.em-cta-left p  { color: rgba(255,255,255,0.55); font-size: 0.9375rem; margin-bottom: 1.25rem; }
.em-cta-checks  { display: flex; flex-direction: column; gap: 0.5rem; }
.em-cta-checks li { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.em-cta-checks svg { width: 15px; height: 15px; color: #22c55e; flex-shrink: 0; }
.em-cta-right { display: flex; flex-direction: column; gap: 0.875rem; align-items: flex-start; }
.em-cta-section .btn-outline { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.25); }
.em-cta-section .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: #fff; }

@media (max-width: 960px) {
  .em-products-grid { grid-template-columns: 1fr; max-width: 560px; }
  .em-product-card--featured { order: -1; }
}
@media (max-width: 640px) {
  .em-prod-header { flex-direction: column; }
  .em-prod-footer { flex-direction: column; align-items: stretch; }
  .em-prod-footer .btn { text-align: center; justify-content: center; }
  .em-cta-inner { padding: 2rem 1.5rem; }
  .em-cta-right { width: 100%; }
  .em-cta-right .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════
   HOSTING HUB — HERO
══════════════════════════════════════════ */
.hosting-hub-page { background: #080e1c; color: #fff; }
.hosting-hub-page footer { background: #04080f; border-top-color: rgba(255,255,255,0.06); }
.hosting-hub-page footer,
.hosting-hub-page footer a,
.hosting-hub-page footer p { color: rgba(255,255,255,0.5); }
.hosting-hub-page footer a:hover { color: #fff; }
.hosting-hub-page .footer-logo { color: #fff; }

.hh-hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8rem 1.5rem 4rem; overflow: hidden; text-align: center;
}
.hh-hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hh-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35;
  animation: hhFloat 8s ease-in-out infinite;
}
.hh-orb-1 { width: 600px; height: 600px; background: #f97316; top: -200px; left: -150px; animation-delay: 0s; }
.hh-orb-2 { width: 400px; height: 400px; background: #3b82f6; bottom: -100px; right: -100px; animation-delay: -3s; }
.hh-orb-3 { width: 300px; height: 300px; background: #a855f7; top: 40%; left: 55%; animation-delay: -5s; }
@keyframes hhFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-15px, 25px) scale(0.97); }
}
.hh-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hh-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hh-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 1.75rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 0.4rem 1rem; border-radius: 99px;
}
.hh-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0.5); } 50%{ box-shadow: 0 0 0 6px rgba(34,197,94,0); } }

.hh-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 1.5rem;
}
.hh-hero-title em { font-style: normal; color: var(--primary); }
.hh-hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem); color: rgba(255,255,255,0.55);
  line-height: 1.7; margin-bottom: 2.5rem;
}
.hh-quicknav { display: flex; flex-wrap: wrap; gap: 0.625rem; justify-content: center; }
.hh-qn-pill {
  padding: 0.45rem 1.1rem; border-radius: 99px; font-size: 0.875rem; font-weight: 600;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75); transition: all 0.2s;
}
.hh-qn-pill:hover {
  background: color-mix(in srgb, var(--pill) 15%, transparent);
  border-color: var(--pill); color: #fff;
}

.hh-hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.25); animation: hhBounce 2s ease-in-out infinite;
}
.hh-hero-scroll svg { width: 24px; height: 24px; }
@keyframes hhBounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(6px); } }

/* ══════════════════════════════════════════
   HOSTING HUB — BENTO GRID
══════════════════════════════════════════ */
.hh-bento-section { padding: 0 1.25rem 3rem; }
.hh-bento {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

/* Card base */
.hh-card {
  position: relative; overflow: hidden; border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  cursor: pointer; text-decoration: none; color: #fff;
  min-height: 340px;
}
.hh-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

/* Color themes */
.hh-card--featured { grid-column: 1 / -1; min-height: 320px; }
.hh-card--orange { background: linear-gradient(135deg, #1a0d00 0%, #2d1300 60%, #1a0d00 100%); }
.hh-card--orange:hover { border-color: rgba(249,115,22,0.5); box-shadow: 0 20px 60px rgba(249,115,22,0.15); }
.hh-card--green  { background: linear-gradient(135deg, #001a09 0%, #002f12 60%, #001a09 100%); }
.hh-card--green:hover  { border-color: rgba(34,197,94,0.4); box-shadow: 0 20px 60px rgba(34,197,94,0.12); }
.hh-card--blue   { background: linear-gradient(135deg, #000d1f 0%, #001535 60%, #000d1f 100%); }
.hh-card--blue:hover   { border-color: rgba(59,130,246,0.4); box-shadow: 0 20px 60px rgba(59,130,246,0.12); }
.hh-card--purple { background: linear-gradient(135deg, #0d001f 0%, #180035 60%, #0d001f 100%); }
.hh-card--purple:hover { border-color: rgba(168,85,247,0.4); box-shadow: 0 20px 60px rgba(168,85,247,0.12); }
.hh-card--amber  { background: linear-gradient(135deg, #1a0e00 0%, #2e1900 60%, #1a0e00 100%); }
.hh-card--amber:hover  { border-color: rgba(245,158,11,0.4); box-shadow: 0 20px 60px rgba(245,158,11,0.12); }

/* Featured card layout override */
.hh-card--featured .hh-card-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; height: 100%;
}
.hh-card--featured .hh-card-mid { display: flex; flex-direction: column; justify-content: center; }
.hh-card--featured .hh-card-bottom { display: flex; flex-direction: column; justify-content: flex-end; }
.hh-card--featured h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }

/* Geometric decorations */
.hh-card-geo {
  position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  pointer-events: none; overflow: hidden; opacity: 0.25;
}
.hh-card--featured .hh-card-geo { width: 45%; }

.hh-geo-ring {
  position: absolute; border-radius: 50%; border: 1px solid currentColor;
  right: -60px; top: 50%; transform: translateY(-50%);
}
.hh-card--orange .hh-card-geo { color: #f97316; }
.hh-card--green  .hh-card-geo { color: #22c55e; }
.hh-card--blue   .hh-card-geo { color: #3b82f6; }
.hh-card--purple .hh-card-geo { color: #a855f7; }
.hh-card--amber  .hh-card-geo { color: #f59e0b; }

.hh-geo-ring-1 { width: 280px; height: 280px; }
.hh-geo-ring-2 { width: 200px; height: 200px; opacity: 0.5; }
.hh-geo-ring-3 { width: 120px; height: 120px; opacity: 0.3; }
.hh-geo-dot    { position: absolute; right: calc(55% - 6px); top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

.hh-geo-hex, .hh-geo-circle, .hh-geo-diamond, .hh-geo-triangle {
  position: absolute;
}
.hh-geo-hex {
  width: 200px; height: 230px;
  background: currentColor; opacity: 0.12;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  right: -50px; top: 50%; transform: translateY(-50%);
}
.hh-geo-hex-2 { width: 120px; height: 138px; opacity: 0.06; right: 80px; top: 10%; transform: none; }
.hh-geo-circle { width: 220px; height: 220px; border-radius: 50%; background: currentColor; opacity: 0.1; right: -60px; top: 50%; transform: translateY(-50%); }
.hh-geo-circle-2 { width: 130px; height: 130px; opacity: 0.07; right: 90px; top: 15%; transform: none; }
.hh-geo-cross {
  right: 20px; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; opacity: 0.2;
  background: linear-gradient(currentColor, currentColor) 50% 0 / 4px 100% no-repeat,
              linear-gradient(currentColor, currentColor) 0 50% / 100% 4px no-repeat;
}
.hh-geo-diamond {
  width: 180px; height: 180px; background: currentColor; opacity: 0.1;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  right: -40px; top: 50%; transform: translateY(-50%);
}
.hh-geo-diamond-2 { width: 100px; height: 100px; opacity: 0.06; right: 100px; top: 10%; transform: none; }
.hh-geo-triangle {
  width: 0; height: 0;
  border-left: 110px solid transparent; border-right: 110px solid transparent;
  border-bottom: 190px solid currentColor;
  opacity: 0.1; right: -40px; top: 50%; transform: translateY(-50%);
  background: none;
}
.hh-geo-triangle-2 { border-left-width: 70px; border-right-width: 70px; border-bottom-width: 120px; opacity: 0.06; right: 110px; top: 10%; transform: none; }

/* Card content */
.hh-card-content { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.hh-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }
.hh-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 99px;
  background: color-mix(in srgb, var(--badge) 20%, transparent);
  border: 1px solid color-mix(in srgb, var(--badge) 40%, transparent);
  color: var(--badge);
}
.hh-card-icon-wrap {
  width: 48px; height: 48px; border-radius: 0.875rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hh-card-icon-wrap svg { width: 22px; height: 22px; }

.hh-card-mid { flex: 1; }
.hh-card-mid h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.625rem; letter-spacing: -0.02em; }
.hh-card-mid p  { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

.hh-card-bottom { margin-top: 1.5rem; }
.hh-feats { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.hh-feats span {
  font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.6rem; border-radius: 99px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
}
.hh-card-cta-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.hh-price-block { display: flex; align-items: baseline; gap: 0.25rem; }
.hh-from  { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.hh-price-block strong { font-size: 1.75rem; font-weight: 900; color: #fff; letter-spacing: -0.03em; }
.hh-mo    { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.hh-cta-btn {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.8125rem; font-weight: 700; color: #fff;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  padding: 0.55rem 1rem; border-radius: 0.6rem; transition: all 0.2s; white-space: nowrap;
}
.hh-card:hover .hh-cta-btn { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════
   HOSTING HUB — COMPARE TABLE
══════════════════════════════════════════ */
.hh-compare-section { padding: 3rem 1.5rem 4rem; }
.hh-compare-header { text-align: center; margin-bottom: 2rem; }
.hh-compare-header h2 { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.hh-compare-header p  { color: rgba(255,255,255,0.4); margin-top: 0.25rem; }
.hh-compare-scroll { overflow-x: auto; }
.hh-compare-table {
  width: 100%; border-collapse: collapse; white-space: nowrap;
  font-size: 0.875rem; min-width: 640px;
}
.hh-compare-table th, .hh-compare-table td {
  padding: 0.875rem 1.25rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hh-compare-table th:first-child, .hh-compare-table td:first-child { text-align: left; color: rgba(255,255,255,0.6); font-weight: 500; }
.hh-compare-table thead th {
  font-weight: 700; font-size: 0.8125rem; color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.03); text-transform: uppercase; letter-spacing: 0.05em;
}
.hh-compare-table thead th:first-child { text-transform: none; letter-spacing: 0; font-size: 0.875rem; }
.hh-compare-table tbody tr:hover td { background: rgba(255,255,255,0.025); }
.hh-compare-table td { color: rgba(255,255,255,0.7); }
.hh-compare-table strong { color: #fff; }
.hh-yes { color: #22c55e !important; font-weight: 700; font-size: 1rem; }
.hh-no  { color: rgba(255,255,255,0.2) !important; }

/* ══════════════════════════════════════════
   HOSTING HUB — ADVISOR CTA
══════════════════════════════════════════ */
.hh-advisor { padding: 0 1.5rem 5rem; }
.hh-advisor-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  background: linear-gradient(135deg, #1a0d00 0%, #0f0a1f 50%, #001225 100%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 1.5rem;
  padding: 3rem 3.5rem; flex-wrap: wrap;
}
.hh-advisor-text h2 { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; color: #fff; margin-bottom: 0.5rem; }
.hh-advisor-text p  { color: rgba(255,255,255,0.5); font-size: 0.9375rem; max-width: 480px; }
.hh-advisor-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }
.hh-advisor .btn-outline { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.2); }
.hh-advisor .btn-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); color: #fff; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hh-bento { grid-template-columns: 1fr 1fr; }
  .hh-card--featured { grid-column: 1 / -1; }
  .hh-card--featured .hh-card-content { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hh-bento { grid-template-columns: 1fr; }
  .hh-card { min-height: unset; }
  .hh-card-cta-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hh-advisor-inner { padding: 2rem 1.5rem; }
  .hh-advisor-inner h2 { font-size: 1.375rem; }
}
