/* ===== tokens.css ===== */
/* ========================================
   DESIGN TOKENS
======================================== */

:root {
  --bg: #0b1120;
  --bg-soft: #111a2e;
  --bg-elevated: rgba(18, 26, 46, 0.78);

  --surface: #121a2b;
  --surface-soft: #182338;
  --surface-line: rgba(255, 255, 255, 0.08);
  --surface-line-strong: rgba(255, 255, 255, 0.14);

  --text: #eaf1ff;
  --text-soft: #a9b7d0;
  --text-muted: #7e8aa3;

  --primary: #4f8cff;
  --primary-strong: #3f7af0;
  --secondary: #7c5cff;

  --success: #3bd49f;
  --warning: #f59e0b;
  --danger: #ef4444;

  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.22);
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.16);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --container-max: 1200px;
  --header-height: 60px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.25s ease;
}

/* ===== base.css ===== */
/* ========================================
   RESET / BASE
======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(79, 140, 255, 0.16), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(124, 92, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #0b1120 0%, #0d1424 42%, #0b1120 100%);
  color: var(--text);
  line-height: 1.6;
  padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

svg {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

p {
  margin: 0;
  color: var(--text-soft);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  background: rgba(79, 140, 255, 0.32);
  color: #fff;
}





.btn {
  padding: 0.3rem 1rem !important;
}




.service-card-tech {
  min-height: 320px;
}

.service-card-tech > p {
  margin-bottom: 0px;
}

.service-tech {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--surface-line);
  border-bottom: 1px solid var(--surface-line);
}

.service-tech > span {
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.service-tech-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  min-height: 30px;
  margin-bottom: 28px;
}

.service-tech-logos img {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 30px;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.04);
}

.service-tech-logos-many {
  gap: 16px 20px;
}

.service-tech-logos-many img {
  max-width: 105px;
  max-height: 56px;
}

body.light .service-tech {
  border-top-color: rgba(15, 23, 42, 0.08);
}

@media (max-width: 991.98px) {
  .service-card-tech {
    min-height: auto;
  }
}



.support-card {
  padding: 1.5rem;
}

.support-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}









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

.info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* ===== layout.css ===== */
/* ========================================
   LAYOUT
======================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
}

main {
  position: relative;
  z-index: 1;
}

.section,
.hero-section {
  position: relative;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.07);
  border-top: 1px solid var(--surface-line);
  border-bottom: 1px solid var(--surface-line);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.7rem;
  margin-bottom: 1rem;
}

.section-heading p {
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #bcd0ff;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(188, 208, 255, 0.6);
}

/* ========================================
   HEADER / NAV
======================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(8, 13, 25, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.site-header.is-scrolled {
  background: rgba(8, 13, 25, 0.82);
  border-bottom-color: var(--surface-line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.navbar {
  min-height: var(--header-height);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.22), rgba(124, 92, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #dbe8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.55rem 0.8rem;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: var(--text);
}

.menu-toggle {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 18px;
  background: transparent;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.menu-toggle::before {
  top: 4px;
  box-shadow: 0 8px 0 var(--text);
}

.menu-toggle::after {
  bottom: 4px;
}

/* ========================================
   PAGE LAYOUT BLOCKS
======================================== */

.hero-section {
  padding: 86px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.split-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.login-cta {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 24px;
  align-items: center;
}

/* ========================================
   FOOTER LAYOUT
======================================== */

.site-footer {
  padding: 72px 0 28px;
  border-top: 1px solid var(--surface-line);
  background: rgba(0, 0, 0, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-copy {
  max-width: 360px;
  margin-top: 1rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--surface-line);
}

.footer-links {
  display: flex;
  gap: 1.1rem;
}

/* ===== components.css ===== */
/* ========================================
   BUTTONS
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 1.5rem;
}

.btn-primary-modern {
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 14px 30px rgba(79, 140, 255, 0.25);
}

.btn-primary-modern:hover,
.btn-primary-modern:focus {
  color: #fff;
  box-shadow: 0 18px 34px rgba(79, 140, 255, 0.3);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

/* ========================================
   HERO
======================================== */

.hero-copy h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-top: 1rem;
  margin-bottom: 1.15rem;
}

.hero-text {
  max-width: 660px;
  font-size: 1.1rem;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--surface-line);
  color: var(--text);
  font-size: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 140, 255, 0.12);
  color: #d8e6ff;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 16px;
  height: 16px;
}

