:root {
  --navy-950: #041127;
  --navy-900: #071b3b;
  --navy-800: #0b2852;
  --blue-700: #075eb6;
  --blue-600: #0878df;
  --blue-500: #11a2f5;
  --blue-300: #86d5ff;
  --blue-100: #e8f6ff;
  --slate-900: #10213c;
  --slate-700: #40506a;
  --slate-600: #637086;
  --slate-400: #9aa8bb;
  --line: #dbe7f3;
  --surface: #f5f9fd;
  --white: #ffffff;
  --success: #18a66c;
  --shadow-sm: 0 10px 30px rgba(4, 23, 55, .08);
  --shadow-md: 0 22px 70px rgba(4, 23, 55, .14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
p { line-height: 1.72; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 110px 0; overflow: hidden; }
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 1000;
  padding: 12px 18px; background: var(--navy-900); color: #fff; border-radius: 10px;
}
.skip-link:focus { top: 16px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px; color: var(--blue-700);
  font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--blue-500); border-radius: 99px; }
.eyebrow.light { color: var(--blue-300); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.65rem, 5.3vw, 5.15rem); line-height: .99; letter-spacing: -.055em; margin-bottom: 25px; }
h1 span, h2 span { color: var(--blue-600); }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); line-height: 1.08; letter-spacing: -.045em; margin-bottom: 20px; }
h3 { font-size: 1.17rem; line-height: 1.35; letter-spacing: -.02em; }
.section-heading { max-width: 780px; margin: 0 auto 54px; text-align: center; }
.section-heading p { max-width: 670px; margin: 0 auto; color: var(--slate-600); font-size: 1.04rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border: 1px solid transparent;
  border-radius: 12px; font-weight: 800; transition: .25s ease; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  color: #fff; background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 12px 24px rgba(8, 120, 223, .24);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 17px 32px rgba(8, 120, 223, .32); }
.btn-secondary { color: var(--blue-700); background: #fff; border-color: #bcdcf6; }
.btn-secondary:hover { border-color: var(--blue-600); background: var(--blue-100); transform: translateY(-2px); }
.btn-light { color: var(--navy-900); background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.btn-light:hover { transform: translateY(-2px); background: #f5fbff; }
.btn-lg { min-height: 56px; padding-inline: 28px; border-radius: 14px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); border-bottom: 1px solid rgba(219, 231, 243, .75);
  backdrop-filter: blur(16px);
}
.header-inner { height: 84px; display: flex; align-items: center; gap: 30px; }
.brand { width: 158px; flex: 0 0 auto; }
.brand img { width: 100%; height: 62px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.main-nav a {
  position: relative; padding: 12px 0; color: var(--slate-700); font-weight: 700; font-size: .94rem;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 2px; border-radius: 99px; background: var(--blue-600);
  transform: scaleX(0); transition: .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue-700); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.header-cta { margin-left: 4px; }
.quick-access-shell {
  border-top: 1px solid rgba(219, 231, 243, .65);
  background: linear-gradient(90deg, var(--navy-950), var(--navy-800));
}
.quick-access {
  min-height: 52px; display: flex; align-items: center; justify-content: flex-end; gap: 10px;
}
.quick-access-single { justify-content: flex-end; }
.quick-access-label { margin-right: auto; color: rgba(255,255,255,.55); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.quick-access-btn {
  display: inline-flex; align-items: center; gap: 8px; min-height: 36px; padding: 0 15px;
  color: #fff; border: 1px solid rgba(255,255,255,.16); border-radius: 10px;
  background: rgba(255,255,255,.08); font-size: .78rem; font-weight: 800; transition: .23s ease;
}
.quick-access-btn:hover { transform: translateY(-1px); border-color: rgba(134,213,255,.65); background: rgba(17,162,245,.22); }
.quick-access-btn svg { width: 17px; height: 17px; color: var(--blue-300); }
.quick-access-plans { border-color: rgba(17,162,245,.72); background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); box-shadow: 0 7px 18px rgba(17,162,245,.18); }
.menu-toggle {
  display: none; width: 44px; height: 44px; padding: 10px;
  border: 0; border-radius: 10px; background: var(--blue-100);
}
.menu-toggle span { display: block; height: 2px; background: var(--navy-900); margin: 5px 0; transition: .25s; }

.hero { padding-top: 85px; padding-bottom: 95px; background: linear-gradient(145deg, #fff 0%, #f5faff 55%, #eef8ff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; }
.hero-copy { position: relative; z-index: 2; }
.hero-text { max-width: 670px; color: var(--slate-600); font-size: 1.12rem; margin-bottom: 25px; }
.offer-card {
  display: inline-flex; align-items: center; gap: 16px; max-width: 570px;
  margin-bottom: 18px; padding: 17px 20px; color: #fff;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
  border-radius: 16px; box-shadow: var(--shadow-sm);
}
.offer-card strong { display: block; font-size: 1.02rem; line-height: 1.4; }
.offer-card small { display: block; margin-top: 3px; color: rgba(255,255,255,.66); }
.offer-icon {
  width: 47px; height: 47px; flex: 0 0 47px; display: grid; place-items: center;
  border-radius: 13px; color: var(--blue-300); background: rgba(255,255,255,.12);
}
.offer-icon svg { width: 26px; height: 26px; fill: currentColor; stroke: none; }
.regimes { margin: 0 0 26px; color: var(--slate-700); font-size: .94rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .btn-primary svg { width: 17px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 25px; color: var(--slate-700); font-size: .87rem; font-weight: 700; }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 17px; color: var(--success); stroke-width: 2.4; }

.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 440px; height: 440px; right: -220px; top: 40px; background: rgba(17,162,245,.10); }
.hero-glow-two { width: 260px; height: 260px; left: -150px; bottom: -80px; background: rgba(7,94,182,.07); }

.hero-visual {
  position: relative; min-height: 570px; padding: 26px;
  border-radius: 30px; color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(17,162,245,.28), transparent 33%),
    linear-gradient(145deg, #06172f, #0a2b59 65%, #075eb6);
  box-shadow: 0 45px 90px rgba(4, 26, 62, .28);
}
.hero-visual::before {
  content: ""; position: absolute; inset: 1px; border-radius: 29px;
  border: 1px solid rgba(255,255,255,.12); pointer-events: none;
}
.visual-top { display: flex; align-items: center; gap: 9px; padding-bottom: 22px; color: rgba(255,255,255,.72); font-size: .84rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #28d596; box-shadow: 0 0 0 5px rgba(40,213,150,.12); }
.live-tag { margin-left: auto; padding: 6px 10px; border-radius: 99px; color: #8ef7cc; background: rgba(40,213,150,.1); font-size: .72rem; font-weight: 800; }
.dashboard-card { position: relative; z-index: 1; background: rgba(255,255,255,.95); color: var(--slate-900); border-radius: 18px; box-shadow: 0 18px 40px rgba(2,15,33,.23); }
.dashboard-main { padding: 22px 23px 0; overflow: hidden; }
.dashboard-main > div { display: flex; flex-direction: column; }
.dashboard-label { color: var(--slate-600); font-size: .76rem; }
.dashboard-main strong { margin-top: 5px; font-size: 1.75rem; letter-spacing: -.04em; }
.dashboard-main small { color: var(--success); font-weight: 800; }
.chart { width: 100%; height: 105px; margin-top: 7px; overflow: visible; }
.chart-line { fill: none; stroke: var(--blue-600); stroke-width: 4; }
.chart-area { fill: rgba(17,162,245,.13); stroke: none; }
.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.dashboard-card.mini { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 3px 12px; padding: 15px; }
.dashboard-card.mini span { color: var(--slate-600); font-size: .76rem; }
.dashboard-card.mini strong { font-size: 1.2rem; }
.round-icon { grid-row: 1 / span 2; width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue-700); border-radius: 12px; background: var(--blue-100); }
.round-icon.success { color: var(--success); background: #e9fbf4; }
.round-icon svg { width: 22px; height: 22px; }
.activities { margin-top: 14px; padding: 18px; }
.activity-head { display: flex; align-items: flex-start; justify-content: space-between; }
.activity-head strong, .activity-head span { display: block; }
.activity-head strong { margin-top: 4px; font-size: .95rem; }
.view-all { color: var(--blue-700); font-size: .72rem; font-weight: 800; }
.activities ul { list-style: none; margin: 15px 0 0; padding: 0; }
.activities li { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 10px; padding: 10px 0; border-top: 1px solid #edf2f7; }
.activities li > span:last-child { color: var(--success); font-size: .68rem; font-weight: 800; }
.activities li > span.pending { color: #b9780b; }
.activities li div { display: flex; flex-direction: column; }
.activities li strong { font-size: .76rem; }
.activities li small { color: var(--slate-400); font-size: .65rem; }
.activity-check, .activity-clock { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; color: var(--success); background: #e9fbf4; font-size: .78rem; font-weight: 900; }
.activity-clock { color: #b9780b; background: #fff6df; }
.floating-card {
  position: absolute; right: -28px; bottom: 76px; z-index: 2;
  display: flex; align-items: center; gap: 11px; padding: 13px 16px;
  color: var(--slate-900); background: #fff; border-radius: 14px; box-shadow: var(--shadow-md);
}
.floating-card svg { width: 27px; color: var(--blue-600); }
.floating-card div { display: flex; flex-direction: column; }
.floating-card strong { font-size: .8rem; }
.floating-card small { color: var(--slate-600); font-size: .64rem; }

.benefit-strip { position: relative; z-index: 5; margin-top: -34px; }
.benefit-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); padding: 13px;
  background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm);
}
.benefit-grid article { display: flex; align-items: center; gap: 13px; min-height: 92px; padding: 13px 19px; border-right: 1px solid var(--line); }
.benefit-grid article:last-child { border-right: 0; }
.feature-icon { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; color: var(--blue-700); background: var(--blue-100); border-radius: 12px; }
.feature-icon svg { width: 23px; height: 23px; }
.benefit-grid strong { display: block; margin-bottom: 5px; font-size: .85rem; }
.benefit-grid span { display: block; color: var(--slate-600); font-size: .72rem; line-height: 1.5; }

.services { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative; min-height: 315px; padding: 30px;
  border: 1px solid var(--line); border-radius: 22px; background: #fff; transition: .28s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: #a8d8f8; box-shadow: var(--shadow-sm); }
.service-icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 24px; color: var(--blue-700); background: linear-gradient(145deg, #edf8ff, #dcefff); border-radius: 15px; }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 11px; }
.service-card p { color: var(--slate-600); font-size: .91rem; }
.service-card a { position: absolute; left: 30px; bottom: 27px; color: var(--blue-700); font-size: .83rem; font-weight: 800; }
.service-card a span { transition: .2s ease; }
.service-card a:hover span { margin-left: 4px; }
.service-card.featured { color: #fff; border-color: transparent; background: linear-gradient(145deg, var(--navy-900), var(--blue-700)); box-shadow: var(--shadow-sm); }
.service-card.featured p { color: rgba(255,255,255,.72); }
.service-card.featured a { color: #fff; }
.service-card.featured .service-icon { color: var(--blue-300); background: rgba(255,255,255,.12); }
.card-tag { position: absolute; right: 20px; top: 20px; padding: 6px 10px; color: var(--blue-300); background: rgba(255,255,255,.1); border-radius: 99px; font-size: .66rem; font-weight: 800; }

.specialist-section-single {
  background: #ffffff;
}
.specialist-single-wrap {
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}
.specialist-single-photo {
  justify-self: center;
  width: 100%;
  max-width: 470px;
}
.specialist-single-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 26%;
  display: block;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(4, 23, 55, .18);
}
.specialist-single-copy p {
  max-width: 720px;
  color: #637086;
  font-size: 1rem;
}
.specialist-single-points {
  display: grid;
  gap: 14px;
  margin: 28px 0 34px;
}
.specialist-single-points article {
  padding: 18px 20px;
  border: 1px solid #e2ebf4;
  border-radius: 16px;
  background: #f8fbff;
}
.specialist-single-points strong {
  display: block;
  margin-bottom: 6px;
  color: #10213c;
  font-size: .94rem;
}
.specialist-single-points span {
  display: block;
  color: #637086;
  font-size: .84rem;
  line-height: 1.6;
}

.differentials { background: var(--surface); }
.differentials-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 80px; }
.differentials-copy > p { color: var(--slate-600); font-size: 1.03rem; }
.differential-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; margin: 34px 0; }
.differential-list article { display: flex; align-items: flex-start; gap: 13px; }
.differential-list h3 { margin: 2px 0 5px; font-size: .94rem; }
.differential-list p { margin: 0; color: var(--slate-600); font-size: .79rem; line-height: 1.58; }

.device-wrap { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; }
.laptop { position: relative; width: 95%; filter: drop-shadow(0 30px 35px rgba(4,22,52,.21)); }
.laptop-screen { width: 100%; height: 340px; display: grid; grid-template-columns: 122px 1fr; padding: 9px; overflow: hidden; border: 9px solid #15253d; border-bottom-width: 15px; border-radius: 16px 16px 8px 8px; background: #fff; }
.laptop-base { width: 108%; height: 18px; margin-left: -4%; background: linear-gradient(#e9eef4, #aeb9c7); border-radius: 3px 3px 18px 18px; }
.app-sidebar { display: flex; flex-direction: column; gap: 8px; padding: 16px 10px; color: #9fb3cf; background: var(--navy-900); border-radius: 7px; font-size: .55rem; }
.app-sidebar img { width: 72px; height: 38px; object-fit: contain; margin: 0 auto 12px; }
.app-sidebar span { padding: 8px 9px; border-radius: 7px; }
.app-sidebar .side-active { color: #fff; background: rgba(17,162,245,.16); }
.app-content { padding: 18px; background: #f7fafc; }
.app-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.app-title div { display: flex; flex-direction: column; }
.app-title small { color: var(--slate-400); font-size: .52rem; }
.app-title strong { font-size: .84rem; }
.avatar { width: 28px; height: 28px; display: grid; place-items: center; color: #fff; background: var(--blue-600); border-radius: 50%; font-size: .5rem; font-weight: 800; }
.app-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.app-cards > div { display: flex; flex-direction: column; padding: 12px; background: #fff; border: 1px solid #edf1f5; border-radius: 9px; }
.app-cards small { color: var(--slate-400); font-size: .46rem; }
.app-cards strong { margin: 5px 0; font-size: .73rem; }
.app-cards span { color: var(--success); font-size: .46rem; font-weight: 800; }
.app-cards span.negative { color: #e05e5e; }
.app-chart { height: 112px; margin-top: 10px; padding: 11px; background: #fff; border: 1px solid #edf1f5; border-radius: 9px; }
.app-chart span { font-size: .54rem; font-weight: 700; }
.app-chart svg { width: 100%; height: 70px; }
.app-chart path { fill: none; stroke: var(--blue-600); stroke-width: 3; }
.app-list { display: flex; gap: 6px; margin-top: 10px; }
.app-list span { flex: 1; display: flex; justify-content: space-between; padding: 7px; background: #fff; border-radius: 6px; font-size: .42rem; }
.app-list b { color: var(--success); }
.phone {
  position: absolute; right: -6px; bottom: 30px; width: 140px; min-height: 286px;
  padding: 25px 13px 13px; color: var(--slate-900); background: #fff;
  border: 8px solid #17283f; border-radius: 26px; box-shadow: 0 28px 50px rgba(4,22,52,.24);
}
.phone-top { position: absolute; top: 6px; left: 50%; width: 44px; height: 5px; margin-left: -22px; background: #17283f; border-radius: 99px; }
.phone > small { color: var(--slate-400); font-size: .43rem; }
.phone > strong { display: block; margin-bottom: 10px; font-size: .7rem; }
.phone-card { display: flex; flex-direction: column; margin-bottom: 8px; padding: 10px; background: #f4f8fb; border-radius: 9px; }
.phone-card span { color: var(--slate-400); font-size: .42rem; }
.phone-card b { margin: 4px 0; font-size: .62rem; }
.phone-card em { color: var(--success); font-size: .42rem; font-style: normal; }
.phone-bars { height: 62px; display: flex; align-items: flex-end; gap: 5px; padding: 10px; background: #f4f8fb; border-radius: 9px; }
.phone-bars i { flex: 1; height: 30%; background: var(--blue-300); border-radius: 4px 4px 0 0; }
.phone-bars i:nth-child(2) { height: 55%; }
.phone-bars i:nth-child(3) { height: 44%; }
.phone-bars i:nth-child(4) { height: 78%; background: var(--blue-600); }
.phone-bars i:nth-child(5) { height: 65%; }

.client-area { background: #fff; }
.access-feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 82px; }
.access-feature-grid.reverse { grid-template-columns: 1.08fr .92fr; }
.access-feature-copy > p { color: var(--slate-600); font-size: 1.03rem; }
.access-benefits { list-style: none; margin: 26px 0 30px; padding: 0; }
.access-benefits li { display: flex; align-items: center; gap: 11px; margin: 12px 0; color: var(--slate-700); font-size: .92rem; font-weight: 650; }
.access-benefits li span { width: 24px; height: 24px; display: grid; place-items: center; flex: 0 0 24px; color: var(--success); background: #e9fbf4; border-radius: 50%; font-size: .74rem; font-weight: 900; }
.external-action svg { width: 18px; height: 18px; }
.access-dashboard { overflow: hidden; color: var(--slate-900); border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-md); }
.access-dashboard-top { min-height: 72px; display: flex; align-items: center; gap: 13px; padding: 13px 20px; color: #fff; background: linear-gradient(135deg, var(--navy-950), var(--blue-700)); }
.access-dashboard-top img { width: 46px; height: 46px; object-fit: contain; }
.access-dashboard-top div { display: flex; flex-direction: column; }
.access-dashboard-top small { color: rgba(255,255,255,.6); font-size: .65rem; }
.access-dashboard-top strong { font-size: .9rem; }
.access-dashboard-top > span { margin-left: auto; padding: 6px 10px; color: #87f0c3; background: rgba(40,213,150,.12); border-radius: 99px; font-size: .66rem; font-weight: 800; }
.access-dashboard-body { min-height: 365px; display: grid; grid-template-columns: 145px 1fr; }
.access-dashboard-body aside { display: flex; flex-direction: column; gap: 8px; padding: 24px 15px; color: #9eb1ca; background: var(--navy-900); font-size: .7rem; }
.access-dashboard-body aside b { padding: 11px; color: #fff; background: rgba(17,162,245,.15); border-radius: 8px; }
.access-dashboard-body aside span { padding: 10px 11px; }
.access-dashboard-content { padding: 25px; background: #f6f9fc; }
.welcome-line { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.welcome-line div { display: flex; flex-direction: column; }
.welcome-line small { color: var(--slate-400); font-size: .66rem; }
.welcome-line strong { font-size: 1rem; }
.welcome-line i { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; background: var(--blue-600); border-radius: 50%; font-size: .67rem; font-style: normal; font-weight: 800; }
.access-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.access-metrics article { display: flex; flex-direction: column; padding: 18px; border: 1px solid #e9eef4; border-radius: 13px; background: #fff; }
.access-metrics span { color: var(--slate-400); font-size: .63rem; }
.access-metrics strong { margin: 6px 0; font-size: 1.02rem; }
.access-metrics em { color: var(--success); font-size: .61rem; font-style: normal; font-weight: 800; }
.document-list { margin-top: 13px; padding: 18px; border: 1px solid #e9eef4; border-radius: 13px; background: #fff; }
.document-list > strong { display: block; margin-bottom: 12px; font-size: .75rem; }
.document-list > span { display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 8px; padding: 9px 0; border-top: 1px solid #eef2f6; font-size: .66rem; }
.document-list i { width: 20px; height: 20px; display: grid; place-items: center; color: var(--success); background: #e9fbf4; border-radius: 6px; font-style: normal; }
.document-list b { color: var(--success); font-size: .56rem; }

.invoice-section { color: #fff; background: linear-gradient(145deg, var(--navy-950), var(--navy-800) 55%, var(--blue-700)); }
.invoice-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 15% 50%, rgba(17,162,245,.19), transparent 30%); }
.invoice-section .access-feature-grid { position: relative; z-index: 2; }
.invoice-section .access-feature-copy > p { color: rgba(255,255,255,.7); }
.light-list li { color: rgba(255,255,255,.82); }
.invoice-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.invoice-paper { width: min(100%, 480px); padding: 30px; color: var(--slate-900); border-radius: 18px; background: #fff; box-shadow: 0 35px 70px rgba(0,0,0,.3); transform: rotate(-2deg); }
.invoice-header { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.invoice-header img { width: 44px; height: 44px; object-fit: contain; }
.invoice-header div { display: flex; flex-direction: column; }
.invoice-header small { color: var(--slate-400); font-size: .61rem; }
.invoice-header strong { font-size: .88rem; }
.invoice-header > span { margin-left: auto; padding: 7px 10px; color: var(--blue-700); background: var(--blue-100); border-radius: 8px; font-size: .7rem; font-weight: 900; }
.invoice-number { position: relative; display: flex; flex-direction: column; margin: 23px 0 18px; padding: 17px; border-radius: 12px; background: #f5f9fd; }
.invoice-number small { color: var(--slate-400); font-size: .58rem; }
.invoice-number strong { margin-top: 4px; font-size: 1.15rem; }
.invoice-number em { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); padding: 7px 10px; color: var(--success); background: #e9fbf4; border-radius: 99px; font-size: .57rem; font-style: normal; font-weight: 900; }
.invoice-lines { display: grid; gap: 8px; margin-bottom: 18px; }
.invoice-lines span { height: 7px; border-radius: 99px; background: #e9eef4; }
.invoice-lines span:nth-child(1) { width: 90%; }
.invoice-lines span:nth-child(2) { width: 76%; }
.invoice-lines span:nth-child(3) { width: 52%; }
.invoice-items { display: grid; grid-template-columns: 1.5fr .7fr; gap: 10px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.invoice-items div { display: flex; flex-direction: column; }
.invoice-items small { color: var(--slate-400); font-size: .56rem; }
.invoice-items b { margin-top: 5px; font-size: .72rem; }
.invoice-total { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; }
.invoice-total span { color: var(--slate-600); font-size: .72rem; }
.invoice-total strong { color: var(--blue-700); font-size: 1.18rem; }
.invoice-confirm { position: absolute; right: 1%; bottom: 45px; display: flex; align-items: center; gap: 12px; padding: 15px 18px; color: var(--slate-900); border-radius: 14px; background: #fff; box-shadow: var(--shadow-md); }
.invoice-confirm > span { width: 36px; height: 36px; display: grid; place-items: center; color: #fff; background: var(--success); border-radius: 50%; font-weight: 900; }
.invoice-confirm div { display: flex; flex-direction: column; }
.invoice-confirm strong { font-size: .76rem; }
.invoice-confirm small { color: var(--slate-600); font-size: .6rem; }

#planos.jk-pricing-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(17,162,245,.09), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%);
}
#planos .section-heading { margin-bottom: 48px; }
#planos .jk-pricing-stack {
  display: grid;
  gap: 28px;
  width: 100%;
}
#planos .jk-plan-group {
  width: 100%;
  overflow: hidden;
  border: 1px solid #d8e5f1;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(4, 23, 55, .08);
}
#planos .jk-plan-group-header {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  color: #ffffff;
  background: linear-gradient(135deg, #041127, #075eb6);
}
#planos .jk-plan-service .jk-plan-group-header {
  background: linear-gradient(135deg, #064b60, #0798aa);
}
#planos .jk-plan-elite .jk-plan-group-header {
  background: linear-gradient(135deg, #604510, #b28720);
}
#planos .jk-plan-group-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 15px;
  background: rgba(255,255,255,.10);
}
#planos .jk-plan-group-icon svg { width: 27px; height: 27px; }
#planos .jk-plan-group-header small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255,255,255,.68);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
#planos .jk-plan-group-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.45rem;
}
#planos .jk-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  background: #dce7f1;
}
#planos .jk-plan-card {
  position: relative;
  min-width: 0;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  padding: 31px 28px 26px;
  background: #ffffff;
}
#planos .jk-plan-card.jk-plan-highlight {
  background: linear-gradient(180deg, #edf8ff 0%, #ffffff 100%);
  box-shadow: inset 0 4px 0 #0878df;
}
#planos .jk-plan-service .jk-plan-card.jk-plan-highlight {
  box-shadow: inset 0 4px 0 #0798aa;
}
#planos .jk-plan-card > em {
  position: absolute;
  top: 14px;
  right: 18px;
  padding: 6px 10px;
  color: #075eb6;
  border-radius: 99px;
  background: #e8f6ff;
  font-size: .62rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
#planos .jk-plan-service .jk-plan-card > em {
  color: #087887;
  background: #e5fafc;
}
#planos .jk-plan-title {
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 19px 0 25px;
}
#planos .jk-plan-title span {
  color: #10213c;
  font-size: 1.35rem;
  font-weight: 800;
}
#planos .jk-plan-title strong {
  color: #075eb6;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  letter-spacing: -.04em;
  white-space: nowrap;
}
#planos .jk-plan-service .jk-plan-title strong { color: #087887; }
#planos .jk-plan-card ul {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
#planos .jk-plan-card li {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #edf2f7;
}
#planos .jk-plan-card li span {
  color: #637086;
  font-size: .76rem;
}
#planos .jk-plan-card li b {
  color: #10213c;
  font-size: .79rem;
  text-align: right;
  overflow-wrap: anywhere;
}
#planos .jk-plan-card > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 18px;
  color: #075eb6;
  border: 1px solid #b8d9f1;
  border-radius: 11px;
  background: #ffffff;
  font-size: .78rem;
  font-weight: 900;
  transition: .22s ease;
}
#planos .jk-plan-card > a:hover {
  color: #ffffff;
  border-color: #075eb6;
  background: #075eb6;
  transform: translateY(-2px);
}
#planos .jk-plan-service .jk-plan-card > a {
  color: #087887;
  border-color: #a9dfe4;
}
#planos .jk-plan-service .jk-plan-card > a:hover {
  color: #ffffff;
  border-color: #087887;
  background: #087887;
}
#planos .jk-elite-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  background: #e8dfc9;
}
#planos .jk-elite-card {
  min-width: 0;
  min-height: 138px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 24px;
  padding: 25px 28px;
  background: #fffdf8;
}
#planos .jk-elite-card div { min-width: 0; display: flex; flex-direction: column; }
#planos .jk-elite-card span {
  margin-bottom: 5px;
  color: #987116;
  font-size: .67rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
#planos .jk-elite-card strong {
  color: #10213c;
  font-size: .98rem;
  overflow-wrap: anywhere;
}
#planos .jk-elite-card > b {
  color: #72510b;
  font-size: 1.24rem;
  white-space: nowrap;
}
#planos .jk-elite-card > a {
  grid-column: 1 / -1;
  justify-self: start;
  color: #886411;
  font-size: .75rem;
  font-weight: 900;
}
#planos .jk-elite-card > a:hover { color: #10213c; }
#planos .jk-elite-card.jk-elite-mei { background: #fff8e7; }
#planos .jk-pricing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 26px;
  padding: 27px 30px;
  color: #ffffff;
  border-radius: 18px;
  background: linear-gradient(135deg, #041127, #0b2852);
}
#planos .jk-pricing-cta > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#planos .jk-pricing-cta strong { font-size: 1rem; }
#planos .jk-pricing-cta span {
  color: rgba(255,255,255,.68);
  font-size: .8rem;
}
#planos .jk-pricing-note {
  max-width: 930px;
  margin: 18px auto 0;
  color: #637086;
  font-size: .72rem;
  text-align: center;
}

#planos .reveal {
  opacity: 1;
  transform: none;
}

.process { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-card { position: relative; padding: 30px 24px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.process-card::after { content: ""; position: absolute; top: 51px; right: -17px; width: 17px; border-top: 2px dashed #b8d9f2; }
.process-card:last-child::after { display: none; }
.step-number { position: absolute; right: 19px; top: 16px; color: #d9eaf8; font-size: 2.7rem; font-weight: 800; letter-spacing: -.08em; }
.process-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 23px; color: var(--blue-700); background: var(--blue-100); border-radius: 14px; }
.process-icon svg { width: 26px; height: 26px; }
.process-card h3 { margin-bottom: 9px; }
.process-card p { margin: 0; color: var(--slate-600); font-size: .83rem; }

.opening-offer { padding-top: 15px; background: #fff; }
.offer-banner {
  position: relative; min-height: 460px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center;
  overflow: hidden; padding: 62px 68px; color: #fff; border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 15%, rgba(17,162,245,.42), transparent 26%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800) 55%, var(--blue-700));
  box-shadow: var(--shadow-md);
}
.offer-banner::after { content: ""; position: absolute; width: 300px; height: 300px; right: -100px; bottom: -150px; border: 46px solid rgba(255,255,255,.045); border-radius: 50%; }
.offer-banner-copy { position: relative; z-index: 2; max-width: 660px; }
.offer-banner-copy p { color: rgba(255,255,255,.72); font-size: 1rem; }
.offer-banner-copy ul { list-style: none; margin: 25px 0 28px; padding: 0; }
.offer-banner-copy li { display: flex; gap: 10px; margin: 11px 0; color: rgba(255,255,255,.88); font-size: .91rem; }
.offer-banner-copy li span { color: #75efc1; font-weight: 900; }
.offer-banner-copy > small { display: block; margin-top: 14px; color: rgba(255,255,255,.48); }
.offer-badge { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 285px; height: 285px; justify-self: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(255,255,255,.08); box-shadow: inset 0 0 60px rgba(255,255,255,.05); }
.badge-ring { width: 88px; height: 88px; display: grid; place-items: center; margin-bottom: 17px; color: var(--blue-300); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.badge-ring svg { width: 45px; height: 45px; fill: currentColor; stroke: none; }
.offer-badge strong { font-size: 1.1rem; }
.offer-badge span { margin-top: 6px; color: var(--blue-300); font-size: 2.35rem; font-weight: 800; letter-spacing: -.05em; }

.faq-section { background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 70px; }
.faq-copy { position: sticky; top: 130px; }
.faq-copy p { color: var(--slate-600); }
.accordion { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; color: var(--slate-900); background: transparent; border: 0; text-align: left; font-weight: 800; }
.faq-item button svg { width: 20px; min-width: 20px; transition: .25s ease; }
.faq-item.open button { color: var(--blue-700); }
.faq-item.open button svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-item.open .faq-answer { max-height: 520px; }
.faq-answer p { margin: 0; padding: 0 24px 22px; color: var(--slate-600); font-size: .91rem; }

.final-cta { padding: 80px 0; color: #fff; background: linear-gradient(135deg, var(--navy-950), var(--blue-700)); }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.final-cta h2 { max-width: 650px; margin-bottom: 13px; }
.final-cta p { max-width: 720px; margin: 0; color: rgba(255,255,255,.7); }
.final-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 13px; }
.final-cta-actions strong { color: var(--blue-300); font-size: 1.12rem; letter-spacing: .03em; }

.site-footer { padding: 68px 0 26px; color: rgba(255,255,255,.68); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .8fr; gap: 80px; }
.footer-brand img { width: 180px; height: 80px; object-fit: contain; filter: brightness(1.15); }
.footer-brand p { max-width: 420px; font-size: .88rem; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; font-size: .84rem; }
.footer-links strong { margin-bottom: 8px; color: #fff; }
.footer-links a:hover { color: var(--blue-300); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: .72rem; }
.floating-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 58px; height: 58px; display: grid; place-items: center;
  color: #fff; background: #19b86b; border-radius: 50%;
  box-shadow: 0 14px 30px rgba(25,184,107,.35); transition: .25s ease;
}
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.04); }
.floating-whatsapp svg { width: 29px; height: 29px; fill: currentColor; stroke: none; }

.reveal { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {

  .main-nav { gap: 19px; }
  .header-cta { display: none; }
  .hero-grid, .differentials-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-visual { max-width: 720px; width: 100%; margin: 0 auto; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid article:nth-child(2) { border-right: 0; }
  .benefit-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .device-wrap { max-width: 680px; width: 100%; margin: 0 auto; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-card:nth-child(2)::after { display: none; }
  .offer-banner { padding: 55px 45px; }
  .access-feature-grid, .access-feature-grid.reverse, .plans-grid { grid-template-columns: 1fr; }
  .access-dashboard { max-width: 720px; width: 100%; margin: 0 auto; }
  .invoice-visual { order: 2; max-width: 700px; width: 100%; margin: 0 auto; }
  .plans-image-card { max-width: 720px; width: 100%; margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 38px; }
  .faq-copy { position: static; }
}

@media (max-width: 760px) {

  html { scroll-padding-top: 126px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .header-inner { height: 72px; }
  .brand { width: 132px; }
  .brand img { height: 52px; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: fixed; left: 14px; right: 14px; top: 82px;
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    padding: 14px; visibility: hidden; opacity: 0; transform: translateY(-12px);
    background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); transition: .25s;
  }
  .main-nav.open { visibility: visible; opacity: 1; transform: none; }
  .main-nav a { padding: 13px 14px; border-radius: 9px; }
  .main-nav a::after { display: none; }
  .main-nav a:hover, .main-nav a.active { background: var(--blue-100); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .quick-access { min-height: 50px; justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .quick-access::-webkit-scrollbar { display: none; }
  .quick-access-label { display: none; }
  .quick-access-btn { flex: 0 0 auto; min-height: 34px; padding-inline: 13px; }

  .hero { padding-top: 58px; padding-bottom: 75px; }
  .hero-grid { gap: 45px; }
  h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-text { font-size: 1rem; }
  .offer-card { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .hero-visual { min-height: auto; padding: 18px; border-radius: 23px; }
  .dashboard-main strong { font-size: 1.4rem; }
  .floating-card { display: none; }

  .benefit-strip { margin-top: -24px; }
  .benefit-grid { grid-template-columns: 1fr; padding: 8px; }
  .benefit-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-grid article:last-child { border-bottom: 0; }

  .services-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; }
  .access-feature-grid { gap: 45px; }
  .access-dashboard-body { grid-template-columns: 85px 1fr; min-height: 320px; }
  .access-dashboard-body aside { padding-inline: 8px; }
  .access-dashboard-body aside span { display: none; }
  .access-dashboard-content { padding: 17px; }
  .document-list > span { grid-template-columns: 20px 1fr; }
  .document-list > span b { display: none; }
  .invoice-visual { min-height: 450px; }
  .invoice-paper { padding: 22px; }
  .invoice-confirm { right: 0; bottom: 20px; }
  .plans-actions { flex-direction: column; }
  .plans-actions .btn { width: 100%; }
  .differential-list { grid-template-columns: 1fr; }
  .process-card::after { display: none; }

  .device-wrap { min-height: 390px; margin-bottom: 20px; }
  .laptop-screen { height: 270px; grid-template-columns: 88px 1fr; border-width: 6px; }
  .app-sidebar { padding-inline: 6px; }
  .app-sidebar img { width: 54px; }
  .app-content { padding: 10px; }
  .phone { width: 108px; min-height: 225px; right: -2px; bottom: 10px; padding: 21px 9px 9px; border-width: 6px; }
  .phone-bars { height: 46px; padding: 7px; }
  .app-chart { height: 88px; }
  .app-chart svg { height: 52px; }

  .offer-banner { grid-template-columns: 1fr; padding: 42px 25px; }
  .offer-badge { width: 210px; height: 210px; margin-top: 42px; }
  .offer-badge span { font-size: 1.8rem; }

  .final-cta-inner { grid-template-columns: 1fr; gap: 34px; }
  .final-cta-actions { align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 460px) {
  .dashboard-grid { grid-template-columns: 1fr; }
  .quick-access-btn { font-size: .69rem; }
  .access-dashboard-body { grid-template-columns: 60px 1fr; }
  .access-metrics { grid-template-columns: 1fr; }
  .access-metrics article:nth-child(2) { display: none; }
  .invoice-paper { transform: none; }
  .invoice-confirm { position: relative; right: auto; bottom: auto; width: 92%; margin: -8px auto 0; }
  .plans-image-card span { font-size: .62rem; }
  .activities li { grid-template-columns: 28px 1fr; }
  .activities li > span:last-child { display: none; }
  .device-wrap { min-height: 325px; }
  .laptop-screen { height: 220px; grid-template-columns: 65px 1fr; }
  .app-sidebar span { display: none; }
  .app-sidebar img { width: 46px; }
  .app-cards { grid-template-columns: 1fr; }
  .app-cards > div:nth-child(2), .app-list { display: none; }
  .app-chart { height: 75px; }
  .phone { transform: scale(.82); transform-origin: bottom right; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  #planos .jk-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #planos .jk-plan-card:last-child { grid-column: 1 / -1; }
  .specialist-grid { grid-template-columns: 1fr; gap: 55px; }
  .specialist-photo { width: min(88%, 520px); }
}

@media (max-width: 760px) {
  #planos .jk-plan-grid,
  #planos .jk-elite-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  #planos .jk-plan-card:last-child { grid-column: auto; }
  #planos .jk-plan-group-header { padding: 20px; }
  #planos .jk-plan-card { min-height: 270px; padding: 29px 20px 22px; }
  #planos .jk-plan-title { align-items: flex-start; flex-direction: column; gap: 7px; }
  #planos .jk-plan-title strong { font-size: 1.4rem; }
  #planos .jk-elite-card {
    grid-template-columns: minmax(0, 1fr);
    padding: 23px 20px;
  }
  #planos .jk-elite-card > a { grid-column: auto; }
  #planos .jk-pricing-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
    text-align: center;
  }
  #planos .jk-pricing-cta .btn { width: 100%; }
  .specialist-photo { width: calc(100% - 18px); }
  .specialist-photo::before { inset: 18px -10px -14px 18px; }
  .specialist-photo-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 22px);
    min-width: 0;
    margin: -38px auto 0;
  }
}

@media (max-width: 980px) {
  .specialist-single-wrap {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .specialist-single-photo {
    max-width: 430px;
  }
  .specialist-single-copy {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .specialist-single-wrap {
    gap: 28px;
  }
  .specialist-single-photo {
    max-width: 100%;
  }
  .specialist-single-photo img {
    border-radius: 22px;
  }
  .specialist-single-points article {
    padding: 16px 16px;
    text-align: left;
  }
}

#atendimento.specialist-section-single {
  padding-top: 88px;
  padding-bottom: 88px;
  overflow: hidden;
}

#atendimento .specialist-single-wrap {
  grid-template-columns: 400px minmax(0, 1fr);
  align-items: center;
  gap: 72px;
}

#atendimento .specialist-single-photo {
  width: 400px;
  max-width: 100%;
  justify-self: center;
}

#atendimento .specialist-single-photo img {
  width: 400px;
  height: 400px;
  max-width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  border-radius: 26px;
}

.floating-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  display: block;
  fill: currentColor;
  stroke: none;
}

@media (max-width: 980px) {
  #atendimento .specialist-single-wrap {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  #atendimento .specialist-single-photo {
    width: 380px;
  }

  #atendimento .specialist-single-photo img {
    width: 380px;
    height: 380px;
  }
}

@media (max-width: 560px) {
  #atendimento.specialist-section-single {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  #atendimento .specialist-single-photo {
    width: min(100%, 330px);
  }

  #atendimento .specialist-single-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .floating-whatsapp svg {
    width: 30px;
    height: 30px;
  }
}

.quick-access {
  justify-content: flex-end;
  gap: 10px;
}

.quick-access-client,
.quick-access-invoice {
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}

.quick-access-client:hover,
.quick-access-invoice:hover {
  color: #ffffff;
  border-color: rgba(134,213,255,.70);
  background: rgba(17,162,245,.22);
}

.quick-access-client svg,
.quick-access-invoice svg {
  color: var(--blue-300);
}

@media (max-width: 760px) {
  .quick-access {
    justify-content: flex-start;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .quick-access-btn {
    min-height: 40px;
  }
}

.footer-webmail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-left: auto;
  padding: 6px 11px 6px 7px;
  color: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  font-size: .69rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color .22s ease, border-color .22s ease, background .22s ease;
}

.footer-webmail-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: rgba(134,213,255,.72);
  border-radius: 50%;
  background: rgba(17,162,245,.10);
}

.footer-webmail-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-webmail:hover,
.footer-webmail:focus-visible {
  color: #ffffff;
  border-color: rgba(134,213,255,.34);
  background: rgba(17,162,245,.10);
  outline: none;
}

@media (max-width: 760px) {
  .footer-webmail {
    margin-left: 0;
    align-self: flex-start;
  }
}
