/*
Theme Name: ASRU Tecnologia
Theme URI: https://asru.ca
Author: ASRU Inc.
Author URI: https://asru.ca
Description: ASRU Inc. — Agile Solutions R US. A modern IT services & consulting theme with a clean blue-navy color scheme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: asru-tecnologia
Tags: business, it-services, consulting, full-width-template, custom-menu, custom-logo, footer-widgets
*/

/* ================================================================
   ASRU Tecnologia WordPress Theme — Main Stylesheet
   ================================================================ */

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

:root {
  --blue:       #1a56e8;
  --blue-dark:  #1240c0;
  --blue-light: #e8f0fe;
  --blue-mid:   #3b72f0;
  --cyan:       #0ea5e9;
  --navy:       #0d1f3c;
  --text:       #1e293b;
  --sub:        #475569;
  --muted:      #94a3b8;
  --border:     #e2e8f0;
  --bg:         #ffffff;
  --bg2:        #f8fafc;
  --bg3:        #f1f5f9;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(26,86,232,0.09);
  --shadow-lg:  0 16px 60px rgba(26,86,232,0.14);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }

/* ─── UTILITY ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue-light); border-radius: 100px;
  padding: 0.35rem 1rem; font-size: 0.76rem; font-weight: 600;
  color: var(--blue); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.label-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; }

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--navy);
  letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title span { color: var(--blue); }

.section-sub {
  font-size: 1rem; color: var(--sub);
  line-height: 1.75; max-width: 580px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

section {
  padding: 5rem 5%;
}

/* ─── BUTTONS ─── */
.btn-blue {
  background: var(--blue); color: #fff;
  padding: 0.85rem 1.9rem; border-radius: 8px;
  font-weight: 700; font-size: 0.93rem;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(26,86,232,0.3);
  border: none; cursor: pointer;
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,232,0.35); color: #fff; }

.btn-ghost {
  background: transparent; color: var(--navy);
  padding: 0.85rem 1.9rem; border-radius: 8px;
  font-weight: 600; font-size: 0.93rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn-white {
  background: #fff; color: var(--blue);
  padding: 0.9rem 1.8rem; border-radius: 8px;
  font-weight: 700; font-size: 0.93rem;
  text-decoration: none; display: inline-block;
  transition: transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); color: var(--blue); }

.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 0.9rem 1.8rem; border-radius: 8px;
  font-weight: 600; font-size: 0.93rem;
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s;
  white-space: nowrap;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ─── NAVIGATION ─── */
#site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  max-width: 100%;
}

.site-branding a.logo-wrap,
.site-branding > a {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

/* Outer flex row holding logo image + text side by side */
.logo-wrap {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

/* Wrapper that constrains the custom logo image to nav height */
.logo-img-wrap {
  display: flex; align-items: center;
  height: 40px;
  flex-shrink: 0;
}
/* WP injects its own <a> around the img — make it inline-flex so it doesn't break the row */
.logo-img-wrap a {
  display: inline-flex !important;
  align-items: center;
  height: 40px;
  line-height: 0;
}
.logo-img-wrap img {
  display: block !important;
  height: 40px !important;
  width: auto  !important;
  max-height: 40px !important;
  max-width: 120px !important;
  object-fit: contain;
}

/* Text link beside the logo — no underline, inherits flex row */
.logo-text-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-mark-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.site-branding .logo-mark {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-initials {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; color: #fff; letter-spacing: -0.02em;
}
.logo-text .logo-main { font-weight: 800; font-size: 1.1rem; color: var(--navy); letter-spacing: -0.01em; display: block; }
.logo-text .logo-sub  { font-size: 0.62rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; display: block; line-height: 1; }

#primary-navigation { display: flex; align-items: center; gap: 0.25rem; }
#primary-navigation ul { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
#primary-navigation ul li a {
  font-size: 0.87rem; font-weight: 500; color: var(--sub);
  text-decoration: none; padding: 0.45rem 0.85rem; border-radius: 7px;
  transition: background 0.15s, color 0.15s; display: block;
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item > a { background: var(--bg3); color: var(--navy); }

.nav-cta-wrap { margin-left: 0.75rem; }
.nav-cta {
  background: var(--blue) !important; color: #fff !important;
  padding: 0.55rem 1.25rem !important; border-radius: 8px !important;
  font-weight: 600 !important; font-size: 0.87rem !important;
  text-decoration: none; display: inline-block;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; color: #fff !important; }

.menu-toggle {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: 7px; padding: 0.45rem 0.6rem; cursor: pointer; color: var(--navy);
}

/* ─── HERO ─── */
.hero-section {
  background: linear-gradient(160deg, #f0f5ff 0%, #ffffff 55%, #f8fafc 100%);
  padding: 7rem 5% 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,232,0.07), transparent 70%);
  top: -120px; right: -100px; pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.08), transparent 70%);
  bottom: -80px; left: 5%; pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue-light); border-radius: 100px;
  padding: 0.35rem 1rem; font-size: 0.76rem; font-weight: 600;
  color: var(--blue); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.badge-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; }

.hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--navy);
  animation: fadeUp 0.6s 0.08s ease both;
}
.hero-content h1 span { color: var(--blue); }

.hero-sub {
  margin-top: 1.4rem; font-size: 1.05rem; font-weight: 400;
  color: var(--sub); line-height: 1.75; max-width: 500px;
  animation: fadeUp 0.6s 0.16s ease both;
}

.hero-actions {
  display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.24s ease both;
}

.hero-trust {
  display: flex; align-items: center; gap: 1.2rem;
  margin-top: 2.5rem; font-size: 0.82rem; color: var(--muted);
  animation: fadeUp 0.6s 0.32s ease both;
}
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #fff; margin-left: -8px; display: flex;
  align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: #fff;
}
.trust-avatars span:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg,#6366f1,#8b5cf6); }
.av2 { background: linear-gradient(135deg,#0ea5e9,#06b6d4); }
.av3 { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.av4 { background: linear-gradient(135deg,#10b981,#059669); }

/* Hero dashboard visual */
.hero-visual { position: relative; animation: fadeUp 0.7s 0.1s ease both; }

.dashboard-card {
  background: #fff; border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); overflow: hidden;
}
.dash-header {
  background: var(--navy); padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.dash-dots { display: flex; gap: 0.4rem; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.ddr { background: #ff5f57; } .ddy { background: #febc2e; } .ddg { background: #28c840; }
.dash-title { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; text-transform: uppercase; }
.dash-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; }
.dash-stat {
  background: var(--bg2); border-radius: 10px; padding: 1rem;
  border: 1px solid var(--border); text-align: center;
}
.ds-num { font-size: 1.5rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.ds-num span { color: var(--blue); }
.ds-label { font-size: 0.7rem; color: var(--muted); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.05em; }
.dash-chart { background: var(--bg2); border-radius: 10px; padding: 1rem; border: 1px solid var(--border); }
.chart-label { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.bar-rows { display: flex; flex-direction: column; gap: 0.45rem; }
.bar-row { display: flex; align-items: center; gap: 0.6rem; }
.bar-name { font-size: 0.75rem; color: var(--sub); width: 80px; flex-shrink: 0; }
.bar-track { flex: 1; background: var(--border); border-radius: 100px; height: 8px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.bar-val { font-size: 0.75rem; color: var(--navy); font-weight: 600; width: 30px; text-align: right; }
.dash-services { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.ds-chip {
  display: flex; align-items: center; gap: 0.6rem;
  background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 0.65rem 0.85rem;
}
.ds-chip-icon { font-size: 1rem; }
.ds-chip-text { font-size: 0.78rem; font-weight: 600; color: var(--navy); }

.float-badge {
  position: absolute; background: #fff; border-radius: 12px;
  padding: 0.65rem 1rem; box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border: 1px solid var(--border); display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; color: var(--navy); white-space: nowrap;
}
.fb1 { bottom: -18px; left: -20px; }
.fb2 { top: -18px; right: -10px; }
.fb-icon { font-size: 1.1rem; }

.uptime-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; color: #16a34a; font-weight: 600;
}
.uptime-dot { width: 7px; height: 7px; background: #16a34a; border-radius: 50%; animation: pulseGreen 2s infinite; }

@keyframes pulseGreen { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.6)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

/* ─── CLIENTS TICKER ─── */
.clients-bar {
  background: var(--bg2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 5%; overflow: hidden;
}
.clients-inner { display: flex; align-items: center; gap: 3rem; }
.clients-label { font-size: 0.75rem; font-weight: 600; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.clients-track { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; flex: 1; }
.client-logo-item {
  display: inline-flex; align-items: center;
  opacity: 0.75; transition: opacity 0.2s;
  white-space: nowrap;
}
.client-logo-item:hover { opacity: 1; }

/* ─── SERVICES ─── */
.services-section { background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }

.service-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 1.8rem;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(26,86,232,0.2); transform: translateY(-4px); }
.service-icon-wrap {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--blue-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 1.1rem;
}
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.875rem; color: var(--sub); line-height: 1.7; }
.service-link { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 1rem; font-size: 0.83rem; font-weight: 600; color: var(--blue); }
.service-link:hover { text-decoration: underline; }

/* ─── SOLUTIONS TABS ─── */
.solutions-section { background: #fff; }
.sol-tabs { display: flex; gap: 0.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.sol-btn {
  padding: 0.6rem 1.3rem; border-radius: 8px; font-size: 0.875rem; font-weight: 600;
  color: var(--sub); background: var(--bg2); border: 1px solid var(--border);
  cursor: pointer; transition: all 0.2s;
}
.sol-btn:hover { color: var(--blue); border-color: rgba(26,86,232,0.3); }
.sol-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.sol-panels { margin-top: 2rem; }
.sol-panel { display: none; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.sol-panel.active { display: grid; }
.sol-img-mock {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  line-height: 0;
  background: #f0f5ff;
}
.sol-img-mock svg { display: block; width: 100%; height: auto; }
.sol-img-mock .mock-icon { display: none; }
.sol-content h3 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.02em; }
.sol-content p  { font-size: 0.9rem; color: var(--sub); line-height: 1.8; margin-bottom: 1rem; }
.sol-feats { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin: 1.2rem 0; }
.sol-feats li { font-size: 0.875rem; color: var(--sub); display: flex; align-items: center; gap: 0.6rem; }
.sol-feats li::before { content:'✓'; color: var(--blue); font-weight: 700; }
.sol-cta { display: inline-block; margin-top: 0.5rem; font-size: 0.88rem; font-weight: 600; color: var(--blue); text-decoration: none; }
.sol-cta:hover { text-decoration: underline; }

/* ─── NUMBERS ─── */
.numbers-section { background: var(--bg2); }
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.num-card {
  text-align: center; background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 2rem;
  transition: box-shadow 0.2s;
}
.num-card:hover { box-shadow: var(--shadow); }
.num-val { font-size: 2.6rem; font-weight: 800; color: var(--navy); letter-spacing: -0.04em; }
.num-val span { color: var(--blue); }
.num-label { font-size: 0.83rem; color: var(--muted); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.07em; }

/* ─── PORTFOLIO ROTATOR ─── */
.portfolio-section { background: var(--bg2); }
.portfolio-rotator {
  position: relative; margin-top: 3rem;
  overflow: hidden; border-radius: 20px;
}
.portfolio-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.portfolio-slide {
  min-width: 100%; display: grid;
  grid-template-columns: 1.4fr 1fr;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ps-image {
  position: relative; overflow: hidden;
  background: var(--bg2); min-height: 380px;
}
.ps-thumb {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform 6s ease;
}
.portfolio-slide:hover .ps-thumb { transform: translateY(-4%); }
.ps-thumb-placeholder {
  width: 100%; height: 100%; min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg2);
}
.ps-tag {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--navy); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.85rem; border-radius: 100px;
}
.ps-content {
  padding: 3rem 2.5rem; display: flex;
  flex-direction: column; justify-content: center; gap: 1rem;
}
.ps-content h3 {
  font-size: 1.6rem; font-weight: 800;
  color: var(--navy); letter-spacing: -0.03em; margin: 0;
}
.ps-content p {
  font-size: 0.92rem; color: var(--sub);
  line-height: 1.75; margin: 0;
}
.ps-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--blue); font-size: 0.88rem; font-weight: 700;
  text-decoration: none; margin-top: 0.5rem;
  transition: gap 0.2s;
}
.ps-link:hover { gap: 0.75rem; }

/* Arrows */
.portfolio-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--border);
  box-shadow: var(--shadow); cursor: pointer; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  z-index: 10;
}
.portfolio-arrow:hover {
  background: var(--blue); border-color: var(--blue); color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.pa-prev { left: 1.2rem; }
.pa-next { right: 1.2rem; }

/* Dots */
.portfolio-dots {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-top: 1.5rem; padding-bottom: 0.5rem;
}
.pd-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s; padding: 0;
}
.pd-dot.active {
  background: var(--blue); transform: scale(1.3);
}

@media (max-width: 768px) {
  .portfolio-slide { grid-template-columns: 1fr; }
  .ps-image { min-height: 220px; }
  .ps-content { padding: 1.8rem; }
  .ps-content h3 { font-size: 1.25rem; }
  .pa-prev { left: 0.5rem; }
  .pa-next { right: 0.5rem; }
}


.hosting-section { background: #fff; }
.hosting-inner {
  display: grid; grid-template-columns: 1fr 400px; gap: 5rem; align-items: start;
}

/* Benefit rows — tall, spacious, with left border accent */
.hosting-benefits-list { display: flex; flex-direction: column; gap: 0; }
.hb-row {
  display: flex; gap: 1.4rem; align-items: flex-start;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
}
.hb-row:first-child { border-top: 1px solid var(--border); }
.hb-icon-lg {
  font-size: 1.6rem; flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.hb-text strong {
  display: block; font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.45rem;
}
.hb-text span { font-size: 0.9rem; color: var(--sub); line-height: 1.75; }

/* Right CTA panel */
.hosting-cta-panel { position: sticky; top: 100px; }
.hcp-inner {
  background: linear-gradient(155deg, var(--navy) 0%, var(--blue-dark) 100%);
  border-radius: 20px; padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.hcp-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.12); border-radius: 100px;
  padding: 0.3rem 1rem; font-size: 0.72rem; font-weight: 700;
  color: rgba(255,255,255,0.8); letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hcp-inner h3 {
  font-size: 1.45rem; font-weight: 800; color: #fff;
  letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 1rem;
}
.hcp-inner p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 1.5rem; }
.hcp-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.hcp-list li { font-size: 0.88rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.hcp-email {
  display: block; text-align: center; margin-top: 1rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.2s;
}
.hcp-email:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 1024px) {
  .hosting-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hosting-cta-panel { position: static; }
}

/* ─── WEB DESIGN ─── */
.webdesign-section { background: var(--bg2); }
.wd-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.wd-browser { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.wb-bar {
  background: #f1f5f9; padding: 0.7rem 1rem;
  display: flex; align-items: center; gap: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.wb-dot { width: 10px; height: 10px; border-radius: 50%; }
.wbd1{background:#ff5f57;} .wbd2{background:#febc2e;} .wbd3{background:#28c840;}
.wb-url { margin-left: 0.7rem; flex: 1; background: #fff; border: 1px solid var(--border); border-radius: 5px; padding: 0.28rem 0.75rem; font-size: 0.74rem; color: var(--muted); }
.wb-body { background: #fff; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; height: 300px; }
.wbb-hero { background: linear-gradient(110deg, var(--blue-light), #e0f2fe); border-radius: 10px; padding: 1.4rem; flex: 1; }
.ml { height: 9px; border-radius: 100px; background: rgba(26,86,232,0.15); margin-bottom: 0.55rem; }
.ml.a { width: 40%; background: rgba(26,86,232,0.5); }
.ml.b { width: 70%; }
.ml.c { width: 52%; }
.mb-row { display: flex; gap: 0.5rem; margin-top: 1rem; }
.mb { height: 28px; border-radius: 6px; }
.mb.p { width: 80px; background: var(--blue); }
.mb.s { width: 70px; background: rgba(26,86,232,0.12); }
.wbb-cards { display: flex; gap: 0.7rem; }
.wbb-card { flex: 1; height: 58px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg2); }
.wd-points { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.wd-point { display: flex; gap: 1rem; align-items: flex-start; }
.wd-num {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 800; color: var(--blue);
}
.wd-point-text strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.wd-point-text span { font-size: 0.875rem; color: var(--sub); line-height: 1.6; }

/* ─── EMAIL ─── */
.email-section { background: #fff; }
.email-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3rem; }
.em-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.em-card:hover { box-shadow: var(--shadow); border-color: rgba(26,86,232,0.2); }
.em-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; margin-bottom: 1.1rem;
}
.em-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.em-card p  { font-size: 0.875rem; color: var(--sub); line-height: 1.7; }

/* ─── PROCESS ─── */
.process-section { background: var(--bg2); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; margin-top: 3rem; }
.process-grid::before {
  content: '';
  position: absolute; top: 28px; left: 14%; right: 14%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue) 0, var(--blue) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.proc-card { text-align: center; position: relative; z-index: 1; }
.proc-num {
  width: 56px; height: 56px; border-radius: 50%; background: #fff;
  border: 2px solid var(--border); margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: var(--blue);
  transition: background 0.2s, border-color 0.2s;
}
.proc-card:hover .proc-num { background: var(--blue); color: #fff; border-color: var(--blue); }
.proc-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.proc-desc  { font-size: 0.835rem; color: var(--sub); line-height: 1.65; }

/* ─── CTA BANNER ─── */
.cta-banner-section {
  background: var(--bg);
  padding: 0 5% 5rem;
}
.cta-banner {
  background: linear-gradient(130deg, var(--navy) 0%, var(--blue-dark) 50%, #1565d3 100%);
  border-radius: 20px;
  padding: 4rem 5%;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3rem;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 60%);
  top: -120px; right: 100px;
}
.cta-banner::after {
  content: ''; position: absolute; width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.18), transparent 60%);
  bottom: -80px; left: 30%;
}
.cta-banner h2 { font-size: clamp(1.7rem,2.8vw,2.3rem); color: #fff; letter-spacing: -0.02em; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-top: 0.7rem; font-size: 0.97rem; line-height: 1.7; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─── FOOTER ─── */
#colophon {
  background: var(--navy);
  padding: 4rem 5% 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.2rem; }
.footer-logo .logo-main { font-weight: 800; font-size: 1.1rem; color: #fff; white-space: nowrap; }
.footer-logo .logo-sub  { color: rgba(255,255,255,0.4); white-space: nowrap; }
.footer-logo a { display: inline-flex; align-items: center; flex-shrink: 0; }
.footer-logo a img { height: 40px !important; width: auto !important; max-width: 120px !important; display: block; }
.footer-brand-desc { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; padding: 0; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; font-size: 0.8rem; color: rgba(255,255,255,0.3);
}
.footer-legal-links { display: flex; align-items: center; gap: 0.6rem; }
.footer-legal-links a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }
.footer-legal-sep { color: rgba(255,255,255,0.2); }

/* ─── LEGAL PAGES ─── */
.legal-page { padding-bottom: 5rem; }
.legal-hero {
  background: linear-gradient(160deg, #0d1f3c 0%, #1a3260 100%);
  padding: 5rem 5% 4rem; text-align: center;
}
.legal-hero .section-label { justify-content: center; margin-bottom: 1rem; }
.legal-hero .label-dot { background: rgba(255,255,255,0.4); }
.legal-hero .section-label { color: rgba(255,255,255,0.55); }
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  color: #fff; letter-spacing: -0.03em; margin: 0 0 0.75rem;
}
.legal-hero p { color: rgba(255,255,255,0.45); font-size: 0.9rem; margin: 0; }
.legal-wrap {
  max-width: 780px; margin: 0 auto;
  padding: 3rem 0 2rem;
}
.legal-intro {
  background: var(--blue-light); border-left: 4px solid var(--blue);
  border-radius: 0 8px 8px 0; padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.legal-intro p { margin: 0; color: var(--navy); font-size: 0.95rem; line-height: 1.75; }
.legal-section { margin-bottom: 2.25rem; }
.legal-section h2 {
  font-size: 1.1rem; font-weight: 700; color: var(--navy);
  margin: 0 0 0.75rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-section p { color: var(--sub); line-height: 1.8; margin: 0 0 0.75rem; font-size: 0.95rem; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { padding-left: 1.4rem; margin: 0.5rem 0 0.75rem; }
.legal-section ul li { color: var(--sub); line-height: 1.75; margin-bottom: 0.4rem; font-size: 0.95rem; }
.legal-section a { color: var(--blue); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }
.legal-contact-box {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.25rem 1.5rem;
  color: var(--sub); font-size: 0.95rem; line-height: 1.9;
  margin-top: 0.75rem;
}
.legal-contact-box strong { color: var(--navy); }
.legal-contact-box a { color: var(--blue); text-decoration: none; }

/* ─── INNER PAGES ─── */
.page-hero {
  background: linear-gradient(160deg, #f0f5ff 0%, #ffffff 70%);
  padding: 5rem 5% 4rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.page-hero p { margin-top: 1rem; font-size: 1rem; color: var(--sub); max-width: 560px; margin-left: auto; margin-right: auto; }

.content-area { padding: 4rem 5%; max-width: 800px; margin: 0 auto; }
.content-area h1,.content-area h2,.content-area h3 { color: var(--navy); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.75rem; margin-top: 2rem; }
.content-area p { color: var(--sub); line-height: 1.85; margin-bottom: 1.2rem; }
.content-area ul,.content-area ol { color: var(--sub); line-height: 1.85; padding-left: 1.5rem; margin-bottom: 1.2rem; }

/* ─── CONTACT PAGE ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 4rem 5%; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 0.9rem; color: var(--text);
  background: var(--bg); margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--blue); outline: none; }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form label { font-size: 0.83rem; font-weight: 600; color: var(--sub); display: block; margin-bottom: 0.35rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 5%; }
  .hero-section { padding: 4rem 5% 3rem; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .clients-track { gap: 1.5rem; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .sol-panel.active { grid-template-columns: 1fr; }
  .sol-img-mock { display: none; }
  .wd-split { grid-template-columns: 1fr; gap: 2rem; }
  .email-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .cta-banner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  #primary-navigation { display: none; }
  #primary-navigation.active { display: flex; flex-direction: column; align-items: flex-start; position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 1rem 5%; }
  #primary-navigation.active ul { flex-direction: column; width: 100%; }
  .menu-toggle { display: block; }
  .nav-cta-wrap { display: none; }
}

@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-btns { flex-direction: column; }
}

/* ─── QUICK CONTACT MODAL ─── */
.asru-modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(13,31,60,0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.asru-modal-overlay.active {
  opacity: 1; pointer-events: all;
}
.asru-modal {
  background: #fff; border-radius: 20px;
  width: 100%; max-width: 520px;
  padding: 2.2rem; position: relative;
  box-shadow: 0 24px 80px rgba(13,31,60,0.22);
  transform: translateY(20px);
  transition: transform 0.25s ease;
}
.asru-modal-overlay.active .asru-modal {
  transform: translateY(0);
}
.asru-modal-close {
  position: absolute; top: 1.1rem; right: 1.2rem;
  background: var(--bg3); border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 1.1rem; line-height: 1;
  color: var(--sub); cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.asru-modal-close:hover { background: var(--border); color: var(--navy); }

.asru-modal-header {
  display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.5rem;
}
.asru-modal-header h3 {
  font-size: 1.15rem; font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; margin: 0 0 0.15rem;
}
.asru-modal-header p { font-size: 0.82rem; color: var(--muted); margin: 0; }

.asru-modal-response {
  padding: 0.85rem 1rem; border-radius: 8px;
  font-size: 0.875rem; font-weight: 500; margin-bottom: 1.2rem;
}
.asru-modal-response-error { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

.asru-modal-form { display: flex; flex-direction: column; gap: 1rem; }
.asru-modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.asru-modal-field { display: flex; flex-direction: column; gap: 0.3rem; }
.asru-modal-field label {
  font-size: 0.8rem; font-weight: 600; color: var(--sub);
}
.asru-modal-field input,
.asru-modal-field select,
.asru-modal-field textarea {
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 0.875rem; color: var(--text);
  background: var(--bg); transition: border-color 0.2s;
  width: 100%;
}
.asru-modal-field input:focus,
.asru-modal-field select:focus,
.asru-modal-field textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(26,86,232,0.08); }
.asru-modal-field textarea { min-height: 100px; resize: vertical; }
.asru-modal-submit { width: 100%; text-align: center; padding: 0.9rem; font-size: 0.95rem; }
.asru-modal-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none !important; }

/* reCAPTCHA v3 required branding notice */
.asru-recaptcha-notice {
  font-size: 0.72rem; color: var(--muted); line-height: 1.6;
  text-align: center; margin: 0.5rem 0 0;
}
.asru-recaptcha-notice a {
  color: var(--muted); text-decoration: underline;
  text-underline-offset: 2px; transition: color 0.15s;
}
.asru-recaptcha-notice a:hover { color: var(--blue); }

/* Success state */
.asru-modal-success-state {
  text-align: center; padding: 1.5rem 0.5rem 0.5rem;
}
.asru-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff; font-size: 1.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 24px rgba(26,86,232,0.3);
}
.asru-modal-success-state h4 {
  font-size: 1.3rem; font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; margin-bottom: 0.5rem;
}
.asru-modal-success-state p {
  font-size: 0.9rem; color: var(--sub); line-height: 1.7;
}

@media (max-width: 480px) {
  .asru-modal-row { grid-template-columns: 1fr; }
  .asru-modal { padding: 1.6rem; }
}

/* reCAPTCHA v3 badge — hidden; required disclosure text shown in contact modal instead */
.grecaptcha-badge { visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }

/* ─── FLOATING CHAT BUTTON ─── */
#asru-chat-widget {
  position: fixed; bottom: 28px; right: 28px; z-index: 8000;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem;
}

#asru-chat-tooltip {
  background: var(--navy); color: #fff;
  font-size: 0.82rem; font-weight: 600;
  padding: 0.55rem 1rem; border-radius: 100px;
  box-shadow: 0 4px 20px rgba(13,31,60,0.22);
  white-space: nowrap;
  opacity: 0; transform: translateX(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
#asru-chat-widget:hover #asru-chat-tooltip,
#asru-chat-widget.show-tip #asru-chat-tooltip {
  opacity: 1; transform: translateX(0);
}

#asru-chat-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(26,86,232,0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
#asru-chat-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 36px rgba(26,86,232,0.52);
}
#asru-chat-btn:active { transform: scale(0.97); }

/* Pulse ring animation */
.chat-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--blue);
  animation: chatPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes chatPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.6); opacity: 0;   }
  100% { transform: scale(1.6); opacity: 0;   }
}
.wp-block-image img { border-radius: var(--radius); }
.alignnone { margin: 1.5rem 0; }
.aligncenter { display: block; margin: 1.5rem auto; text-align: center; }
.alignleft { float: left; margin: 0.5rem 1.5rem 1rem 0; }
.alignright { float: right; margin: 0.5rem 0 1rem 1.5rem; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute !important; width: 1px; }