.hero-panel {
  position: relative;
  min-height: 520px;
}

.panel-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(20, 29, 48, 0.96), rgba(14, 20, 34, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.panel-main {
  overflow: hidden;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--surface-line);
  background: rgba(255, 255, 255, 0.02);
}

.panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.panel-body {
  display: grid;
  gap: 14px;
  padding: 1.35rem;
}

.panel-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--surface-line);
}

.panel-block strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.panel-block small {
  display: block;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.floating-card {
  position: absolute;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--surface-line-strong);
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.floating-a {
  top: 10%;
  right: -4%;
}

.floating-b {
  right: -4%;
  bottom: 10%;
}

/* ========================================
   ICONS
======================================== */

.mini-icon,
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #d7e5ff;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.18), rgba(124, 92, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-icon svg,
.service-icon svg {
  width: 22px;
  height: 22px;
}

.icon-svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========================================
   SHARED CARDS
======================================== */

.service-card,
.support-card,
.help-item,
.info-card,
.plan-card,
.infra-card,
.login-cta {
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base),
    background-color var(--transition-base);
}

.service-card {
  padding: 1.6rem;
}

.support-card,
.info-card {
  padding: 1.5rem;
}

.plan-card {
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
}

.infra-card,
.login-cta {
  padding: 2rem;
}

.service-card:hover,
.plan-card:hover,
.support-card:hover,
.infra-card:hover {
  border-color: var(--surface-line-strong);
  box-shadow: var(--shadow-md);
}

/* ========================================
   SERVICE / HELP / INFO
======================================== */

.service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.service-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-top: 1rem;
  margin-bottom: 0.85rem;
}

.help-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  color: var(--text);
  font-weight: 600;
  transition:
    transform var(--transition-fast),
    background-color var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.help-item span:last-child {
  flex: 1;
}

.help-item::after {
  content: "↗";
  color: var(--text-soft);
  font-size: 1rem;
  flex-shrink: 0;
}

.help-item:hover {
  background: var(--surface-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.help-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(79, 140, 255, 0.10);
  color: var(--primary);
  flex-shrink: 0;
}

.help-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
}

.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--surface-line);
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row strong {
  font-weight: 600;
}

.info-row span {
  color: var(--text-soft);
  text-align: right;
}

/* ========================================
   PLANS
======================================== */

.plan-tag {
  display: inline-flex;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8d8ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--surface-line);
}

.plan-card h3 {
  font-size: 1.8rem;
  margin-top: 1rem;
  margin-bottom: 0.7rem;
}

.plan-card.featured {
  overflow: visible;
  background: linear-gradient(180deg, rgba(79, 140, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 2px solid rgba(79, 140, 255, 0.38);
  transform: translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #0b1120;
  background: linear-gradient(90deg, #00ffaa, #00cc88);
  border: 2px solid #111827;
  box-shadow:
    0 6px 20px rgba(0, 255, 170, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.4);
}

.plan-price {
  margin: -1rem 1rem 1.2rem 0;
  text-align: center;
}

.price {
  font-size: 1.2rem;
  font-weight: 800;
}

.period {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.plan-description {
  min-height: 72px;
  margin-bottom: 1.2rem;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.feature-list-compact {
  margin-top: 1rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--success), var(--primary));
}

/* ========================================
   SPECIAL BLOCKS
======================================== */

.split-feature h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.8rem;
  margin-bottom: 1rem;
}

.infra-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-top: 0.9rem;
  margin-bottom: 1rem;
}

.infra-card .btn {
  margin-top: 1rem;
}

.login-cta h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 0.8rem;
  margin-bottom: 1rem;
}

.testimonial-card {
  height: 100%;
  padding: 2rem;
  border-radius: 16px;
  background: #151b2a;
}

/* ========================================
   LINK CARDS
======================================== */

.service-link-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-arrow {
  width: 38px;
  height: 38px;
  margin-top: auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--surface-line);
  color: var(--text-soft);
  transition: all var(--transition-base);
}

.service-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.service-link-card:hover .service-arrow {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(79, 140, 255, 0.25);
}

.service-link-card:hover .service-arrow svg {
  transform: translateX(4px);
}

/* ========================================
   FOOTER COMPONENTS
======================================== */

.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 0.8rem;
}

.site-footer li,
.site-footer a {
  color: var(--text-soft);
}

.site-footer a:hover {
  color: var(--text);
}

.footer-bottom p {
  color: var(--text-muted);
}

.footer-links a {
  color: var(--text-muted);
}

/* ========================================
   UTILITIES
======================================== */

.w-100 {
  width: 100%;
}

/* Footer consumer links are shared globally; form-specific consumer CSS is page-scoped. */
.footer-consumer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.footer-consumer-links a {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-muted);
}
.footer-consumer-links a:hover,
.footer-consumer-links a:focus {
  color: var(--text);
}

/* ===== theme-light.css ===== */
/* ========================================
   LIGHT THEME
======================================== */

body.light {
  --bg: #f5f7fb;
  --bg-soft: #ffffff;
  --bg-elevated: rgba(255, 255, 255, 0.94);

  --surface: #ffffff;
  --surface-soft: #f3f6fb;
  --surface-soft-2: #eef3f9;
  --surface-line: rgba(15, 23, 42, 0.08);
  --surface-line-strong: rgba(15, 23, 42, 0.14);

  --text: #0f172a;
  --text-soft: #334155;
  --text-muted: #64748b;

  --primary: #16a34a;
  --primary-strong: #15803d;
  --secondary: #22c55e;

  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #ef4444;

  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-md: 0 14px 32px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.06);

  background: linear-gradient(180deg, #f9fbfc 0%, #f6f8fb 55%, #f7f9fc 100%);
  color: var(--text);
}

body.light ::selection {
  background: rgba(22, 163, 74, 0.16);
  color: var(--text);
}

/* ========================================
   HEADER / NAV
======================================== */

body.light .site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.055);
  box-shadow: none;
}

body.light .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
}

body.light .navbar-dark .navbar-nav .nav-link,
body.light .navbar .nav-link {
  color: var(--text-soft);
}

body.light .navbar-dark .navbar-nav .nav-link:hover,
body.light .navbar .nav-link:hover,
body.light .navbar-dark .navbar-nav .nav-link:focus,
body.light .navbar .nav-link:focus {
  color: var(--primary);
}

body.light .brand,
body.light .navbar-brand {
  color: var(--text);
}

body.light .menu-toggle::before,
body.light .menu-toggle::after {
  background: var(--text);
}

/* ========================================
   GENERAL CONTENT
======================================== */

body.light .hero-section {
  background: linear-gradient(180deg, #f9fbfc 0%, #f6f8fb 55%, #f7f9fc 100%);
}

body.light .hero-copy h1,
body.light .hero-section h1,
body.light .section-heading h2,
body.light .service-card h3,
body.light .plan-card h3,
body.light .support-card h3,
body.light .infra-card h2,
body.light .info-card strong,
body.light .login-cta h2,
body.light .site-footer h3,
body.light .footer-brand {
  color: var(--text);
}

body.light .hero-copy p,
body.light .hero-section p,
body.light .hero-text,
body.light .section-heading p,
body.light .service-card p,
body.light .plan-card p,
body.light .support-card p,
body.light .infra-card p,
body.light .login-cta p,
body.light .info-row span,
body.light .footer-copy,
body.light .footer-bottom p,
body.light .site-footer a,
body.light .site-footer li {
  color: var(--text-soft);
}

body.light .eyebrow {
  color: var(--primary);
}

body.light .eyebrow::before {
  background: rgba(22, 163, 74, 0.28);
}

body.light .section-soft {
  background: #f3f6f8;
  background-image: none;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

/* ========================================
   PANELS / CARDS
======================================== */

body.light .panel-card,
body.light .panel-main,
body.light .info-card,
body.light .service-card,
body.light .plan-card,
body.light .support-card,
body.light .infra-card,
body.light .login-cta,
body.light .help-item,
body.light .trust-item {
  background: #ffffff;
  background-image: none;
  border: 1px solid var(--surface-line);
  box-shadow: var(--shadow-sm);
}

body.light .panel-dot {
  background: #cbd5e1;
}

body.light .panel-block {
  background: #ffffff;
  background-image: none;
  border: 1px solid rgba(15, 23, 42, 0.075);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.028);
}

body.light .panel-block small,
body.light .period,
body.light .plan-description,
body.light .footer-bottom p {
  color: var(--text-muted);
}

body.light .floating-card {
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  border: 1px solid var(--surface-line);
  box-shadow: var(--shadow-md);
}

/* ========================================
   ICONS
======================================== */

body.light .mini-icon,
body.light .service-icon,
body.light .trust-icon,
body.light .help-icon {
  background: rgba(22, 163, 74, 0.075);
  background-image: none;
  color: var(--primary);
  border: 1px solid rgba(22, 163, 74, 0.14);
}

body.light .icon-svg,
body.light .service-header .icon-svg {
  stroke: var(--primary);
}

/* ========================================
   HOVERS
======================================== */

body.light .help-item:hover,
body.light .service-card:hover,
body.light .plan-card:hover,
body.light .support-card:hover,
body.light .infra-card:hover {
  border-color: rgba(22, 163, 74, 0.18);
  box-shadow: var(--shadow-md);
}

/* ========================================
   PLANS
======================================== */

body.light .plan-tag {
  background: rgba(22, 163, 74, 0.075);
  color: var(--primary-strong);
  border: 1px solid rgba(22, 163, 74, 0.14);
}

body.light .popular-badge {
  color: #fff;
  background: var(--primary);
  background-image: none;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

body.light .plan-card.featured {
  border-color: rgba(22, 163, 74, 0.22);
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.08);
}

body.light .price {
  color: var(--text);
}

body.light .feature-list li {
  color: var(--text-soft);
}

/* ========================================
   BUTTONS
======================================== */

body.light .btn {
  border-radius: var(--radius-sm);
}

body.light .btn-primary-modern {
  background: var(--primary);
  background-image: none;
  color: #fff;
  border: 1px solid var(--primary);
  box-shadow: 0 5px 14px rgba(22, 163, 74, 0.14);
}

body.light .btn-primary-modern:hover,
body.light .btn-primary-modern:focus {
  background: var(--primary-strong);
  background-image: none;
  border-color: var(--primary-strong);
  color: #fff;
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.18);
}

body.light .btn-ghost {
  border: 1px solid var(--surface-line-strong);
  background: #ffffff;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

body.light .btn-ghost:hover,
body.light .btn-ghost:focus {
  background: var(--surface-soft);
  color: var(--text);
  border-color: rgba(22, 163, 74, 0.18);
}

/* ========================================
   TABLES / FORMS
======================================== */

body.light .table {
  --bs-table-bg: #ffffff;
  --bs-table-color: var(--text);
  --bs-table-border-color: rgba(15, 23, 42, 0.08);
}

body.light .table thead {
  background: var(--surface-soft);
}

body.light .table th {
  color: var(--text-soft);
}

body.light .table td {
  color: var(--text);
}

body.light .table tbody tr:hover {
  background: #f8fbff;
}

body.light input,
body.light select,
body.light textarea,
body.light .form-control,
body.light .form-select {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--surface-line-strong);
  box-shadow: none;
}

body.light input::placeholder,
body.light textarea::placeholder,
body.light .form-control::placeholder {
  color: #94a3b8;
}

body.light input:focus,
body.light select:focus,
body.light textarea:focus,
body.light .form-control:focus,
body.light .form-select:focus {
  background: #ffffff;
  color: var(--text);
  border-color: rgba(22, 163, 74, 0.45);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.10);
}

/* ========================================
   LOGIN CTA / FOOTER
======================================== */

body.light .login-cta {
  background: #ffffff;
  background-image: none;
}

body.light .site-footer {
  background: #edf3f9;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

body.light .site-footer a:hover {
  color: var(--primary-strong);
}

body.light .footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

body.light svg {
  color: inherit;
}


/* ========================================
   PREMIUM PUBLIC REFRESH — 2026-08-14
   Consistencia visual global de la web pública.
======================================== */

body.light {
  --bw-green: #16a34a;
  --bw-green-hover: #15803d;
  --bw-green-soft: rgba(22, 163, 74, 0.075);
  --bw-green-border: rgba(22, 163, 74, 0.18);
  --bw-border: rgba(15, 23, 42, 0.085);
}

body.light main {
  background: #f7f9fc;
}

body.light .section {
  background: #f7f9fc;
}

body.light .section-soft {
  background: #f3f6f8;
  background-image: none;
}

body.light .site-header .nav-link {
  font-weight: 500;
}

body.light .site-header .btn-primary-modern {
  min-height: 38px;
  padding: 8px 17px;
  border-radius: 10px;
  box-shadow: none;
}

body.light .btn-primary-modern,
body.light a.btn-primary-modern,
body.light button.btn-primary-modern {
  border-radius: 10px;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: background-color 0.18s ease,
              border-color 0.18s ease,
              box-shadow 0.18s ease,
              transform 0.18s ease;
}

body.light .btn-primary-modern:hover,
body.light .btn-primary-modern:focus {
  transform: translateY(-1px);
}

body.light .btn-primary-modern:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(22, 163, 74, 0.14);
}

body.light .btn-ghost {
  border-radius: 10px;
  box-shadow: none;
}

body.light .btn-ghost:hover,
body.light .btn-ghost:focus {
  color: var(--primary-strong);
  background: #f8fbf9;
  border-color: var(--bw-green-border);
}

body.light .home-hero-title {
  color: var(--text);
  letter-spacing: -0.045em;
  line-height: 0.99;
  font-weight: 550;
}

body.light .hero-text {
  line-height: 1.58;
}

body.light .eyebrow {
  letter-spacing: 0.12em;
  font-weight: 700;
}

body.light .section-heading h2 {
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-weight: 640;
}

body.light .trust-row {
  gap: 24px;
  margin-top: 25px;
}

body.light .trust-item {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  background-image: none;
  box-shadow: none;
  gap: 8px;
  color: #263447;
  font-size: 0.91rem;
  font-weight: 500;
}

body.light .trust-icon {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  background-image: none;
  box-shadow: none;
}

body.light .trust-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
}

body.light .panel-card,
body.light .panel-main {
  background: #fff;
  background-image: none;
  border: 1px solid rgba(15, 23, 42, 0.075);
  border-radius: 25px;
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.075),
              0 2px 6px rgba(15, 23, 42, 0.025);
}

body.light .panel-top {
  background: #fff;
  background-image: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.055);
}

body.light .panel-dot {
  background: #d3dae3;
}

body.light .panel-body {
  padding: 16px;
  gap: 11px;
}

body.light .panel-block {
  border-radius: 15px;
  padding: 14px 15px;
  transition: border-color 0.18s ease,
              transform 0.18s ease,
              box-shadow 0.18s ease;
}

body.light .panel-block:hover {
  transform: translateY(-1px);
  border-color: var(--bw-green-border);
  box-shadow: 0 9px 22px rgba(15, 23, 42, 0.045);
}

body.light .mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: none;
}

body.light .mini-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
}

body.light .panel-block strong {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 680;
  letter-spacing: -0.015em;
}

body.light .panel-block small {
  font-size: 0.84rem;
  margin-top: 2px;
}

body.light .floating-card {
  background: rgba(255, 255, 255, 0.97);
  background-image: none;
  border: 1px solid rgba(15, 23, 42, 0.075);
  border-radius: 11px;
  padding: 9px 13px;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 650;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.065);
}

body.light .floating-card::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  vertical-align: 2px;
  background: var(--primary);
  border-radius: 999px;
}

body.light .service-card,
body.light .plan-card,
body.light .support-card,
body.light .info-card,
body.light .infra-card,
body.light .login-cta,
body.light .help-item {
  background: #fff;
  background-image: none;
  border-color: rgba(15, 23, 42, 0.075);
  box-shadow: 0 7px 22px rgba(15, 23, 42, 0.032);
}

body.light .service-card {
  border-radius: 20px;
  transition: transform 0.2s ease,
              border-color 0.2s ease,
              box-shadow 0.2s ease;
}

body.light .service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 163, 74, 0.22);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.065);
}

body.light .service-card h3 {
  letter-spacing: -0.025em;
  font-weight: 650;
}

body.light .service-arrow {
  background: #fff;
  background-image: none;
  border: 1px solid rgba(15, 23, 42, 0.10);
  color: #475569;
  box-shadow: none;
}

body.light .service-link-card:hover .service-arrow {
  background: var(--primary);
  background-image: none;
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 6px 14px rgba(22, 163, 74, 0.15);
}

body.light .support-card:hover,
body.light .infra-card:hover,
body.light .help-item:hover,
body.light .plan-card:hover {
  border-color: rgba(22, 163, 74, 0.20);
  box-shadow: 0 13px 28px rgba(15, 23, 42, 0.055);
}

body.light .login-cta {
  border-radius: 20px;
}

body.light .table tbody tr:hover {
  background: #f8fbf9;
}

body.light a:not(.btn):hover {
  color: var(--primary-strong);
}

@media (max-width: 991.98px) {
  body.light .trust-row {
    gap: 16px 20px;
  }

  body.light .floating-card {
    display: none;
  }
}

@media (max-width: 575.98px) {
  body.light .trust-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  body.light .home-hero-title {
    line-height: 1.02;
  }
}

/* ========================================
   PUBLIC PLAN ICONS
   Same visual language across Hosting / VPS / Dedicated
======================================== */

body.light .plan-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin-bottom: 16px;
}

body.light .plan-card.featured .plan-card-top {
  padding-right: 96px;
}

body.light .plan-card-top .plan-tag {
  margin: 0;
}

body.light .plan-kind-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  border-radius: 10px;
  color: var(--primary);
  background: rgba(22, 163, 74, 0.07);
  border: 1px solid rgba(22, 163, 74, 0.15);
  box-shadow: none;
}

body.light .plan-kind-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.light .plan-card:hover .plan-kind-icon,
body.light .plan-card.featured .plan-kind-icon {
  background: rgba(22, 163, 74, 0.10);
  border-color: rgba(22, 163, 74, 0.22);
}

@media (max-width: 520px) {
  body.light .plan-card.featured .plan-card-top {
    padding-right: 0;
  }
}

/* ========================================
   COMMERCIAL PLAN HEADERS — CLEAN TOP
   VPS / Dedicated: same hierarchy as Hosting
======================================== */

body.light .public-plan-grid > .plan-card .public-plan-card-top {
  min-height: 0;
  margin-bottom: 16px;
  gap: 0;
}

body.light .public-plan-grid > .plan-card.featured .public-plan-card-top {
  padding-right: 92px;
}

body.light .public-plan-grid > .plan-card .public-plan-card-top .plan-tag {
  padding: .34rem .68rem;
  font-size: .68rem;
  letter-spacing: .065em;
}

body.light .public-plan-grid > .plan-card .popular-badge {
  padding: .40rem .72rem;
  font-size: .66rem;
  letter-spacing: .055em;
}

body.light .public-plan-grid > .plan-card h3 {
  margin-top: 0;
}

@media (max-width: 520px) {
  body.light .public-plan-grid > .plan-card.featured .public-plan-card-top {
    padding-right: 0;
  }
}


/* ========================================
   DYNAMIC PUBLIC CATALOG GRIDS
   VPS / Dedicated rendered from products + product_meta
======================================== */

body.light .catalog-plan-grid.catalog-plan-grid-count-1 {
  grid-template-columns: minmax(0, 390px);
  justify-content: center;
}

body.light .catalog-plan-grid.catalog-plan-grid-count-2 {
  grid-template-columns: repeat(2, minmax(0, 390px));
  justify-content: center;
}

body.light .catalog-plan-grid.catalog-plan-grid-count-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

body.light .catalog-plan-grid.catalog-plan-grid-count-5,
body.light .catalog-plan-grid.catalog-plan-grid-count-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.light .public-catalog-empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: #fff;
  color: #64748b;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
}

@media (max-width: 767.98px) {
  body.light .catalog-plan-grid.catalog-plan-grid-count-1,
  body.light .catalog-plan-grid.catalog-plan-grid-count-2,
  body.light .catalog-plan-grid.catalog-plan-grid-count-4,
  body.light .catalog-plan-grid.catalog-plan-grid-count-5,
  body.light .catalog-plan-grid.catalog-plan-grid-count-6 {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

/* ========================================
   PUBLIC PLAN CARDS — BAIRESWEB POLISH 2026-08-15
   Web Hosting / VPS / Dedicated
======================================== */

body.light .hosting-plan-grid,
body.light .public-plan-grid {
  gap: 22px !important;
  align-items: stretch !important;
}

body.light .hosting-plan-grid > .plan-card,
body.light .public-plan-grid > .plan-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 27px 27px 25px !important;
  background: #fff !important;
  background-image: none !important;
  border: 1px solid #e3e8ee !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .045) !important;
  transform: none !important;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease !important;
}

body.light .hosting-plan-grid > .plan-card:hover,
body.light .public-plan-grid > .plan-card:hover {
  border-color: rgba(22, 163, 74, .32) !important;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .07) !important;
  transform: translateY(-2px) !important;
}

body.light .hosting-plan-grid > .plan-card.featured,
body.light .public-plan-grid > .plan-card.featured {
  border: 1.5px solid rgba(22, 163, 74, .38) !important;
  background: #fff !important;
  background-image: none !important;
  box-shadow: 0 17px 38px rgba(22, 163, 74, .09) !important;
}

body.light .hosting-plan-grid > .plan-card.featured:hover,
body.light .public-plan-grid > .plan-card.featured:hover {
  border-color: rgba(22, 163, 74, .55) !important;
  box-shadow: 0 20px 42px rgba(22, 163, 74, .12) !important;
}

body.light .hosting-plan-card-top,
body.light .public-plan-card-top,
body.light .plan-card-top {
  min-height: 30px !important;
  margin: 0 0 17px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

body.light .plan-card.featured .hosting-plan-card-top,
body.light .plan-card.featured .public-plan-card-top,
body.light .plan-card.featured .plan-card-top {
  padding-right: 0 !important;
}

body.light .plan-card .plan-tag {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 28px !important;
  padding: 0 11px !important;
  margin: 0 !important;
  border: 1px solid rgba(22, 163, 74, .15) !important;
  border-radius: 999px !important;
  background: rgba(22, 163, 74, .065) !important;
  background-image: none !important;
  color: #15803d !important;
  font-size: 10px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  letter-spacing: .065em !important;
  text-transform: uppercase !important;
}

body.light .plan-card .popular-badge {
  position: absolute !important;
  top: -13px !important;
  right: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 28px !important;
  padding: 0 13px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #16a34a !important;
  background-image: none !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: .055em !important;
  text-transform: uppercase !important;
  box-shadow: 0 7px 16px rgba(22, 163, 74, .18) !important;
}

body.light .plan-card h3 {
  margin: 0 0 9px !important;
  color: #0f172a !important;
  font-size: 1.58rem !important;
  font-weight: 650 !important;
  line-height: 1.12 !important;
  letter-spacing: -.025em !important;
}

body.light .plan-card .plan-description {
  min-height: 0 !important;
  margin: 0 0 20px !important;
  color: #475569 !important;
  font-size: .94rem !important;
  line-height: 1.52 !important;
}

body.light .plan-card .plan-price {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  margin: 0 0 22px !important;
  padding: 0 !important;
  text-align: left !important;
}

body.light .plan-card .price {
  color: #0f172a !important;
  font-size: 1.72rem !important;
  font-weight: 760 !important;
  line-height: 1.05 !important;
  letter-spacing: -.035em !important;
}

body.light .plan-card .period {
  margin-top: 6px !important;
  color: #64748b !important;
  font-size: .82rem !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

body.light .plan-card .feature-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 11px !important;
  flex: 1 !important;
  margin: 0 0 25px !important;
  padding: 0 !important;
  list-style: none !important;
}

body.light .plan-card .feature-list li {
  position: relative !important;
  margin: 0 !important;
  padding: 0 0 0 21px !important;
  color: #334155 !important;
  font-size: .92rem !important;
  line-height: 1.4 !important;
}

body.light .plan-card .feature-list li::before {
  content: "" !important;
  position: absolute !important;
  left: 1px !important;
  top: .56em !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #16a34a !important;
  box-shadow: none !important;
}

body.light .plan-card > .btn,
body.light .plan-card .btn.w-100 {
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: auto !important;
  padding: 0 17px !important;
  border-radius: 11px !important;
  font-size: .91rem !important;
  font-weight: 700 !important;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease !important;
}

body.light .plan-card .btn-ghost {
  background: #fff !important;
  background-image: none !important;
  border: 1px solid #dce2e8 !important;
  color: #0f172a !important;
  box-shadow: none !important;
}

body.light .plan-card .btn-ghost:hover {
  background: #f8fafc !important;
  border-color: rgba(22, 163, 74, .35) !important;
  color: #15803d !important;
}

body.light .plan-card .btn-primary-modern {
  background: #16a34a !important;
  background-image: none !important;
  border-color: #16a34a !important;
  color: #fff !important;
  box-shadow: 0 8px 19px rgba(22, 163, 74, .17) !important;
}

body.light .plan-card .btn-primary-modern:hover {
  background: #15803d !important;
  border-color: #15803d !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 11px 23px rgba(22, 163, 74, .21) !important;
}

body.light .hosting-group-note {
  margin-top: 23px !important;
  color: #64748b !important;
  font-size: .84rem !important;
  line-height: 1.45 !important;
}

@media (max-width: 640px) {
  body.light .hosting-plan-grid > .plan-card,
  body.light .public-plan-grid > .plan-card {
    padding: 23px 21px 21px !important;
    border-radius: 17px !important;
  }

  body.light .plan-card h3 {
    font-size: 1.45rem !important;
  }

  body.light .plan-card .price {
    font-size: 1.58rem !important;
  }

  body.light .plan-card .popular-badge {
    right: 16px !important;
  }
}

/* =========================================================
   ACCESSIBILITY CONTRAST — 2026-08-15
   Keeps the approved green palette while meeting stronger
   contrast on small text and primary actions.
   ========================================================= */
body.light .eyebrow {
  color: #15803d;
}

body.light .btn-primary-modern,
body.light a.btn-primary-modern,
body.light button.btn-primary-modern {
  background: #15803d;
  border-color: #15803d;
  color: #ffffff;
}

body.light .btn-primary-modern:hover,
body.light .btn-primary-modern:focus,
body.light a.btn-primary-modern:hover,
body.light a.btn-primary-modern:focus,
body.light button.btn-primary-modern:hover,
body.light button.btn-primary-modern:focus {
  background: #166534;
  border-color: #166534;
  color: #ffffff;
}

body.light .footer-bottom p,
body.light .footer-links a,
body.light .footer-consumer-links a {
  color: #526176 !important;
}

body.light .footer-consumer-links a:hover,
body.light .footer-consumer-links a:focus {
  color: #166534 !important;
}

/* ===== responsive.css ===== */
/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1199.98px) {
  .hero-grid,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .floating-a {
    left: 0;
  }

  .floating-b {
    right: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 56px;
  }

  body {
    padding-top: var(--header-height);
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(10, 16, 29, 0.94);
    border: 1px solid var(--surface-line);
  }

  .navbar-nav {
    align-items: stretch !important;
  }

  .navbar-dark .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-section {
    padding-top: 36px;
  }

  .services-grid,
  .plans-grid,
  .support-grid,
  .help-grid,
  .infrastructure-grid {
    grid-template-columns: 1fr;
  }

  .login-cta {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }

  body.light .navbar-collapse {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--surface-line);
    box-shadow: var(--shadow-md);
  }

  body.light .navbar-collapse .nav-link {
    color: var(--text);
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 72px 0;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .trust-row {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }

  .panel-body {
    padding: 1rem;
  }

  .service-card,
  .support-card,
  .plan-card,
  .infra-card,
  .login-cta,
  .info-card {
    padding: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .btn,
  .btn-lg {
    width: 100%;
    display: inline-flex;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .trust-item {
    width: 100%;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark svg {
    width: 18px;
    height: 18px;
  }
}


/* ========================================
   BAIRESWEB BRAND REFINEMENT · 2026-08-28
   Compact header + more delicate footer.
======================================== */
.site-header .navbar {
  min-height: var(--header-height);
}

.site-header .site-brand-logo {
  display: block;
  width: 168px;
  height: auto;
}

.site-header .navbar-dark .navbar-nav .nav-link {
  font-size: .82rem;
  padding: .30rem .52rem;
}

.site-header .navbar-nav {
  gap: .32rem !important;
}

.site-header .nav-item.ms-lg-2 {
  margin-left: .38rem !important;
}

.site-header .btn-primary-modern {
  min-height: 29px;
  padding: .34rem .72rem;
  border-radius: 9px;
  font-size: .79rem;
  line-height: 1.05;
}

.site-footer {
  padding: 48px 0 22px;
}

.site-footer .footer-grid {
  gap: 24px;
}

.site-footer .footer-brand-logo {
  display: block;
  width: 136px;
  height: auto;
}

.site-footer .footer-copy {
  max-width: 330px;
  margin-top: .82rem;
  font-size: .86rem;
  line-height: 1.55;
}

.site-footer h3 {
  margin-bottom: .72rem;
  font-size: .86rem;
  font-weight: 650;
}

.site-footer ul {
  gap: .56rem;
}

.site-footer li,
.site-footer a {
  font-size: .86rem;
  line-height: 1.45;
}

.site-footer .footer-bottom {
  gap: 14px;
  margin-top: 30px;
  padding-top: 18px;
}

.site-footer .footer-bottom p,
.site-footer .footer-links a {
  font-size: .80rem;
}

.site-footer .footer-links {
  gap: .9rem;
}

.site-footer .footer-consumer-links {
  gap: 10px;
  margin-top: 6px;
}

.site-footer .footer-consumer-links a {
  font-size: .62rem;
  letter-spacing: .015em;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .site-header .site-brand-logo {
    width: 155px;
    height: auto;
  }

  .site-header .navbar-collapse {
    margin-top: .6rem;
  }

  .site-footer {
    padding-top: 42px;
  }
}
